Closed danielsanjosepro closed 1 year ago
I looked at it and I tried the canny filter with the Hough transformation a little bit.
From the approach I see the following:
In the example photo, I tested the Canny filter together with the Hough transformation. There are some threshhold values that can be optimised. The x's in the image are the start and end points of the edges that were detected.
Looks very promising
Damn, looks good
@MariusGhica Have a look at https://github.com/lole-elol/tum_cv_challenge_SS23/pull/11 so we can extend the preprocessing I already started
we could validate that we detected (via harris) the start and end points of the line (or a feature reasonably close) in both pictures. Maybe by comparing all found start and end points of both images with their respective detected features via harris. Further we could check if we found the same lines in both pictures by comparing the length of the lines. If the euclidean movement between the to images was small enough, the lines should roughly have the same lenght (maybe relative threshold via average line length) We could then just connect the 3D projection of these two points and construct the line directly in the pointcloud.
Completed by #36