Features detection with ARToolKit?

381 Views Asked by At

I'm using ARToolKit in an android app and i would like to do a features detection (probably with FREAK because now ARToolKit uses it) in an image. My goal is just to have the number of key points in the image. But I don't find the tools to do just this "simple" task.

Thank you in advance for your help

1

There are 1 best solutions below

1
On

You should look at OpenCV and their implementation of FREAK. There are JAVA wrappers for OpenCV which work on android.

You'll find lot's of tutorials and info at their website and forum.

Here is a similar answer with C++ code. Shouldn't be hard to convert it to Java using OpenCV's own wrappers.

OpenCV FREAK: Fast Retina KeyPoint descriptor

Regards,

Daniel