Keep SURF features from many images
1 次查看(过去 30 天)
显示 更早的评论
Hello everybody,
Currently I wanted to extract SURF feature, let say from bunch of images stored in one folder. I run the following code, I managed to get the feature from the last image only. How can we keep the features for all images we extracted?
Thanks.
srcFiles = dir('D:\Phd Study\Matlab Food\fooddemo\try\*.jpg'); % the folder in which ur images exists
for i = 1 : length(srcFiles)
filename = strcat('D:\Phd Study\Matlab Food\fooddemo\try\',srcFiles(i).name);
I = imread(filename);
a=rgb2gray(I);
points = detectSURFFeatures(a);
[features, valid_points] = extractFeatures(a, points);
end
figure; imshow(I); hold on;
plot(valid_points.selectStrongest(10),'showOrientation',true);
0 个评论
采纳的回答
Thorsten
2016-9-6
The most general form is
[features{i}, valid_points{i}] = extractFeatures(a, points);
if features is just a single number, you can use
[features(i), ...
if features is always a column vector of the same length, you can use
[features(:,i), ...
if features is always a row vector of the same length, you can use
[features(i,:), ...
if features is always a matrix of same size, you can use
[features(:,:,i)
and so on, same for valid_points, of course.
In this case it is efficient to pre-allocate the feature, like
feature = zeros(1, length(srcFiles))
or using
features(1, length(srcFiles)) = 0;
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!