error in storing HOG feature

20 visualizzazioni (ultimi 30 giorni)
Chandru G
Chandru G il 21 Mar 2017
Commentato: Chandru G il 2 Giu 2017
I am Extracting HOG features from above code and storing the features in mat file, there I'm getting below error help me to solve the code.

Risposta accettata

Tohru Kikawada
Tohru Kikawada il 21 Mar 2017
extractHOGFeatures returns different sized features based on the image size. So you will need to resize images to the same image size if you expect the same feature length as follows:
I = imread(filename);
I = imresize(I,[256 256]); % align image size
featureVector = extractHOGFeatures(I);
  1 Commento
Chandru G
Chandru G il 2 Giu 2017
I Made size normalisation to all my images. and I got good result.thq.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by