行走的蓑衣客

导航

 

2022年11月21日

摘要: 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 阅读全文
posted @ 2022-11-21 19:28 行走的蓑衣客 阅读(199) 评论(0) 推荐(0) 编辑
 
摘要: import time import pyperclip """ 安装pyperclip pip install pyperclip """ #此代码可复制pdf中内容,并自动删除换行符和空格 def is_Qnumber(uchar): """判断一个unicode是否是全角数字""" if uc 阅读全文
posted @ 2022-11-21 19:25 行走的蓑衣客 阅读(177) 评论(0) 推荐(0) 编辑
 
摘要: """ 将16位遥感图像压缩至8位,并保持色彩一致 """ from osgeo import gdal import os import glob import numpy as np import matplotlib.pyplot as plt # plt 用于显示图片 import matp 阅读全文
posted @ 2022-11-21 19:22 行走的蓑衣客 阅读(226) 评论(0) 推荐(0) 编辑