Checking Liveness and Face Biometry
OzCapsula (SDK v8.22 and newer)
private fun runAnalysis(container: DataContainer?) {
if (container == null) return
AnalysisRequest.Builder()
.addContainer(container)
.build()
.run(
{ result ->
val isSuccess = result.analysisResults.all { it.resolution == Resolution.SUCCESS }
},
{ /* show error */ },
{ /* update status */ },
)
}SDK 8.21 and older
Adding Metadata
Extracting the Best Shot
Using Media from Another SDK
Adding Media to a Certain Folder
Last updated
Was this helpful?
