摘要:
import os import sys import glob from osgeo import gdal import numpy as np import cv2 def CalHistogram(img): img_dtype = img.dtype img_hist = img.resh 阅读全文
摘要:
import time import pyperclip """ 安装pyperclip pip install pyperclip """ #此代码可复制pdf中内容,并自动删除换行符和空格 def is_Qnumber(uchar): """判断一个unicode是否是全角数字""" if uc 阅读全文
摘要:
""" 将16位遥感图像压缩至8位,并保持色彩一致 """ from osgeo import gdal import os import glob import numpy as np import matplotlib.pyplot as plt # plt 用于显示图片 import matp 阅读全文