how to save feature vector of SURF for each image and train, test it for classification to svm?
조회 수: 1 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
KALYAN ACHARJYA
2019년 8월 2일
편집: KALYAN ACHARJYA
2019년 8월 2일
"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"
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
댓글 수: 7
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!