commonMain.net.iriscan.sdk.face.impl.FaceExtractorImpl.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biometric-sdk Show documentation
Show all versions of biometric-sdk Show documentation
Biometric SDK Kotlin Multiplatform library (android + ios)
package net.iriscan.sdk.face.impl
import net.iriscan.sdk.core.image.Image
import net.iriscan.sdk.core.image.NativeImage
/**
* @author Slava Gornostal
*/
internal expect class FaceExtractorInternal() {
fun extract(image: Image): Image?
fun extract(image: NativeImage): NativeImage?
}