import cv2 as cv
import numpy as np
import matplotlib.pyplot as plt
img = cv.imread("../SampleImages/stars.png")
plt.imshow(img[:,:,::-1])
img_contour = img.copy()
#得到灰度图做Canny边缘检测
img_gray = cv.cvtColor(img_contour, cv.COLOR_BGR2GRAY)
edges = cv.Canny(img_gray, 120, 255, 0)
#提取并绘制轮廓
contours,hierarchy = cv.findContours(edges, cv.RETR_TREE, cv.CHAIN_APPROX_NONE)
img_contour = cv.drawContours(img_contour, contours, -1, (0,255,0), 2)
plt.imshow(img_contour, cmap=plt.cm.gray)
#凸包检测
#hull = cv.convexHull(points, clockwise, returnpoints)
#hull: 输出凸包结果,n*1*2数据结构,n为外包围圈的点的个数
#points: 输入的坐标点,通常为1* n * 2 结构,n为所有的坐标点的数目
#clockwise:转动方向,TRUE为顺时针,否则为逆时针;
#returnPoints:默认为TRUE,返回凸包上点的坐标,如果设置为FALSE,会返回与凸包点对应的轮廓上的点。
#参考资料:https://blog.csdn.net/lovetaozibaby/article/details/103214672
hulls = []
for contour in contours:
hull = cv.convexHull(contour)
hulls.append(hull)
img_convex_hull = cv.drawContours(img, hulls, -1, (0,255,0), 2)
plt.imshow(img_convex_hull[:,:,::-1])
Python Opencv实践 - 凸包检测(ConvexHull)
亦枫Leonlew2023-09-02 17:42
相关推荐
VinciYan2 分钟前
基于Jenkins+Docker的自动化部署实践——整合Git与Python脚本实现远程部署测试老哥23 分钟前
外包干了两年,技术退步明显。。。。終不似少年遊*26 分钟前
美国加州房价数据分析01区块链小八歌44 分钟前
链原生 Web3 AI 网络 Chainbase 推出 AVS 主网, 拓展 EigenLayer AVS 场景禾高网络1 小时前
租赁小程序成品|租赁系统搭建核心功能如若1231 小时前
对文件内的文件名生成目录,方便查阅西猫雷婶1 小时前
python学opencv|读取图像(二十一)使用cv2.circle()绘制圆形进阶老刘莱国瑞2 小时前
STM32 与 AS608 指纹模块的调试与应用湫ccc2 小时前
《Opencv》基础操作详解(3)Jack_pirate2 小时前
深度学习中的特征到底是什么?