行走的蓑衣客

导航

 
上一页 1 2 3 4 5 6 ··· 9 下一页

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) 编辑
 

2022年8月13日

摘要: 在ArcGIS 10.2以上版本,汉字经常乱码,解决方法:做一个扩展名为.reg,内容如下: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\ESRI\Desktop10.7\Common\CodePage] "dbf 阅读全文
posted @ 2022-08-13 15:29 行走的蓑衣客 阅读(320) 评论(0) 推荐(0) 编辑
 

2022年7月23日

摘要: 输入的区域可以是栅格的或者是矢量的,值数据只能是栅格的 import numpy as np import pandas as pd def zonal_statistic(zonal_arr, data_arr, stats_field=['mean'], nodata=255): """ Par 阅读全文
posted @ 2022-07-23 15:11 行走的蓑衣客 阅读(185) 评论(0) 推荐(0) 编辑
 

2022年5月17日

摘要: from skimage import measure import cv2 import numpy as np ## ##image:二值图像 ##threshold_point:符合面积条件大小的阈值 def remove_small_points(image,threshold_point) 阅读全文
posted @ 2022-05-17 20:59 行走的蓑衣客 阅读(413) 评论(0) 推荐(0) 编辑
 
摘要: #Python计算矩阵8邻域之和 Neighbors = [(1, 1), (1, -1), (1, 0), (-1, 0), (-1, 1), (-1, -1), (0, 1), (0, -1)] def get_neighbors_sum(array_of_arrays, row, col): 阅读全文
posted @ 2022-05-17 20:58 行走的蓑衣客 阅读(856) 评论(0) 推荐(0) 编辑
 
摘要: 1.去除NoData import cv2 import gdal import scipy.interpolate import numpy as np def read_img(filename): dataset=gdal.Open(filename) im_width = dataset.R 阅读全文
posted @ 2022-05-17 20:27 行走的蓑衣客 阅读(445) 评论(0) 推荐(0) 编辑
 

2022年4月10日

摘要: from osgeo import gdal from osgeo import osr import numpy as np def getSRSPair(dataset): ''' 获得给定数据的投影参考系和地理参考系 :param dataset: GDAL地理数据 :return: 投影参考 阅读全文
posted @ 2022-04-10 12:53 行走的蓑衣客 阅读(708) 评论(0) 推荐(0) 编辑
 

2022年3月17日

摘要: #open3d安装:pip3 install open3d-python import open3d as o3d import numpy as np def makePlyFile(xyzs, labels, fileName='makeply.ply'): '''Make a ply file 阅读全文
posted @ 2022-03-17 22:15 行走的蓑衣客 阅读(655) 评论(0) 推荐(0) 编辑
 
上一页 1 2 3 4 5 6 ··· 9 下一页