在图像文件路径地方写入图像的地址。不止遥感图像,普通的图像也可以
from osgeo import gdal
# 图像文件路径
image_path = ''
# 打开 TIFF 文件
ds = gdal.Open(image_path, gdal.GA_ReadOnly)
if ds is not None:
# 获取图像的高度和宽度
width = ds.RasterXSize
height = ds.RasterYSize
bands = ds.RasterCount
print(f"图像的高度为:{height} 像素")
print(f"图像的宽度为:{width} 像素")
print(f"图像的波段数为:{bands}")
else:
print(f"无法读取图像:{image_path}")
结果如下: