필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How can i makes matching between features extracted from pictures

조회 수: 1 (최근 30일)
wisam kh
wisam kh 2018년 7월 10일
마감: MATLAB Answer Bot 2021년 8월 20일
Hello everybody
I am working on fingerprint identification project, I use Hu's Seven Moments Invariant algorithm, to extract the features, after that I save this features as a matrix for each picture, the database containe 60 cells, in every cell there is a matrix of 7 rows and one column, I need your help to compute the similarity between new matrix and the database, and retern the result depends on threshold.
at this time I use this code to compare between test template and train template, but it give me only the minimum distance, where I can't specify threshod.
euclidean_template=cellfun(@norm,trdata ) ;
test_template=cellfun(@norm,tedata ) ;
for i=1:length(test_template)
[minDistance, indexOfMin] = min(abs(euclidean_template-test_template(i)));
formatSpec = '%4.2f is %8.3f \n';
fprintf(formatSpec,i,indexOfMin)
end
thank you

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by