ENVI文件在matlab中的读取

2018.07.21

皇天在上,终于找到读取的方法了,研究可以继续深入往下走了。

(1)tiff文件的读取。使用的MATLAB版本为2015b

[A,R] = geotiffread(filename)

http://ww2.mathworks.cn/help/map/ref/geotiffread.html?searchHighlight=geotiffread&s_tid=doc_srchtitle

  • A的格式与tiff原文件中的格式相同
  • R为reference,格式为MapCellsReference,解释见http://ww2.mathworks.cn/help/map/ref/map.rasterref.mapcellsreference.html?s_tid=doc_ta
  • ref = 
    
      MapCellsReference with properties:
    
                XWorldLimits: [659685 885615]   %用一个正方形代表像素,指的是像素顶点上的坐标范围
                YWorldLimits: [3240285 3471015] %与x同义
                  RasterSize: [7691 7531]  %影像像素数
        RasterInterpretation: 'cells'   %即表示像素的值在cells中间而不在边缘上
            ColumnsStartFrom: 'nor

你可能感兴趣的:(MATLAB,遥感图像处理,IDL/ENVI)