• 大小: 0.23M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-30
  • 语言: Python
  • 标签:

资源简介

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

评论

共有 条评论