-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Hough Line2D/Ray2D detection #2
Comments
houghLineDetection
Doesn't Report Lines Detected
Progress: a simple version of the hough transform works pretty nicely, might need some tweaking, but that's still progress :) |
Another progress note: hough transform works, but needs to filter garbage rays and turn them into line segments. Will probably try implementing a RANSAC-style filter for that. |
RANSAC-style filter? Could you tell me what does it do? |
RANSAC is a method of detecting patterns within a data set, by using random samples from the set, and searching for a predetermined wanted pattern RANSAC implementation here is:
|
Actually, seems like I misunderstood some stuff, RANSAC is probably not the answer here. A better way is probably just going over each ray and scanning from lines, beginning to end |
Pretty interesting… |
Impelemented - will close this soon🙏 |
the voting part is unimplemented for now because i couldn't figure it out 🙃
this is an important part of the library, and needs to be implemented asap
The text was updated successfully, but these errors were encountered: