gpt4 book ai didi

python - 如何在 Python 中使用 GDAL 打开 geotiff 图像?

转载 作者:行者123 更新时间:2023-12-05 08:17:23 25 4
gpt4 key购买 nike

我正在尝试运行以下代码:

from osgeo import gdal
import sys

# This allows GDAL to throw Python exceptions
src_ds = gdal.Open("fused.tif")
src_ds.show()

但是我收到以下错误:

Traceback (most recent call last):
File ".../gdalopen1.py", line 5, in module src_ds.show()
AttributeError: 'Dataset' object has no attribute 'show'

为什么会这样?

最佳答案

以下代码打开一个光栅文件并将光栅的波段读入 NumPy数组。

from osgeo import gdal
ds = gdal.Open('input.tif', gdal.GA_ReadOnly)
rb = ds.GetRasterBand(1)
img_array = rb.ReadAsArray()

关于python - 如何在 Python 中使用 GDAL 打开 geotiff 图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41996079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com