Is the following code is sufficient for feature detection, extraction of multiple images and storing them into single cell for classification?

2 ビュー (過去 30 日間)
srcFiles = dir('C:\Users\LENOVO\Desktop\Genuine\1\*.png'); % the folder in which ur images exists
Features = cell(length(srcFiles),1) ;
Valid_points =cell(length(srcFiles),1) ;
for i = 1 : length(srcFiles)
filename = strcat('C:\Users\LENOVO\Desktop\Genuine\1\',srcFiles(i).name);
I1 = rgb2gray(imread(filename));
points1 = detectSURFFeatures(I1); hold on;
[features1, valid_points] = extractFeatures(I1, points1);
Features{i} = features1 ;
Valid_points{i} = valid_points ;
figure; imshow(I1);
plot(valid_points{i}.selectStrongest(10),'showOrientation',true);
end
Features;
Valid_points;
I got a blank graph:
blank graph.png
And i got following error using above code
Error using Feature_storing (line 13)
Cell contents reference from a non-cell array object.

採用された回答

YT
YT 2019 年 2 月 9 日
Look closely what you're exactly trying to plot
Valid_points{i} = valid_points;
figure; imshow(I1);
plot(valid_points{i}.selectStrongest(10),'showOrientation',true);
Giving variables the same name (except first letter uppercase) is not only confusing for you but also for others that might ever have to read your code. You probably either want to
plot(Valid_points{i});
or
plot(valid_points);
  1 件のコメント
Regina N
Regina N 2019 年 2 月 9 日
編集済み: Regina N 2019 年 2 月 9 日
ohk im correcting it....bt you tell me, is this code ok to store the extracted features.
help me to solve the error which is occured.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by