MATLAB File Help: cv.HoughLinesP | Index |
Finds line segments in a binary image using the probabilistic Hough transform
lines = cv.HoughLinesP(image)
lines = cv.HoughLinesP(..., 'OptionName', optionValue, ...)
{[x1,y1,x2,y2], ...}
, where (x1,y1)
and (x2,y2)
are the ending
points of each detected line segment.>Threshold
). default 80.The function implements the probabilistic Hough transform algorithm for line detection, described in [Matas00].
[Matas00]:
Jiri Matas, Charles Galambos, and Josef Kittler. Robust detection of lines using the progressive probabilistic hough transform. Computer Vision and Image Understanding, 78(1):119-137, 2000.