我很难在 Python 中使用 HoughLinesP 和 OpenCV 在此图像中找到棋盘上的线条。
为了理解 HoughLinesP 的参数,我想出了以下代码:
import numpy as np
import cv2
from matplotlib import pyplot as plt
from matplotlib import image as image
I = image.imread('chess.jpg')
G = cv2.cvtColor(I, cv2.COLOR_BGR2GRAY)
# Canny Edge Detection:
Threshold1 = 150;
Threshold2 = 350;
FilterSize = 5
E = cv2.Canny(G, Threshold1, Threshold2, FilterSize)
Rres = 1
Thetares = 1*np.pi/180
Threshold = 1
minLineLength = 1
maxLineGap = 100
lines = cv2.HoughLinesP(E,Rres,Thetares,Threshold,minLineLength,maxLineGap)
N = lines.shape[0]
for i in range(N):
x1 = lines[i][0][0]
y1 = lines[i][0][1]
x2 = lines[i][0][2]
y2 = lines[i][0][3]
cv2.line(I,(x1,y1),(x2,y2),(255,0,0),2)
plt.figure(),plt.imshow(I),plt.title('Hough Lines'),plt.axis('off')
plt.show()
我遇到的问题是这只拿起一行。如果我将 maxLineGap 减少到 1,它会增加数千个。
我理解为什么会这样,但是我如何选择一组合适的参数来合并所有这些共线线?我错过了什么吗?
我想保持代码简单,因为我将它用作此函数的示例。
提前感谢您的帮助!
更新:这与 HoughLines 完美配合。
而且似乎没有边缘检测问题,因为 Canny 工作得很好。
但是,我仍然需要让 HoughLinesP 工作。有任何想法吗??
图片在这里:结果