首頁  >  文章  >  後端開發  >  C# 利用IRawPixels介面遍歷柵格資料的程式碼實例

C# 利用IRawPixels介面遍歷柵格資料的程式碼實例

黄舟
黄舟原創
2017-03-06 11:34:191469瀏覽

本文主要介紹了利用IRawPixels介面遍歷柵格資料。具有很好的參考價值,下面跟著小編一起來看下吧

AO的版本為10.2,開發的語言是C#。柵格資料來源IRasterDataset介面。

IRasterBandCollection pRasterBandCollection = pRasterDataset as IRasterBandCollection;
IRasterBand pRasterBand = pRasterBandCollection.Item(0);
 IRaster pRaster = (pRasterDataset as IRasterDataset2).CreateFullRaster();
IRawPixels pRawPixels = pRasterBand as IRawPixels;
IRasterProps pRasterProps = pRasterBand as IRasterProps;
int dHeight = pRasterProps.Height;
int dWidth = pRasterProps.Width; 
IPnt pntSize = new PntClass();
pntSize.SetCoords(dHeight, dWidth);
IPnt pPixelBlockOrigin = new PntClass();
pPixelBlockOrigin.SetCoords(0, 0);
IPixelBlock pixelBlock = pRaster.CreatePixelBlock(pntSize);
pRawPixels.Read(pPixelBlockOrigin, pixelBlock);
System.Array arr = (System.Array)(pixelBlock as IPixelBlock3).get_PixelData(0);
for (int i = 0; i < dHeight;i++ ) 
{
 for (int j = 0; j < dWidth; j++) 
 {
   float number = 0;
   float.TryParse(arr.GetValue(i,j).ToString(),out number);     
  }
}

以上就是C# 利用IRawPixels介面遍歷柵格資料的程式碼實例的內容,更多相關內容請關注PHP中文網路(www.php.cn)!

#
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn