How to add HOG features into matrix (matlab)
问题 After extracting HOG features of folder of images, I want to add all this results in one matrix. How I can do this? this is my code in matlab: training_female = 'E:\Training Set\Female Images'; % read all images with specified extention, its jpg in our case filenames = dir(fullfile(training_female, '*.jpg')); % count total number of photos present in that folder total_images = numel(filenames); for n = 1:total_images % Specify images names with full path and extension full_name= fullfile