Opencv – the particular implementation of Probabilistic Hough Transform in OpenCV

hough-transformopencv

Does anyone know the particular algorithm for Probabilistic Hough Transform in the OpenCV's implementation? I mean, is there a reference paper or documentation about the algorithm?

To get the idea, I can certainly look into the source code, but I wonder if there is any documentation about it. — it's not in the source code's comments (OpenCV 1.0).

Thank you!

-Jin

Best Answer

The OpenCV documentation states that the algoithm is based on "Robust detection of lines using the progressive probabilistic hough transform", by J Matas et al. This is quite different from the RHT described on wikipedia.

The paper does not seem to be freely available on the internet, but you can purcahse it from Elsevier

Related Topic