Questions tagged [feature-extraction]

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 relevant information from the input data in order to perform the desired task using this reduced representation instead of the full size input.

Feature extraction involves simplifying the amount of resources required to describe a large set of data accurately. When performing analysis of complex data one of the major problems stems from the number of variables involved. Analysis with a large number of variables generally requires a large amount of memory and computation power or a classification algorithm which overfits the training sample and generalizes poorly to new samples. Feature extraction is a general term for methods of constructing combinations of the variables to get around these problems while still describing the data with sufficient accuracy.

Best results are achieved when an expert constructs a set of application-dependent features. Nevertheless, if no such expert knowledge is available general dimensionality reduction techniques may help.

Source: Wikipedia

1664 questions
0
votes
2 answers

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 background. It would be nice to do this with an feature…
GoJian
  • 395
  • 1
  • 4
  • 9
0
votes
0 answers

OpenCV Segmentation Fault during Feature Matching

This function extracts and computes the query.keypoints: // extract features analyzer->analyze(query); like this: bool Analyzer::analyze(Query &query) { // detect keypoints query.keypoints.clear(); assert(query.keypoints.empty()); …
0
votes
1 answer

How to save feature value from histogram of LBP image in Matlab?

I'm using Local Binary Pattern (LBP) to extract the features of group of images (500 images in Training folder and 100 Images in Test folder). Indeed, I had extracted these features successfully but I'm not sure whether they saved in correct way or…
Tariq Khalifa
  • 152
  • 1
  • 2
  • 17
0
votes
1 answer

what is the meaning of intensity order in image processing?

I'm reading this article. This article explains a new feature descriptor such as Sift and Surf and it's name is MROGH. In a part of this article, there is this sentence: In our work, sample points are segmented based on their intensity orders and…
0
votes
1 answer

open cv Feature matching using given coordinates

I am feature matching between stereo images using openCv, FAST feature detection and Brute force matching. FastFeatureDetector detector(threshold); detector.detect(img1, keypoints1); detector.detect(img2,…
anti
  • 3,011
  • 7
  • 36
  • 86
0
votes
2 answers

Regarding the number of features extracted from an image for training

I am building a software to classify cells from images taken by a microscope. I have a dataset of images of cells to use as training dataset - I have extracted Keypoints from each image using ORB - Here is my problem - some image produce a lot of…
0
votes
1 answer

Extract numbers and decimal from string in EXCEL

I have an Excel file that contains roughly 40,000 rows of data and i am trying to create a new columnn of only the number and decimal portion of a strinng in another column. I tried to TRIM() and LEFT() but the number value size effects that…
user2822055
  • 119
  • 2
  • 9
0
votes
1 answer

HOG Feature extraction

I want to extract HOG features of Line images of Arabic Handwriting. The code is as follows. So , I want help regarding how to input the image and how to output the features . Can anyone please help me regarding this. import numpy as np from scipy…
0
votes
0 answers

How i can find homogeneity and enargy of image block

Suppose I have block of pixels form an image as following 8 5 22 94 63 65 98 52 41 32 65 21 48 59 77 20 14 15 63 52 21 63 77 85 95 how can I find homogeneity and energyof these pixels (block) and I tried to compute entropy for these values…
0
votes
2 answers

Can you still extract features from a digital signal without converting it to analog using MFCC?

I am developing a back-end speech recognition software wherein the user can import mp3 files. How can I extract the features from this digital audio file? should I convert it back to analog first?
Allen Pol
  • 51
  • 1
  • 6
0
votes
1 answer

pre-processing to improve feature detector before tracking - Matlab

I am trying to make tracking for soccer player, I need to detect features from this player and then estimate the distance difference of these pixels over number of frames. first I have to detect the main features of the player and then match them to…
user1217585
0
votes
0 answers

Feature Extraction and Cross-Validation of an image dataset

I have a dataset consisting of fMRI images. Each image belongs to one class. The dataset is as follows: Class 1: 9 images Class 2: 10 images Class 3: 6 images Class 4: 12 images Each image is 4D (time series), i.e. 90x60x10x350 where 350 is the…
0
votes
2 answers

Count total number of studied vocabularies in papers [Image Processing]

I'm doing a DIP project. I want to count the total number of words in each paper using Image Processing. The original image is: I did some pre-processing and produced the image below: My idea to count the total number of words in each paper is to…
0
votes
1 answer

Feature Extraction for Digit Speech Recognition

I'm looking for a way to extract features from audio where I said a digit for speech recognition of the digits 1-10 using backpropagation with neural networks (10 samples for each digit and 5 samples of each digit for testing). I tried using raw…
0
votes
1 answer

How to extract features from retina images

I'm working in Diabetic Retinopathy Detection problem where I've been given Retina images [image1] with score labels. My job is to build a classification model that can detect and score retinopathy given unlabeled retina images. First step that I'm…
1 2 3
99
100