-
Deep-Leafsnap-master
说明: 植物叶片的识别,保证电脑安装了python,sklearn(Recognition of plant leaves ensures that the computer is equipped with python, sklearn)
- 2020-06-16 08:00:01下载
- 积分:1
-
insert_cohesive
在abaqus中可以实现零厚度的cohesive插入(Implementing cohesive insertion with zero thickness)
- 2021-03-02 21:29:34下载
- 积分:1
-
densecrf-master
说明: 应用条件随机场进行图像分割
使用方法:将pydensecrf-py27或pydensecrf-py35重命名为pydensecrf,放入C:Program FilesAnaconda3Libsite-packages
运行:python inference.py im1.png anno1.png out.png(Renameing the file "pydensecrf-py27" or
"pydensecrf-py35" to the new name "pydensecrf"
Puting this file "pydensecrf" in this directory "C:Program FilesAnaconda3Libsite-packages"
cd examples/
python inference.py im1.png anno1.png out.png)
- 2020-11-25 15:49:32下载
- 积分:1
-
神经网络,全连接层
神经网络,全连接层
- 2021-05-06下载
- 积分:1
-
winio驱动级别的键盘输入
winio驱动级别的键盘输入真正好用的东西,windows消息输入被屏蔽的时候,winio还是可以用的
- 2022-03-19 06:34:45下载
- 积分:1
-
spider-(2)
应用python编写的百度指数新闻爬取代码(baiduindex spider)
- 2017-03-15 21:45:43下载
- 积分:1
-
python渗透测试编程技术-方法与实践.azw3
说明: python渗透测试,使用kindle 看(Python penetration test, using Kindle to see)
- 2020-10-23 09:37:22下载
- 积分:1
-
extract_pearsonr
说明: 用python语言调用了皮尔逊相关系数的应用,里面包含了文件的打开关闭程序(The application of Pearson correlation coefficient is called with Python language, which contains the program of opening and closing files)
- 2020-07-25 14:58:43下载
- 积分:1
-
《Python标准库》中文版
说明: python标准库,用于学习python的小伙伴(Python standard library)
- 2020-06-20 12:20:02下载
- 积分:1
-
森林结构参数提取
提取森林结构参数
#读取冠层高度模型CHM
raster = gdal.Open("./chm.tif")
banddataraster = raster.GetRasterBand(1)
dataraster = banddataraster.ReadAsArray()
#对CHM进行高斯滤波,平滑数据
dataraster_gau = gaussian_filter(dataraster,sigma=1)
#寻找CHM中的局部最大值作为分水岭的标记点
local_maxi = peak_local_max(dataraster_gau, indices=False)
markers = ndi.label(local_maxi)[0]
#利用分水岭算法进行分割,labels变量中存储了每个分割结果
labels = watershed(-dataraster_gau, markers, mask= dataraster_gau[:]>5)
#利用matplotlib出图查看初步结果
- 2022-02-13 18:03:00下载
- 积分:1