Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
437 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 ...
6
votes
4answers
1k views

Audio Feature Extraction

I'm interested in learning about, and writing a system that will extract features from audio files (mp3, wav, etc) which can later be used for whatever purpose. In the future I hope to use it to ...
4
votes
2answers
115 views

How can I weight features for better clustering with a very small data set?

I'm working on a program that takes in several (<50) high dimension points in feature space (1000+ dimensions) and performing hierarchical clustering on them by recursively using standard ...
3
votes
1answer
275 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
78 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?
1
vote
1answer
160 views

Convert PNG images to pixel gray-level values feature vectors

I am a newbie in MATLAB and I have a set of bmp images which I need to convert into pixel gray-level values as feature vectors of image. Can anyone suggest me the way how I can do that? I need to use ...
1
vote
1answer
101 views

Areas of research related to algorithms operating on volume data [closed]

I am writing a masters thesis and would like some input from people who are knowledgeable about one or more of these fields: AI, computer vision, volume graphics, segmentation (3D), feature ...
1
vote
1answer
414 views

Image and audio feature extraction in Java

I am looking for Java libraries that can be used to create feature vectors for a given image or audio file. For example, if the input was 322.bmp the output would be something like 322.bmp 93.444 ...
1
vote
1answer
149 views

Multidimensional indexing of images

I would like to know if there is a good way for indexing multidimensional objects (i.e. images). More precisely, I have a large collection of images on which I calculate n-dimensional feature vectors. ...
0
votes
0answers
34 views

Using Infinite Symmetric Exponential Filter in OpenCV

I am using SIFT (Scale invariant feature transform) for feature detection and extraction in SAR (synthetic aperture radar) images. But I am trying a variation, Instead of using Gaussian function to ...
0
votes
0answers
78 views

I'd like to have software find and count objects in specific zones of a photo [closed]

I'm looking for some help on a project as I have no experience in image processing. If anyone is looking for some work please contact me and we can go over the details but here are the basics. I'll ...
0
votes
1answer
367 views

Retrieving the most significant features gained from SIFT / SURF

I'm using SURF to extract features from images and match them to others. My Problem is that some images have in excess of 20000 features which slows down matching to a crawl. Is there a way I can ...
0
votes
1answer
128 views

contour extraction

Example: I as a user I have a database with 20 images but only 3 images obtain scene with sun. I would like to retrieve images from this database only with sun scene. I am using Fourier descriptor for ...
0
votes
2answers
286 views

How to export pixel coordinates of point objects from an image (with imagej?)

I am on a project where I am interested in the spacing & distribution of point objects in an microscope image. So the image consists of darker, circular small dots from a rather complex ...