How to extract SURF features from more than two images i.e. from a folder of facial images?
조회 수: 1 (최근 30일)
이전 댓글 표시
I had tried the basic SURF features extraction using steps from MATLAB documentation. It works on two images, now i want to extract surf features from more images i.e. a folder of image. And how to get extracted features??
Thank you..
I want to extract features from folder of facial images using SURF descriptor.I tried with the below code but I'm getting error " _Subscripted assignment dimension mismatch.
Error in t8 (line 11) [features(:,i), valid_points(:,i)] = extractFeatures(I1, points1);"
댓글 수: 1
채택된 답변
Image Analyst
2016년 9월 25일
Regarding your new/edited question....
Just use normal debugging techniques, like assigning the outputs to variables:
[out1, out2] = extractFeatures(I1, points1);
Now, see if out1 has the same number of rows as features, and if out2 has the same number of rows as valid_points. Really, it's just standard debugging techniques.
댓글 수: 0
추가 답변 (1개)
Image Analyst
2016년 9월 23일
See the FAQ for code samples: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
In the middle of those loops over different files, place your code to do SURF.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!