Biometrics Implementation in OpenMRS

This is an introduction to use of biometrics in OpenMRS. There are different implementation that are using biometrics and we would like to know them. have a round discussion on them to come up with a comprehensive solution that can meet majority of implementers who have the need to use biometrics. This discussion is a suggestion from the OMR17 Biometrics Unconferenced session. Here are some highlights from the discussion during the session. @dkayiwa @carapai @jmpango @ssmusoke @k.joseph @mseaton

5 Likes

Thanks @slubwama!

I will add a to do on the PIH end to add a little write-up of what we have done so far.

1 Like

Thank Goodrich will be sharing how we have done it in UgandaEMR later after the conference

As a summary… our fingerprint solutions consists of:

  1. A Spring Boot application utilizing the (propriety) Neurotechnology VeriFinger SDK. A typical implementation would use two instances of this application… one that runs on the client machine and interacts with the fingerprint reader to extract a template from a fingerprint (using “Fingerprint Scanning” mode), and another that runs on a server, stores all the templates, and does the matching (using “Matching Service” mode).

The code for this can be found here:

  1. A “Biometrics Engine” interface/API we added to Registration Core to abstract out interactions with a Biometrics Matching engine:
  1. A basic implementation of that engine that interacts RESTfully with a Biometrics Matching engine (this in in our PIH Core module but could possibly be moved elsewhere?):
  1. Functionality added to Registration App that provides a fingerprint widget to collect fingerprints during the registration flow, (as well as the ability to search for existing patients by fingerprint during the registration process to avoid duplicate registrations)
  1. A basic fingerprint search widget added to Registration App:
  1. Modification to the patient search widget in Coreapps that allows an outside search (in this case the fingeprint search) to inject results into the widget:

Our basic configurations of all this functionality can be found in our Mirebalais distro moudle (though unfortunately since we programatically do all our app config instead of using JSON, so you’ll have to derive what the actual JSON config would be):

Whew! There was a lot here… @mseaton feel free to amend/edit if you think I forgot anything and/or described anything incorrectly.

Hopefully this is helpful… also, not sure if there is somewhere else we want to post this information for posterity?

fyi @raphael and @craigappl

Take care, Mark

3 Likes

I bookmarked it! Thanks Mark!

Hello @mseaton @mksd @mogoodrich @slubwama

I’m exploring the possibility of setting up an Iris Scan System integrated with OpenMRS, and I came across the PIH Biometrics repository at GitHub - PIH/pih-biometrics: Services that handles extraction, enrollment, identification, storage of biometric templates. From my initial look, it seems to focus on fingerprint functionality. Can you confirm if it also supports iris scans?

If not, I’d appreciate your advice on a straightforward Iris Scan System that works well with OpenMRS.

2 Likes

@sharif - correct, the focus of that work was on fingerprints, and I’m sure it wouldn’t work without modification for Iris Scanning, though the principles are likely the same and the changes needed are likely pretty small. I don’t have any experience investigating Iris scanning systems, but the repository you referenced is built on the Neurotechnology SDK, which does have components that support Iris scanning, so it’s likely possible to build on that if desired.

1 Like

Great. Thanks @mseaton .