-
Notifications
You must be signed in to change notification settings - Fork 633
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 SOFT features in mrpt-vision #514
Comments
I am interested in implementing this feature. Can you give me some cue about where to start from? |
Thanks for the initiative! I'll pass you soon a few pointers on how to get
started.
|
Since this is a new feature detector for this repo I am thinking of creating a new file altogether, like |
Yes, that's perfect.
Please be sure of carefully reading this:
https://github.com/MRPT/mrpt/blob/master/.github/CONTRIBUTING.md
Cheers!
|
I started with implementation of the utilities first. So I wanted to know if any of the following standard Matlab APIs are implemented in MRPT -
Thanks. |
Sorry for the delay but as you might have seen... we have too many interesting developing fronts right now! Answering your doubts:
The same class linked above has a
Yes: mrpt::vision::matchFeatures
Yes: mrpt::vision::CFeatureTracker_KL
Not as a single function, as far as I remember (@famoreno ??), but you could do: CFeatureList list1,list2;
// ...
mrpt::gui::CDisplayWindow win1, win2;
win1.showImageAndPoints( img1, list1 );
win2.showImageAndPoints( img2, list2 ); |
Thanks! That was really helpful. |
has this feature been implemented? |
Nope... if someone wants to contribute it, fork+pull-requests are welcome! ;-) |
Update Nov 2018: There's a SOFT2 version:
The text was updated successfully, but these errors were encountered: