nora wrote:hello,
I tried the tutorial "Show TemplateContentCS" to extract the information about minutiae ( x, y and theta format) but i couldn"t.
Any idea about how to get the minutiae information from finger template? (I am using SDK 5-1 trial version.)
Best regards,
Hello,
Please explain what do you mean by "i couldn't".
Following lines prints minutia's x, y coordinates and angle in ShowTemplateContentCS tutorial:
- Code: Select all
Console.WriteLine("\t\tx: {0}", minutia.X);
Console.WriteLine("\t\ty: {0}", minutia.Y);
Console.WriteLine("\t\tangle: {0}", RotationToDegrees(minutia.RawAngle));
You can look into NTemplateSample, but tutorial is more basic.
"SDK\Samples\Biometrics\CS\NTemplateSampleCS"