Reputation: 1914
My objective is to find multiple barcodes from the pictures with OpenCV. I have tried using SURF to find them, but the method is ineffective in that case (features not unique enough). I was also considering HAAR, but it is not a rotation invariant method.
What do you think is the best approach to handle this problem?
Upvotes: 3
Views: 1906
Reputation: 5139
Train a Support Vector Machine. Create a dataset with many barcodes in many orientations. When testing an image, build a scale-pyramid and apply a sliding window technique. It's called "Object detection". Also "multiple similar but different" is called intra-class variation.
Edit: Or try this.
Upvotes: 1