how i short out from this.please help me.
Mostra commenti meno recenti
%% EXTRACT FEATURES FROM AN ARBITRARY FINGERPRINT
filename='101_1.tif';
img = imread(filename);
if ndims(img) == 3; img = rgb2gray(img); end % Color Images
disp(['Extracting features from ' filename '101_1.tif']);
ffnew=ext_finger(img,1);
error showing:
Error in main_single (line 8)
ffnew=ext_finger(img,1);
11 Commenti
Geoff Hayes
il 28 Apr 2020
indrani - what is the full error message? Please copy and paste all of the red text (from the error) to this question. And where did you get the code for ext_finger? Is it from https://www.mathworks.com/matlabcentral/answers/281914-i-have-a-fingerprint-recognition-code-in-matlab-in-which-for-which-i-want-detail-explanations-all-t?
indrani dalui
il 28 Apr 2020
indrani dalui
il 28 Apr 2020
Geoff Hayes
il 28 Apr 2020
indrani - you still haven't posted the full error message. I suspect though that it is something along the lines of "Undefined function or variable 'f_enhance'" which is a function that you probably need to request from the author of he code that you found at the link.
indrani dalui
il 28 Apr 2020
indrani dalui
il 28 Apr 2020
Geoff Hayes
il 28 Apr 2020
So you are missing the function fft_enhance_cubs. Where did you get f_enhance from? Presumably the two functions (and maybe more?) would be together.
indrani dalui
il 28 Apr 2020
indrani dalui
il 28 Apr 2020
Geoff Hayes
il 28 Apr 2020
indrani - you have to make sure that this file (and any others related to this work) can be found in the MATLAB Search Path. Since f_enhance can be found, then make sure that fft_enhance_cubs is in the same folder.
indrani dalui
il 30 Apr 2020
Risposte (0)
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!