I am using HOG for feature extraction that consist 1×n vector features. I have to print all training image feature into one text file in matrix form. I have tried write matlab code. Can anyone help me?
조회 수: 2 (최근 30일)
이전 댓글 표시
objects={'apple','bat','beetle'}; trimgs=10;
for i=1:length(objects) for j=1:trimgs imgpath=['.\images\' objects{i} '\img (' int2str(j) ').gif'];
I=imread(imgpath);
J = imresize(I,[256,256]);
fid=fopen('feature_vector.txt','a');
fprintf(fid,'%i\t',hog_feature_vector(J));
fprintf(fid,'\n');
fclose(fid);
end
end
%this code print feature vector in the text file. but not matrix form.
댓글 수: 2
Image Analyst
2017년 8월 30일
hog_feature_vector is a 1-d vector. How do you want it to be in a matrix? Like, how many rows and columns, and why?
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!