Feature extraction metric calculation for image classification

조회 수: 3 (최근 30일)
artemoila
artemoila 2016년 1월 25일
편집: Dima Lisin 2016년 1월 27일
I am trying to classify histological images using the bag of features method. In the exampleBagOfFeaturesExtractor the variance is used or the detection metric if a feature detector was used for point selection. I am using different feature extraction techniques and my question is how can I choose which metric(s) to use after the feature extraction.
Another similar question. when I extracted both BRISK and SURF features, I used the normalized variance as a feature metric because the variances from the BRISK features were a lot bigger than the SURFs so basically only the BRISKs were taken into account later at the classification. Was that correct?
  댓글 수: 2
Image Analyst
Image Analyst 2016년 1월 25일
It might help if you posted an image.
artemoila
artemoila 2016년 1월 25일
편집: artemoila 2016년 1월 25일
The images mostly look like this one.

댓글을 달려면 로그인하십시오.

답변 (1개)

Dima Lisin
Dima Lisin 2016년 1월 25일
편집: Dima Lisin 2016년 1월 27일
This is strange... You should not have been able to use BRISK descriptors with bagOfFeatures at all. BRISK descriptors are binary bit strings, which cannot not be clustered using K-means.
  댓글 수: 3
Dima Lisin
Dima Lisin 2016년 1월 26일
Unfortunately, that doesn't work. If you take binaryFeatures objects, convert them to double, and then cluster them, the clusters will not be meaningful. This is because the Euclidean distance between two such vectors has nothing to do with the similarity between the image patches that they describe.
artemoila
artemoila 2016년 1월 27일
Thank you very much for clarifying this. In the case I want to combine more than one type of features is what I did with the variance metric correct?

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by