资源简介
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
相关资源
- 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主站 代码
评论
共有 条评论