lizarisk
lizarisk

Reputation: 7840

What is the best solution for rotation invariant detector?

I'd like to create an object detector based on cascade classifier, the only problem is that LBP and Haar features are not rotation invariant. The first thing that comes to my mind is to rotate the training sample at different angles, but I doubt that the resulting classifier would have good quality, moreover, the object could have stretched proportions. There are many rotation invariant detectors, for example, iPhone recognizes faces in real time in any orientation, so I wonder how do they achieve this? I would prefer to use OpenCV for this.

Upvotes: 9

Views: 10303

Answers (4)

nmarkus
nmarkus

Reputation: 51

Check out the object detection framework available at https://github.com/nenadmarkus/pico.

The framework enables you to learn a custom object detector (for example, for finding frontal, upright faces) and then use it at runtime for rotation invariant detection.

This is achieved by scanning the image with a rotated version of the object detector at a number of different orientations. Note that this can be done without cascade retraining or image resampling, and it should work in real-time on modern machines (the provided face detection demo does).

The details are given in the paper available at http://arxiv.org/abs/1305.4537.

Upvotes: 5

CTZStef
CTZStef

Reputation: 1715

Fourier descriptors are rotation invariants (and translation as well as scaling invariants); the idea then would be to train whatever classifier your confortable with on the Fourier Descriptor result (PCA on Fourier descriptor, associated with a SVM seems to be a logical choice).

See Fourier Descriptors (Wolfram)

Upvotes: 3

Abhishek Thakur
Abhishek Thakur

Reputation: 17025

for matching logos I think this is what you need: http://www.ijera.com/papers/Vol2_issue5/JW2517421747.pdf

Upvotes: 2

G453
G453

Reputation: 1456

What about some simple solution....

Object Detection using SURF

Upvotes: 1

Related Questions