FAST Feature Detector / Descriptor EMGUCV / OpenCV

I am new to this stuff, so please bear with me :-)

I am creating a recognition application that can recognize objects. Frames are captured by the webcam, and tracking and recognition are performed in real time.

I am a C # / VB.NET developer, so I use EmguCV OpenCV Wrapper. I tried the SURF function detector and takes 5 seconds per frame!

Therefore, I am trying to use a FAST descriptor.

Can someone give me an example of a code, say, a FAST function (Byval modelImage, ByVal seenImage) that will return the points of an object? You are welcome. If not a sample code, please help me. The EMGUCV documentation doesn't tell me anything.

I appreciate your answer. I'm just a beginner. Answer please.

+4
source share
2 answers

Hi, as soon as I worked on EMGUCV / OpenCV, but I do not know if this will help you, but to detect custom objects that you will need to work on harrcascades. you should see How to create Harcascades

+1
source

Source: https://habr.com/ru/post/1401994/


All Articles