Answer
Oct 31, 2025 - 04:39 PM
To register a fingerprint and use it for recognition with the 2CONNET RT1011 Fingerprint Development Kit, follow these steps based on the provided manual:
1. **Open the Fingerprint Device:**
- Use the `OpenDevice` function to open the fingerprint device. Parameters are integers for setting device parameters. Use `OpenDevice(0, 0, 0)` to open the device.
2. **Connect the Device:**
- After opening the device, use the `LinkDevice` function to verify communication reliability.
3. **Register Fingerprint Reference Template:**
- Start the registration process by calling the `EnrolFpChar` function to register the fingerprint reference template.
4. **Collect Fingerprint Matching Template:**
- Use the `GenFpChar` function to start collecting the fingerprint matching template.
5. **Compare Templates for Recognition:**
- After registering the reference template and collecting the matching template, use functions like `MatchTemplateEx` to compare the templates for recognition. This will determine if the current finger matches the user in the database.
6. **Drawing Fingerprint Image (Optional):**
- If needed, you can use the `DrawImage` function to draw the fingerprint image on a specified window.
7. **Close the Device:**
- Finally, use the `CloseDevice` function to turn off the fingerprint device.
By following these steps and utilizing the provided functions in the manual, you can successfully register a fingerprint and use it for recognition with the 2CONNET RT1011 Fingerprint Development Kit.
User Manual Q&A

Add New Comment