commonMain.net.iriscan.sdk.face.impl.FaceEncoderImpl.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
import net.iriscan.sdk.core.io.DataBytes
import net.iriscan.sdk.face.FaceNetModelConfiguration
/**
* @author Slava Gornostal
*/
internal expect class FaceEncoderInternal(faceNetModelConfig: FaceNetModelConfiguration) {
fun encode(image: Image): DataBytes
fun encode(image: NativeImage): DataBytes
}