problem with size of output extractLBPFeatures inbuilt function.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
for an image in size 480x640 after using extractLBPFeatures function, output is an 1*59 single. for training a neural network such as MLP, that is better input layer less than 59. how to reduce output.
img = imread('trainimage.jpg');
features = extractLBPFeatures(img);
1 Kommentar
ali
am 30 Mär. 2020
You can reduce features by Principle Component Analysis (PCA).
in matlab there is pca() function. google it.
Antworten (0)
Siehe auch
Kategorien
Mehr zu Computer Vision Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!