In pattern recognition and in image processing, feature extraction is a special form of dimensionality reduction. Transforming the input data into the set of features is called feature extraction. If the features extracted are carefully chosen it is expected that the features set will extract the ...
0
votes
2answers
26 views
Identify the limbs of a human in an image
Information:
I am looking to identify the limbs of a human in an image. For the sake of simplicity, one can assume that the Image has been filtered of all background and that only the Human is ...
0
votes
1answer
15 views
SVM: Adding Clinical Features To Feature Vector Extracted From Image
I'm using SVM to classify clinical images of patients belonging to two different groups (patients vs. controls). I use PCA to extract a vector of features from each image, but I'd like to add other ...
0
votes
0answers
11 views
How are feature weights extracted from supervised principal components - 'superpc' analysis?
I am running 'superpc' to model a supervised principal component predictor to predict survival and I am having problems extracting feature weights to derive a formula for calculating a score. I am new ...
-1
votes
0answers
55 views
Features for Kannada Characters recognition in Matlab [closed]
I'm doing a project where i have to classify and recognize Kannada( a South-Indian language) characters. The method i am supposed to follow is to create a set of classifiers and each character should ...
0
votes
0answers
38 views
gabor filter for 2 dimensional grayscale image
What are the different texture feature extraction that can be carried out on a grayscale image 2D array?
I am using HSV color moment for color feature extraction.
I tried using Gabor filter (real ...
0
votes
1answer
60 views
Extraction Texture Feature c++
I'm trying to extract a feature vector for each pixel of an image by using the gray-values of the surrounding pixels:
http://img59.imageshack.us/img59/7398/texturemap.png
The pixels marked in black ...
0
votes
0answers
32 views
How to use Phase demodulation using Gabor 2d filters?
I am using 2d Gabor filters as my feature encoding algorithm. I have refered various papers, in majority of the paper they get 2048 bits after applying the algorithm. But if i apply 2d algorithm i ll ...
1
vote
1answer
68 views
What are the features in feature detection algorithms and other doubts
I am going through feature detection algorithms and a lot of things seems to be unclear. The original paper is quite complicated to understand for beginners in image processing. Shall be glad if these ...
1
vote
1answer
49 views
feature vector: calculation of weights for training vs test set
I am working with text classification using support vector machine, but basically I am confused with computation of feature vector for test set.
For training feature vector, I took TF-IDF vector for ...
1
vote
0answers
83 views
Opencv:Extract features from feature based object detection
I am having a tough time in understanding the intricacies of SURF and SIFT algorithm.I am basically novice in image processing.I went through Lowe's paper and I have the following questions.Shall be ...
0
votes
0answers
75 views
Using Weka for k nearest neighbors search
Based on low level feature , I want to search k nearest neighbors of an image
I'm using weka library
This is my code
public void searchNearstNeighbors ()
{
KDTree tree = new KDTree();
...
0
votes
1answer
224 views
How to apply RANSAC on SURF, SIFT and ORB mathing results
I'm working on image matching, I did many tests on SURF,SIFT,ORB I'm wondering how can I apply RANSAC on the matches in openCV?
0
votes
0answers
36 views
How to apply gray level co occurence methodology to extract the texture characteristics in C#?
I am trying to use GLCM methodology to extract the texture characteristics of images, but i developing the application in C# . Is there any libraries available for that or how can i do this ?
0
votes
0answers
42 views
How can the feature extraction for emotion detection be done? [closed]
I am trying to implement "Audio Video Emotion Detection". For the same I tried to extract facial features using AAM(Active Appearance Model ), but I have not been able to extract feature.
Please help ...
0
votes
0answers
117 views
Increase maximum number of matches computed with FlannBasedMatcher's radiusMatch
I wan't to match SIFT-feature-descriptors using the FlannBasedMatcher. The problem I have is, that at most 32 matches are found per descriptor. I'm using openCV 2.4.1.
What I want to do is to match ...
0
votes
0answers
28 views
How to index image feature data for searching
Image feature extraction algorithms returns Array of double type primitive data points.
like an image can have list / array of any number of double type data.
I have investigated around how to index ...
1
vote
1answer
184 views
Feature Extraction Methods for Hand gesture/posture recognition
I am currently working on a Sign Language Recognition application, where I would like to use a Hidden Markov Model as the classification stage, meaning that I will classify a gesture/posture to obtain ...
1
vote
1answer
128 views
Binary Feature Extraction
I am a beginner in feature extraction for natural language processing purposes.
I want to know how I can use a hashmap to extract features for a text. If each feature is a "key" in hashmap and its ...
-1
votes
1answer
121 views
What does “frame blocking” mean? [closed]
I'm curious about "frame blocking" which is the first step of feauture extraction as i saw in web site. It says that these steps should be follow for feature extraction of an audio:
frame blocking
...
-1
votes
1answer
111 views
Feature Extraction of a binary image
i am doing OCR project using c++ and opencv. I have some black and white images of separated handwritten characters. I want to extract unique features from those images in order to classify them using ...
0
votes
1answer
129 views
Attibute error while using scikit-learn
I am trying to find similar questions using scikit using cosine similarity. I was trying this sample code available on the internet. Link1 and Link2
from sklearn.feature_extraction.text import ...
0
votes
2answers
136 views
Problems during Skeletonization image for extracting contours
I found this code to get a skeletonized image.
I have a circle image (https://docs.google.com/file/d/0ByS6Z5WRz-h2RXdzVGtXUTlPSGc/edit?usp=sharing).
img = cv2.imread(nomeimg,0)
size = np.size(img)
...
0
votes
1answer
196 views
How to calculate roughness contour in opencv? [closed]
Is there a way to calculate roughness contour in opencv?
image sample: https://docs.google.com/file/d/0ByS6Z5WRz-h2NDgySmJ6NnpId0U/edit?usp=sharing
UPDATE
My code for calculating roughness:
...
0
votes
1answer
77 views
How can i calculate elongation of a convex hull in opencv?
I have found this way to calculate elongation basing on image moments
#ELONGATION
def elongation(m):
x = m['mu20'] + m['mu02']
y = 4 * m['mu11']**2 + (m['mu20'] - m['mu02'])**2
return (x ...
0
votes
1answer
196 views
How does it calculate Solidity in opencv on black pixel contour?
Solidity it is calculated like the ratio between area/convex hull area:
#calculating area from contour
area = cv2.contourArea(unicocnt)
#calculating hull and hull area
hull = ...
0
votes
0answers
60 views
What metrics exist to compare image feature vectors except least squares?
I have elongation, solidity and Hu Moments features that represent a set of 150 images.
I would like to know what are typical metrics to make comparison with these feature vectors without using least ...
1
vote
3answers
546 views
Feature extraction in 3D gesture recognition for HMM with Kinect data
I have a set of 3D points mapped onto [0, 1] segments. These points represent simple gestures like circles, waving etc. Now I want to use Hidden Markov Models to recognize my gestures. First step is ...
1
vote
1answer
64 views
What is a good way to include position information of a word in feature vector?
I think bag of words is too simple for my task. I want some to include positional information of a word in feature vector. For example "good" is the second from the end, etc.
0
votes
1answer
96 views
constructing feature vector to learn cluster
Example:
Doc {
Citations: {
0: cite0,
1: cite1,
2: cite2,
...
2
votes
1answer
132 views
Retrieve elongation feature in python opencv, what kind of moment it supposed to be used?
How can i calcalute first and second moment in python opencv and obtaining shape elongation feature?
I'm not so sure about elongation definition, i found: "The less-common elongation shape factor is ...
2
votes
2answers
94 views
Feature extraction from a single word
Usually one wants to get a feature from a text by using the bag of words approach, counting the words and calculate different measures, for example tf-idf values, like this: How to include words as ...
0
votes
1answer
327 views
Is Dense SIFT better for Bag-Of-Words than SIFT?
I'm implementing a Bag-of-Words image classifier using OpenCV. Initially I've tested SURF descriptors extracted in SURF keypoints. I've heard that Dense SIFT (or PHOW) descriptors can work better for ...
0
votes
0answers
87 views
Extracting HTK-style features using Sphinx4
I have converted models I trained for HTK to Sphinx-format models, but as I understand it, the Sphinx4 feature extraction cannot extract HTK-style features though sphinx_fe from Sphinx-base can. My ...
0
votes
1answer
157 views
How it calculates shape elongation in opencv?
I have many greyscale images since i have to extract features for comparison.
How can i calculate a shape elongation (a basic shape descriptor: ...
0
votes
1answer
113 views
Get 1 contour per sign through find_contour and retrieve its Humoments in cv2
It is possible obtain only 5 objects (one per sign) by applying find_contour (opencv module) in this image: https://docs.google.com/file/d/0ByS6Z5WRz-h2WHEzNnJucDlRR2s/edit ?
Now I obtain 64 objects
...
1
vote
2answers
569 views
Audio Feature Extraction using FFT, PSD and STFT and Finding The Most Powerful Frequencies
1) Let's assume I have FFT and STFT coefficients obtained using F = fft(x) and S = spectrogram(x). How can these coefficients be used as audio features? (Here audio feature is used as in the pattern ...
0
votes
0answers
68 views
Canny algorithm is enough for creating a feature descriptor image and giving for SVM?
i retrieve contours from images by using canny algorithm. it's enough to have a descriptor image and put in SVM and find similarities? Or i need necessarily other features like elongation, perimeter, ...
0
votes
3answers
225 views
How can feature selection methods be evaluated? [closed]
Hello,
How can I choose the best fit feature selection method for a given dataset (textual data) ?
In Weka for example, there are several attribute selection methods (CfsSubsetEval, ...
0
votes
0answers
170 views
Fern Planar Objectdetection OpenCV
i'm trying to run the planar object detection algorithm FERN. Here is the code i'm using and my question is if somebody could tell me what is my fault und how i've got to train the Ferns right.
At ...
1
vote
1answer
150 views
feature extractor implementing an SVM with scikit-learn in handwritten digit example
in guide talk about: " In the case of supervised problem, explanatory variables are stored in the .target member." What does it means?
in this example in scikit site:
...
0
votes
1answer
175 views
generating image features dataset in scikit-learn - csv file
I extract 2 edge features (Hog feature and sobel operator) from a single image.
How can i create an image feature dataset in Scikit-learn python, like iris_dataset ?
In the library there are csv ...
1
vote
1answer
89 views
Recover simulated affine transformation for matched asift features (Morel's implementation)
Has anyone tried to recover the simulated affine transformation for the ASIFT feature detector? (From the author's implementation). In the original paper the simulated affine is clearly recovered by ...
1
vote
5answers
189 views
How to approach Machine Learning problems with dynamically sized input collection?
I'm approaching a problem trying to classify a data sample as good or bad quality with machine learning.
The data sample is stored in a relational database. A sample contains the attributes id, name, ...
0
votes
1answer
326 views
how can i work with my own dataset in scikit-learn (for computer vision)?
how can i work with my own dataset in scikit-learn?
Scikit Tutorial always take as example to load his dataset (digit dataset, flower dataset...)
http://scikit-learn.org/stable/datasets/index.html
...
4
votes
3answers
350 views
Feature Selection and Reduction for Text Classification
I am currently working on a project, a simple sentiment analyzer such that there will be 2 and 3 classes in separate cases. I am using a corpus that is pretty rich in the means of unique words (around ...
0
votes
0answers
72 views
CBIR isk-daemon software alternatives
isk-daemon software permits setting feature parameters?
I download desktop version and apparently not!
There are alternative libraries or software which is not all automatic?
I have a set of images ...
0
votes
2answers
187 views
Compressed Histogram of Gradients [CHoG)
I am trying to understand the implementation of low bitrate descriptor Compressed Histogram of Gradients (CHoG) from Stanford Mobile Visual Search publication. is there any open-source code available ...
0
votes
0answers
101 views
Ask for Text Feature Extraction Tools
I am right now working on a project about English text classification. Right now I have several classification algorithms.
However, as the English texts are just raw, I need to extract features from ...
1
vote
1answer
155 views
Embedding JAudio package in java program
Yeah Guys;
I am doing a final year project (BSc) on how Content Based music analysis (Music Genre classification and similarity measures) can improve the song selection of Media player’s shuffle ...
6
votes
2answers
751 views
How are HoG features represented graphically?
I'm implementing the Histogram of Oriented Gradient features from "Histograms of oriented gradients for human detection" and I'd like to visualise the result. All papers on these features use a ...

