C# 利用IRawPixels接口遍历栅格数据的代码实例
程序员文章站
2022-04-01 21:44:05
...
本文主要介绍了利用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)!
上一篇: python 计算文件的md5值实例
下一篇: php获取音乐文件播放时间_PHP教程
推荐阅读
-
C# 利用IRawPixels接口遍历栅格数据
-
angularJS利用ng-repeat遍历二维数组的实例代码
-
C#设计模式-派生类实现非虚接口陷阱的实例代码分享
-
C# 利用IRawPixels接口遍历栅格数据
-
关于angularJS如何利用ng-repeat遍历二维数组的实例代码分享
-
C#设计模式-派生类实现非虚接口陷阱的实例代码分享
-
angularJS利用ng-repeat遍历二维数组的实例代码
-
关于angularJS如何利用ng-repeat遍历二维数组的实例代码分享
-
C# 利用IRawPixels接口遍历栅格数据的代码实例
-
详细介绍C# 利用IRawPixels接口遍历栅格数据的代码实例