How do I create a matrix of the surf features for about 100 images?
Mostra commenti meno recenti
Basically, I'm creating a Neural Network.. I have all of my images and I have the code to detect the SURF Features. Now, I need help to place the images with detected features into a matrix please.
This is the SURF code with the image it display with SURF points. I need to do this for 300 images made into a matrix to start training my NN.
clear;
close all;
I = imread('D:\test\chair\0001.png');
figure; imshow(I);
I = rgb2gray(I);
figure; imshow(I);
points = detectSURFFeatures(I);
figure;
imshow(I); hold on;
plot(points.selectStrongest(10));
[features, valid_points] = extractFeatures(I, points);
plot(valid_points.selectStrongest(5),'showOrientation',true);

3 Commenti
KALYAN ACHARJYA
il 31 Lug 2019
Modificato: KALYAN ACHARJYA
il 31 Lug 2019
You have done for one image, now you want to do same for 300 images right?
Now, I need help to place the images with detected features into a matrix please
Which matrix, variable name please?
Lauren Pitts
il 31 Lug 2019
KALYAN ACHARJYA
il 6 Ago 2019
@Prabhan is already answerd, hope the problem is resolved, if not let me know?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Get Started with Statistics and Machine Learning Toolbox in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!