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

资源简介

Python OpenCV 图像轮廓-实例源码.zip

资源截图

代码片段和文件信息

# -*- coding: utf-8 -*-
“““
Created on Sun Jun 24 11:45:06 2018

@author: Administrator
“““
import cv2
import numpy as np
o = cv2.imread(‘image\\contours.bmp‘)  
gray = cv2.cvtColor(ocv2.COLOR_BGR2GRAY)  
ret binary = cv2.threshold(gray127255cv2.THRESH_BINARY)  
image contours hierarchy = cv2.findContours(binarycv2.RETR_TREEcv2.CHAIN_APPROX_SIMPLE)  
co=o.copy()
r=cv2.drawContours(cocontours2(00255)6)  
cv2.imshow(“original“o)
cv2.imshow(“contours“r)
cv2.waitKey()
cv2.destroyAllWindows()


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         511  2019-05-01 14:34  example\13.1.1图像轮廓.py
     文件      919538  2019-05-01 14:34  example\image\contours.bmp
     文件         721  2019-05-01 14:34  my_code\contours.py

评论

共有 条评论