Package io.mosip.mimoto.service.impl
Class BioApiImpl
- java.lang.Object
-
- io.mosip.mimoto.service.impl.BioApiImpl
-
-
Constructor Summary
Constructors Constructor Description BioApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Response<QualityScore>checkQuality(BIR sample, KeyValuePair[] flags)It checks the quality of the provided biometric image and render the respective quality score.Response<BIR>extractTemplate(BIR sample, KeyValuePair[] flags)Extract template.Response<MatchDecision[]>match(BIR sample, BIR[] gallery, KeyValuePair[] flags)It compares the biometrics and provide the respective matching scores.Response<BIR[]>segment(BIR sample, KeyValuePair[] flags)It segment the single biometric image into multiple biometric images.
-
-
-
Method Detail
-
checkQuality
public Response<QualityScore> checkQuality(BIR sample, KeyValuePair[] flags)
Description copied from interface:IBioApiIt checks the quality of the provided biometric image and render the respective quality score.- Specified by:
checkQualityin interfaceIBioApi- Parameters:
sample- the sampleflags- the flags- Returns:
- the response
-
match
public Response<MatchDecision[]> match(BIR sample, BIR[] gallery, KeyValuePair[] flags)
Description copied from interface:IBioApiIt compares the biometrics and provide the respective matching scores.
-
extractTemplate
public Response<BIR> extractTemplate(BIR sample, KeyValuePair[] flags)
Description copied from interface:IBioApiExtract template.- Specified by:
extractTemplatein interfaceIBioApi- Parameters:
sample- the sampleflags- the flags- Returns:
- the response
-
segment
public Response<BIR[]> segment(BIR sample, KeyValuePair[] flags)
Description copied from interface:IBioApiIt segment the single biometric image into multiple biometric images. Eg: Split the thumb slab into multiple fingers
-
-