Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

What are the common features could be used for those classifiers?

1 Ansicht (letzte 30 Tage)
Eslam Hamed
Eslam Hamed am 4 Dez. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
I have built a classifier that either uses K-nearest neighbor or linear discriminant functions to classify objects according to its class by using a training dataset for each class. I have used Maximum length and width, Centroids and medoids for helping the classifier to take the decision. As for an example about extraxting features of the object in the image, supposing that each image has one object with no noise.
for k=1:length(ClassImages)
ObjectInImage = ExtractObject(image);
[Medoid, Centroid, Length, Width] = ImageFeatures(ObjectInImage);
AllLengths{k} = Length;
AllWidths{k} = Width;
Centroids{k} = Centroid;
Medoids{k} = Medoid;
end
What are another common features could be used for real dataset images, like cars, trees, chairs, and so on?

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by