C# 利用IRawPixels接口遍历栅格数据
AO的版本为10.2,开发的语言是C#。栅格数据来源IRasterDataset接口。
IRasterBandCollectionpRasterBandCollection=pRasterDatasetasIRasterBandCollection;
IRasterBandpRasterBand=pRasterBandCollection.Item(0);
IRasterpRaster=(pRasterDatasetasIRasterDataset2).CreateFullRaster();
IRawPixelspRawPixels=pRasterBandasIRawPixels;
IRasterPropspRasterProps=pRasterBandasIRasterProps;
intdHeight=pRasterProps.Height;
intdWidth=pRasterProps.Width;
IPntpntSize=newPntClass();
pntSize.SetCoords(dHeight,dWidth);
IPntpPixelBlockOrigin=newPntClass();
pPixelBlockOrigin.SetCoords(0,0);
IPixelBlockpixelBlock=pRaster.CreatePixelBlock(pntSize);
pRawPixels.Read(pPixelBlockOrigin,pixelBlock);
System.Arrayarr=(System.Array)(pixelBlockasIPixelBlock3).get_PixelData(0);
for(inti=0;i<dHeight;i++)
{
for(intj=0;j<dWidth;j++)
{
floatnumber=0;
float.TryParse(arr.GetValue(i,j).ToString(),outnumber);
}
}
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持毛票票!