Tagged Questions
6
votes
3answers
440 views
computer vision: extracting info about a shape given a contour (e.g. pointy, round…)
Given the 2D contour of a shape in the form of lines and vertices, how can I Extract Information from that?
like: Pointy, round, straight line.
Shape similarities with a given shape.
Code is not ...
3
votes
1answer
278 views
Difference between Feature Detection and Descriptor Extraction
Does anyone know the difference between FeatureDetection and DescriptorExtraction in OpenCV 2.3? I understand that the latter is required for matching using DescriptorMatcher. If that's the case, what ...
2
votes
1answer
79 views
What's a simple and efficient method for extracting line segments from a simple 2D image?
Specifically, I'm trying to extract all of the relevant line segments from screenshots of the game 'asteroids'. I've looked through the various methods for edge detection, but none seem to fit my ...
2
votes
1answer
2k views
Matlab implementation of Haar feature extraction
Does anyone know of a (purely) matlab implementation of Haar feature extraction (the kind used in Viola&Jones object detection algorithm)?
(I ran across a matlab binding to Opencv's implementation ...
2
votes
6answers
10k views
How do I compare two images & recognize the pattern in an image?
How do I compare two images & recognize the pattern in an image irrespective of its size and pattern size, and using .Net C#? Also, which algorithms are used for doing so from Image Processing?