image processing - Error in helperExtractHOGFeaturesFromImageSet (line 10) -




hi working on hog.

this code:

   % labels each image.  traininglabels = trainingset.labels;  % fitcecoc uses svm learners , 'one-vs-one' encoding scheme.  classifier = fitcecoc(trainingfeatures, traininglabels);  % extract hog features test set.  procedure similar % shown earlier , encapsulated helper function brevity.  [testfeatures, testlabels] = helperextracthogfeaturesfromimageset(testset, hogfeaturesize, cellsize);  % make class predictions using test features.  predictedlabels = predict(classifier, testfeatures); 

the error occur on helperextracthogfeaturesfromimageset function please give me solution. thanks





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -