How to use Haar wavelet to detect LINES on an image?
        Posted  
        
            by Ole Jak
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Ole Jak
        
        
        
        Published on 2010-04-08T11:13:33Z
        Indexed on 
            2010/04/08
            13:43 UTC
        
        
        Read the original article
        Hit count: 422
        
So I have Image like this

I want to get something like this (I hevent drawn all lines I want but I hope you can get my idea)

I want to use SURF ( (Speeded Up Robust Features) is a robust image descriptor, first presented by Herbert Bay et al. in 2006 ) or something that is based on sums of 2D Haar wavelet responses and makes an efficient use of integral images for finding all straight lines on image. I want to get relative to picture pixel coords start and end points of lines.
So on this picture to find all lines between tiles and thouse 2 black lines on top.
Is there any such Code Example (with lines search capability) to start from?
I love C and C++ but any other readable code will probably work for me=)
© Stack Overflow or respective owner