如何在python中查看.img文件?

时间:2018-06-08 13:25:52

标签: python image-processing geospatial raster gdal

我正在开发一个包含(.img)格式图像的项目。 这些图像很容易在Erdas或Qgis中打开,但我需要通过python脚本查看它们。是否可以在gdal的帮助下查看图像?如果是,怎么样?

1 个答案:

答案 0 :(得分:0)

我认为第一个技巧是将Erdas Imagine文件转换为GeoTIFF。在GIS Stack Exchange上查看这个问题:https://gis.stackexchange.com/questions/103827/convert-from-img-to-geotiff?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa

使用GeoTIFF格式的文件后,您可以通过几种不同的方式在Python中查看图像。我喜欢rasterio library

查看图像非常简单。

import rasterio from rasterio.plot import show src = rasterio.open('your_raster_image.tif') show(src)