問題描述
我有這個雕像的圖像.
我正在嘗試找到雕像的頂部、底部、左側(cè)和最右側(cè)的點.有沒有辦法測量每邊的邊緣以確定雕像上的最外點?我想得到每一邊的 (x,y)
坐標.我嘗試使用 cv2.findContours()
和 cv2.drawContours()
來獲得雕像的輪廓.
導(dǎo)入 cv2img = cv2.imread('statue.png')灰色 = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)輪廓 = cv2.findContours(灰色,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)[0]cv2.drawContours(img, 輪廓, -1, (0, 200, 0), 3)cv2.imshow('img', img)cv2.waitKey()
這是一個潛在的方法:
將圖像轉(zhuǎn)換為 或
argmax()
像這樣確定外左、右、上、下坐標left = tuple(c[c[:, :, 0].argmin()][0])對 = 元組(c[c[:, :, 0].argmax()][0])top = tuple(c[c[:, :, 1].argmin()][0])底部 = 元組(c[c[:, :, 1].argmax()][0])
這是結(jié)果
<塊引用>左:(162, 527)
<塊引用>
右:(463, 467)
<塊引用>
頂部:(250, 8)
<塊引用>
底部:(381, 580)
導(dǎo)入 cv2將 numpy 導(dǎo)入為 np# 加載圖像,灰度,高斯模糊,閾值圖像 = cv2.imread('1.png')灰色 = cv2.cvtColor(圖像,cv2.COLOR_BGR2GRAY)模糊 = cv2.GaussianBlur(灰色, (3,3), 0)thresh = cv2.threshold(模糊, 220, 255, cv2.THRESH_BINARY_INV)[1]# 尋找輪廓cnts = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)cnts = cnts[0] 如果 len(cnts) == 2 否則 cnts[1]c = max(cnts, key=cv2.contourArea)# 獲取外坐標left = tuple(c[c[:, :, 0].argmin()][0])對 = 元組(c[c[:, :, 0].argmax()][0])top = tuple(c[c[:, :, 1].argmin()][0])底部 = 元組(c[c[:, :, 1].argmax()][0])# 在圖像上畫點cv2.drawContours(圖像, [c], -1, (36, 255, 12), 2)cv2.circle(圖像, 左, 8, (0, 50, 255), -1)cv2.circle(圖像, 右, 8, (0, 255, 255), -1)cv2.circle(圖像, 頂部, 8, (255, 50, 0), -1)cv2.circle(圖像, 底部, 8, (255, 255, 0), -1)print('left: {}'.format(left))print('right: {}'.format(right))print('top: {}'.format(top))print('bottom: {}'.format(bottom))cv2.imshow('thresh', thresh)cv2.imshow('圖像', 圖像)cv2.waitKey()
I have this image of a statue.
I'm trying to find the top, bottom, left, and right most points on the statue. Is there a way to measure the edge of each side to determine the outer most point on the statue? I want to get the
(x,y)
coordinate of each side. I have tried to usecv2.findContours()
andcv2.drawContours()
to get an outline of the statue.import cv2 img = cv2.imread('statue.png') gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) contours = cv2.findContours(gray, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)[0] cv2.drawContours(img, contours, -1, (0, 200, 0), 3) cv2.imshow('img', img) cv2.waitKey()
解決方案Here's a potential approach:
Convert image to grayscale and Gaussian blur
Threshold to obtain a binary image
Find contours
Obtain outer coordinates
After converting to grayscale and blurring image, we threshold to get a binary image
Now we find contours using
cv2.findContours()
. Since OpenCV uses Numpy arrays to encode images, a contour is simply a Numpy array of(x,y)
coordinates. We can slice the Numpy array and useargmin()
orargmax()
to determine the outer left, right, top, and bottom coordinates like thisleft = tuple(c[c[:, :, 0].argmin()][0]) right = tuple(c[c[:, :, 0].argmax()][0]) top = tuple(c[c[:, :, 1].argmin()][0]) bottom = tuple(c[c[:, :, 1].argmax()][0])
Here's the result
left: (162, 527)
right: (463, 467)
top: (250, 8)
bottom: (381, 580)
import cv2 import numpy as np # Load image, grayscale, Gaussian blur, threshold image = cv2.imread('1.png') gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) blur = cv2.GaussianBlur(gray, (3,3), 0) thresh = cv2.threshold(blur, 220, 255, cv2.THRESH_BINARY_INV)[1] # Find contours cnts = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE) cnts = cnts[0] if len(cnts) == 2 else cnts[1] c = max(cnts, key=cv2.contourArea) # Obtain outer coordinates left = tuple(c[c[:, :, 0].argmin()][0]) right = tuple(c[c[:, :, 0].argmax()][0]) top = tuple(c[c[:, :, 1].argmin()][0]) bottom = tuple(c[c[:, :, 1].argmax()][0]) # Draw dots onto image cv2.drawContours(image, [c], -1, (36, 255, 12), 2) cv2.circle(image, left, 8, (0, 50, 255), -1) cv2.circle(image, right, 8, (0, 255, 255), -1) cv2.circle(image, top, 8, (255, 50, 0), -1) cv2.circle(image, bottom, 8, (255, 255, 0), -1) print('left: {}'.format(left)) print('right: {}'.format(right)) print('top: {}'.format(top)) print('bottom: {}'.format(bottom)) cv2.imshow('thresh', thresh) cv2.imshow('image', image) cv2.waitKey()
這篇關(guān)于使用 Python OpenCV 查找圖像中的極端外部點的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!
【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!