I'm storing image features in a matrix of Feature_Vector. Each column has features for an image. Since SURF features may be more or less for different images, Whats the better way of storing them?
I'm using SVM for classification later.
for different_image
featureVector(:,k) = [SURF Keypoints]
end