我是新來的opencv使用Python,所以請耐心等待。 我有一個托盤,鏈接中有不同大小的圓圈。 https://is.alicdn.com/img/pb/810/421/429/429421810_364.jpg 這不是我有的實際圖像,但它與上面的非常相似。 我必須檢測圖像中的紙盤並找到紙盤中所有孔(圓圈)的輪廓。取決於拍攝圖像的用戶,托盤可能會傾斜。到目前爲止,我對圖像使用了高斯模糊和Canny邊緣檢測,並關閉了Canny邊緣檢測中的間隙。這是Canny邊緣檢測後的圖像 這是形態學後的圖像。 然後,我用findcontours,並試圖找到4個頂點的最大輪廓,理想情況下是托盤本身。 輪廓檢測只能識別左側垂直邊界和頂部水平邊界。它無法識別托盤的四個邊緣。使用opencv python遊戲棋盤上的矩形檢測
這是我到目前爲止的代碼:
import numpy as np
import cv2
import matplotlib.pyplot as plt
image = cv2.imread("img.jpg")
image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
image = cv2.GaussianBlur(image, (3, 3), 0)
image_canny = cv2.Canny(image, 30, 200)
kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (7, 7))
gaps_closed = cv2.morphologyEx(image_canny, cv2.MORPH_CLOSE, kernel)
_, contours, _= cv2.findContours(gaps_closed.copy(), cv2.RETR_TREE,
cv2.CHAIN_APPROX_SIMPLE)
contours = sorted(contours, key = cv2.contourArea, reverse = True)
[:5]
Cnt = None
for c in contours:
peri = cv2.arcLength(c, True)
approx = cv2.approxPolyDP(c, 0.04 * peri, True)
if len(approx) == 4:
Cnt = approx
break
cv2.drawContours(image, [Cnt], -1, (0, 255, 0), 4)
plt.imshow(image)
plt.show()
Canny和形態學操作後可以附加當前輸出嗎? – ZdaR
@ZdaR:添加了圖片。 – dep234