Reputation: 9
i've been working on implementation for iris recognition system in Matlab , on Normalization i used this function
[polar_array, polar_noise] = normaliseiris(image, x_iris, y_iris, r_iris,x_pupil, y_pupil, r_pupil, eyeimage_filename, radpixels, angulardiv);
i passed x, y and radius coordinates for both circles (iris and pupil) to x_iris, y_iris, r_iris,x_pupil, y_pupil, r_pupil
but i'm stuck at these two variables (radpixels, angulardiv) !! couldn't figure out what values should i pass ?! i saw someone said he/she passed 32 , 240 respectively but it didn't work with me ! Can anyone tell me what values should i pass ? or at least an explanation ?
Thanks :)
Upvotes: 1
Views: 835
Reputation: 2180
Isn't it clearly said in the comments?
% radpixels - radial resolution, defines vertical dimension of
% normalised representation
% angulardiv - angular resolution, defines horizontal dimension
% of normalised representation
(Source)
Note: "32, 240" can be useful values... but how shall we know what's wrong with your parametrization without more details? You should think about how much radpixels and angulardiv are useful for your application.
Upvotes: 0