I'm looking for a method to detect quadrilateral based on grayscale images like this.
The actual solution I've made is based on HoughLines and has two problems:
- As it is a parametric method, small changes on the input image gives me two different rectangles.
- The outputs are not precise as the borders of the rectangle in the input image is thick.
Can you recommend me another method to do this ? I'm actually looking at this article but it seems to be a slow method.