#! usr/bin/python
# coding=utf-8
import numpy as np
import cv2
# opencv 轮廓检测
image = cv2.imread('test.jpg', 0)
image_copy = image.copy()
ret, thresh = cv2.threshold(image_copy, 127, 255, 0)
img, contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
color = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)
for c in contours:
x, y, w, h = cv2.boundingRect(c)
cv2.rectangle(color, (x, y), (x + w, y + h), (0, 0, 255), 1)
rect = cv2.minAreaRect(c)
box = cv2.boxPoints(rect)
box = np.int0(box)
cv2.drawContours(color, [box], 0, (0, 0, 255), 1)
(x, y), radius = cv2.minEnclosingCircle(c)
center = (int(x), int(y))
radius = int(radius)
cv2.circle(color, center, radius, (0, 0 ,255), 1)
# cv2.drawContours(color, contours, -1, (255, 0, 0), 2)
cv2.imshow('contour_image', color)
cv2.waitKey()
cv2.destroyAllWindow()
opencv 轮廓检测
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Opencv 轮廓检测相关api文档 opencv2的c++接口 官方文档相关api Finds contours...
- contourArea Calculates a contour area. Parameters:contour...
- 关于 OpenCV的集成请看这一篇文章http://www.jianshu.com/p/c51ceb85e64e初...
- 概述: 本节主要结合降噪,色域转换,二值化,边缘检测及获取轮廓等函数,实现对身份证的边缘位置检测; 完整Demo ...