i dont have an idea about when placing finger on the morpho device i want to get and store the data and sent to api how to do it pls help me. Thanks in advance.
Loading
i dont have an idea about when placing finger on the morpho device i want to get and store the data and sent to api how to do it pls help me. Thanks in advance.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jaya PrakashPosted Jun 7, 2023, 11:24 AM
i need a sample code pls provide me with it.
Deepak RawatPosted Jun 7, 2023, 10:35 AM
To obtain fingerprint data using a Morpho device, you will need to use the MorphoSmart SDK provided by IDEMIA (formerly Safran Identity & Security). Here is a general outline of the steps involved:
Download and install the MorphoSmart SDK from the IDEMIA developer portal. You may need to register for an account and obtain the necessary credentials.
Connect your Morpho device to your computer and ensure it is properly recognized and functioning.
Create a new C# project in your preferred development environment (such as Visual Studio).
Add a reference to the MorphoSmart SDK in your project. You will typically need to reference the DLL files provided by the SDK.
Initialize the Morpho device by instantiating the
MorphoDeviceclass and establishing a connection to the device. You will need to provide the appropriate parameters, such as the device's serial number or IP address.Enroll a fingerprint by capturing one or more samples. Use the
MorphoDevice.Capture(),MorphoDevice.GetFVPImage(), or similar methods provided by the SDK to capture fingerprint images from the device. You may need to specify the desired quality and other parameters. The captured fingerprint image can be stored in memory or saved to a file.Process the captured fingerprint image to extract the fingerprint template. Use the
MorphoDevice.Extract()method or similar functionality provided by the SDK to convert the captured image into a fingerprint template. The template represents the unique characteristics of the fingerprint and can be used for comparison or storage.Perform any additional necessary operations, such as quality checks or image enhancement, based on the features provided by the MorphoSmart SDK.
Remember to consult the MorphoSmart SDK documentation and sample code provided by IDEMIA for detailed instructions and examples specific to your Morpho device model and the version of the SDK you are using.