MATLAB: How to save feature vector of SURF for each image and train, test it for classification to svm

classificationdigital image processingimage acquisitionimage analysisimage processingImage Processing Toolbox

output for image 1: 322*64
output for image 2: 593*64
and so on the value*64 changes for each image. can anyone please help me how to save so many features and then use it for training.

Best Answer

"output for image 1: 322*64
output for image 2: 593*64
and so on the value*64 changes for each image. can anyone please help me how to save so many features and then use it for training"
Use cell array, I am answering the question to save different sizes/types results data
I am assuming you are calling Images
result=cells(1,total_images);
%................^Total result images
for i=1:total_images
%image read
result{i}= output result;
end
Related Question