利用IRawPixels接口遍历栅格数据

AO的版本为10.2,开发的语言是C#。栅格数据来源IRasterDataset接口。

 1  IRasterBandCollection pRasterBandCollection = pRasterDataset as IRasterBandCollection;
 2 IRasterBand pRasterBand = pRasterBandCollection.Item(0);
 3  IRaster pRaster = (pRasterDataset as IRasterDataset2).CreateFullRaster();
 4 IRawPixels pRawPixels = pRasterBand as IRawPixels;
 5 IRasterProps pRasterProps = pRasterBand as IRasterProps;
 6 int dHeight = pRasterProps.Height;
 7 int dWidth = pRasterProps.Width;  
 8 IPnt pntSize = new PntClass();
 9 pntSize.SetCoords(dHeight, dWidth);
10 IPnt pPixelBlockOrigin = new PntClass();
11 pPixelBlockOrigin.SetCoords(0, 0);
12 IPixelBlock pixelBlock = pRaster.CreatePixelBlock(pntSize);
13 pRawPixels.Read(pPixelBlockOrigin, pixelBlock);
14 System.Array arr = (System.Array)(pixelBlock as IPixelBlock3).get_PixelData(0);
15 for (int i = 0; i < dHeight;i++ ) 
16 {
17     for (int j = 0; j < dWidth; j++) 
18     {
19            float number = 0;
20            float.TryParse(arr.GetValue(i,j).ToString(),out number);                   
21      }
22 }

第一次写,同时也做一个记录

转载于:https://www.cnblogs.com/yaojie2/p/6385253.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值