Skip to content
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

Object recognition using this code #1

Open
maxi-mus opened this issue Sep 30, 2014 · 2 comments
Open

Object recognition using this code #1

maxi-mus opened this issue Sep 30, 2014 · 2 comments

Comments

@maxi-mus
Copy link

Any tips on how I could extend this project to recognize the learned image in a live video stream for example?

@mbrenon
Copy link

mbrenon commented Oct 2, 2014

Hi maxi-mus,

This project is mainly a proof-of-concept experiment on the SIFT extraction alone. Implementing full image recognition based on this project would require a lot of work:

  • there's some wrapping to do aroung the sift extractor in order to be able to feed it camera frames,
  • only the SIFT extraction is handled! This means that you would also have to implement:
    • a "reference" feature vectors database,
    • a search among this database to find and validate a match.

In addition to this, the feature extraction based on this experimental method is not very efficient: you'll get better performance using a third-party library!

@maxi-mus
Copy link
Author

maxi-mus commented Oct 9, 2014

Ok, thanks. Any third party libraries in particular you could recommend?

All I'm really trying to do is use a pre-existing library to extract some features, and then run a sliding window on live video (on an iPhone) to detect them. I've looked into a couple of projects (GPUImage, DeepBeliefSDK, this one) but they all won't help me due to various reasons.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants