资源简介
数据附件t8是一个黑白图像,计算所有栅格到距离它最近的白色栅格的距离,使用距离数据形成新图像。原始数据有RGB三个通道,取出一个通道即可。
【核心代码】
计算图像中点到最近白点距离
├── t8
│ ├── gis-mini.jpg
│ └── gis.jpg
└── 计算图像最近栅格.py
1 directory, 3 files
代码片段和文件信息
import cv2
import numpy as np
pic_path=‘t8\\gis.jpg‘
#第二个参数:{小于1:原图大于1灰度图}
image = cv2.imread(pic_path 1)
cv2.imshow(‘image‘image)
image=image[::0]
heightwidth=image.shape
#retval image = cv2.threshold(imageGray 0 255 cv2.THRESH_OTSU)
kernel = np.ones((33)np.uint8)
ProcessImg=np.zeros([heightwidth] dtype=np.uint8)
ProcessImgRGB=np.zeros([heightwidth3] dtype=np.uint8)
distance=10
while True:
if np.all(image==255):
print(“全是0“)
break
else:
dilation = cv2.dilate(image kernel iterations=1)
deltaImg=dilation-image
index=np.where(deltaImg>0)
ProcessImg[index]=distance
distance+=10
print(distance)
image=dilation
ProcessImgRGB[::2]=ProcessImg
cv2.imshow(‘image2‘ProcessImgRGB)
cv2.waitKey(0)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-06-24 11:03 计算图像中点到最近白点距离\
目录 0 2020-06-24 11:04 计算图像中点到最近白点距离\t8\
文件 28802 2020-06-21 00:14 计算图像中点到最近白点距离\t8\gis-mini.jpg
文件 44885 2020-06-20 17:03 计算图像中点到最近白点距离\t8\gis.jpg
文件 876 2020-06-23 23:24 计算图像中点到最近白点距离\计算图像最近栅格.py
- 上一篇:21道 python基础笔试题.py
- 下一篇:1+n求和(python代码)
相关资源
- 从图像数据集读取图片并拼接成大图
- python空心电感计算器
- 基于树莓派的动态图像对比(py3_ob<
- python 雷达图像识别
- unet用于图像分割(model.py)
- 基于opencv和tkinter的图像处理GUI-源代码
- Python开发计算器-多功能版
- Python OpenCV 图像轮廓-.zip
- Python OpenCV 图像运算-.zip
- Python OpenCV 图像处理基础-.zip
- Python OpenCV 图像平滑处理-.zip
- Python OpenCV 图像梯度-.zip
- Python OpenCV 图像金字塔-.zip
- 基于机器学习框架tensorflow的图像分类
- python科学计算源代码
- python 简易计算器
- python 对于图像的边缘处理、腐蚀、面
- python摄像头采集图像与库中图像分析
- 《Python计算机视觉编程》pdf-高清 带标
- Python科学计算最佳实践——SciPy指南(
- 《像计算机科学家一样思考Python》p
- python实用多功能计算器
- 《OpenCV3 计算机视觉-Python 语言实现(
- Python 3.4 入门指南 官方中文版.pdf
- python 实现图像手绘效果
- python图像处理(Background Matting)
- Python项目案例开发从入门到实战源代
- 计算 语义分割结果 MIOU,miou.py操作简
- python实现身份证号码分割提取
- python集合计算器+集合恒等式证明器
评论
共有 条评论