程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python遙感圖像處理應用篇(二十):Python+GDAL 批量提取多波段圖像為單波段圖像

編輯:Python

1.實現目標

批量將多波段圖像提取為各個單波段圖像

運行環境:windows10  pycharm  python3.7.7  GDAL-3.2.3-cp37-cp37m-win_amd64.whl包等。

2.實現代碼

"""
此段代碼將遙感圖像背景值去除處理
"""
import numpy as np
from osgeo import gdal, gdalconst
import os
#將遙感影像歸一化處理 寫成函數
def GetEnvolopePoint(inputpath,output_filepath):
gdal.UseExceptions()
ds = gdal.Open(inputpath)
band01 = ds.GetRasterBand(1)
im_width, im_height = band01.XSize, band01.YSize
print(inputpath,"影像大小為:",im_width, im_height)
dim_z = ds.RasterCount #圖像通道數
if dim_z>5:
dim_z=5 #只提取前5個波段
for i in range(1, dim_z + 1):
band = ds.GetRasterBand(i)
band_array = band.ReadAsArray()
print("Image Shape:", band_array.shape)

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved