필터 지우기
필터 지우기

Info

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

how to get the feature vector after extracting MSERFeature of multiple images.

조회 수: 1 (최근 30일)
Tehmina Kakar
Tehmina Kakar 2018년 7월 7일
마감: MATLAB Answer Bot 2021년 8월 20일
How can i get the feature vector after detecting the feature ( MSERFeature). I'm using the following code.
close all; clear variable; clc;
dbstop if error
dirData = dir('F:\MATLAB\R2017a\bin\Project\project\pashto\actual proj\New folder\proo\Numbers\*.bmp');
for k = 1:length(dirData)
%%read no. of images from folder
filename = dirData(k).name;
im1 = im2single(im2bw(imread(filename)));
%%Detect the MSERF Features
points1 = detectMSERFeatures(im1);
%%Extract the MSERF Features
[features2, valid_points1] = extractFeatures(im1, points1);
figure; imshow(im1); hold on;
plot(valid_points1.selectStrongest(10),'showOrientation',true);
end
Now, i have to get the feature vector for classification purpose. Also, can I use the manual feature vector? What is the difference between them.
featureVector = [theMean, area, perimeter, stdDev];
Please tell me if i'm wrong or ive any other suggestion.

답변 (0개)

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

Community Treasure Hunt

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

Start Hunting!

Translated by