国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

python opencv角點檢測連線功能的實現代碼

瀏覽:133日期:2022-07-04 14:58:00

原始圖

python opencv角點檢測連線功能的實現代碼

角點檢測

points = cv2.goodFeaturesToTrack(gray, 100, 0.01, 10)points = np.int0(points).reshape(-1,2)for point in points: x, y = point.ravel() cv2.circle(img, (x, y), 10, (0, 255, 0), -1)

python opencv角點檢測連線功能的實現代碼

連線

cv2.line(img, (0, y1), (1000, y1), (0, 255, 0), thickness=3, lineType=8)cv2.line(img, (0, y2), (1000, y2), (0, 255, 0), thickness=3, lineType=8)

python opencv角點檢測連線功能的實現代碼

完整代碼

''' @author: qq群686070107''' import cv2import numpy as npimg=cv2.imread('1.jpg')gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)points = cv2.goodFeaturesToTrack(gray, 100, 0.01, 10)points = np.int0(points).reshape(-1,2)for point in points: x, y = point.ravel() cv2.circle(img, (x, y), 10, (0, 255, 0), -1)y1 = min(points[:,1])y2 = max(points[:,1])## small and big enough cv2.line(img, (0, y1), (1000, y1), (0, 255, 0), thickness=3, lineType=8)cv2.line(img, (0, y2), (1000, y2), (0, 255, 0), thickness=3, lineType=8)cv2.imshow('img', img)cv2.waitKey(0)

到此這篇關于python opencv角點檢測 連線功能的實現代碼的文章就介紹到這了,更多相關python opencv角點檢測內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 大宁县| 大同市| 柳州市| 宜春市| 长丰县| 集安市| 青神县| 渝北区| 惠来县| 山东| 淮安市| 桦川县| 内乡县| 新晃| 哈密市| 精河县| 伊宁市| 沂源县| 垦利县| 福海县| 彰化县| 平邑县| 南通市| 和田县| 绿春县| 赤城县| 舒城县| 林周县| 基隆市| 兴城市| 洮南市| 新绛县| 上高县| 山西省| 庆云县| 赫章县| 富民县| 衢州市| 永济市| 金溪县| 定日县|