2
Hi @RajKiran can u provide me with the sample code.
2
To get biometric data using a Morpho device (IMEDIA), you will need to utilize the Morpho SDK and follow the appropriate integration steps. Here is a general outline of the process:
-
Obtain the Morpho SDK:
- Contact the Morpho/IDEMIA sales team or visit their website to obtain the SDK.
- The SDK will provide the necessary libraries and documentation for integrating with the Morpho device.
-
Install the SDK:
- Follow the installation instructions provided with the SDK to install the necessary libraries and dependencies on your development environment.
-
Initialize the Morpho Device:
- Connect the Morpho device (IMEDIA) to your computer.
- Use the SDK's initialization functions to establish a connection with the device and configure it for data capture.
-
Capture Biometric Data:
- Use the appropriate SDK functions to capture biometric data from the Morpho device.
- The specific methods and functions will depend on the programming language and SDK version you are using.
-
Process Biometric Data:
- Once you have captured the biometric data, you can process and use it according to your application's requirements.
- This may involve storing the data securely, performing matching or verification against existing records, or other biometric-related operations.
It's important to note that the exact steps and code required for biometric data capture will depend on the Morpho SDK version, programming language, and specific requirements of your application. It is recommended to refer to the SDK documentation and resources provided by Morpho/IDEMIA for detailed instructions, code samples, and integration guidelines specific to your environment.

1
Hi @Tarun, Please find the code snippet
using MorphoSmartSDK;
// Initialize the device
MorphoSmartSDK mso = new MorphoSmartSDK();
mso.Init();
// Connect to the device
mso.ConnectToDevice();
// Capture biometric data
MorphoSmartSDK.CAPTURE_RESULT captureResult = mso.Capture();
// Handle the captured data
byte[] capturedData = mso.GetRawImage();
// Process the captured data as needed
// {}
// Disconnect from the device
mso.DisconnectFromDevice();
// Release resources
mso.Terminate();