HoughFeature.lines#
- HoughFeature.lines(minvotes: int) ndarray[source]#
Get Hough lines
- Parameters:
minvotes (int) – only return lines with at least this many votes
- Returns:
Hough lines, one per row as \((\theta, \rho)\)
- Return type:
ndarray(n,2)
Return a set of lines that have at least
minvotesof support. Each line is described by \((\theta, \rho)\) such that\[u \cos \theta + v \sin \theta = \rho\]- References:
Important
Uses OpenCV function
cv2.HoughLineswhich accepts single-channel, CV_8U images (images are pre-converted to uint8 when theHoughobject is created).- Seealso: