필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 1 (최근 30일)
Eslam Hamed
Eslam Hamed 2015년 12월 4일
마감: MATLAB Answer Bot 2021년 8월 20일
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?

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by