资源简介
Python OpenCV 形态学操作-实例源码.zip
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Mon Jun 11 10:36:59 2018
@author: 天津拨云咨询服务有限公司 lilizong@gmail.com
“““
import cv2
import numpy as np
o=cv2.imread(“image\\erode.bmp“cv2.IMREAD_UNCHANGED)
k=np.ones((55)np.uint8)
r=cv2.erode(okiterations=10)
cv2.imshow(“original“o)
cv2.imshow(“result“r)
cv2.waitKey()
cv2.destroyAllWindows()
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 363 2019-05-01 14:34 example\9.1erode.py
文件 308 2019-05-01 14:34 example\9.1filter2d.py
文件 366 2019-05-01 14:34 example\9.2dilate.py
文件 373 2019-05-01 14:34 example\9.3opening.py
文件 374 2019-05-01 14:34 example\9.4closing.py
文件 376 2019-05-01 14:34 example\9.5Gradient.py
文件 372 2019-05-01 14:34 example\9.6tophat.py
文件 378 2019-05-01 14:34 example\9.7blackhat.py
文件 810054 2019-05-01 14:34 example\image\blackhat.bmp
文件 810054 2019-05-01 14:34 example\image\closing.bmp
文件 810054 2019-05-01 14:34 example\image\closing2.bmp
文件 810054 2019-05-01 14:34 example\image\dilation.bmp
文件 1440054 2019-05-01 14:34 example\image\erode.bmp
文件 810054 2019-05-01 14:34 example\image\gradient.bmp
文件 1440054 2019-05-01 14:34 example\image\opening.bmp
文件 810054 2019-05-01 14:34 example\image\test.bmp
文件 1440054 2019-05-01 14:34 example\image\tophat.bmp
文件 1440054 2019-05-01 14:34 example\image\tophat2.bmp
文件 733 2019-05-01 14:34 my_code\dilate.py
文件 718 2019-05-01 14:34 my_code\erode.py
文件 2188 2019-05-01 14:34 my_code\morphology.py
相关资源
- Python OpenCV 图像轮廓-.zip
- Python OpenCV 傅里叶变换-.zip
- Python OpenCV 图像运算-.zip
- Python OpenCV 图像处理基础-.zip
- Python OpenCV 直方图-.zip
- Python OpenCV 车道检测-.zip
- Python OpenCV 几何变换-.zip
- Python OpenCV 图像平滑处理-.zip
- Python OpenCV 阈值分割-.zip
- Python OpenCV canny边缘检测-.zip
- Python OpenCV 图像梯度-.zip
- Python OpenCV 图像金字塔-.zip
- python实现modbus主站 代码
评论
共有 条评论