All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.net.iriscan.sdk.iris.IrisExtractor.kt Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package net.iriscan.sdk.iris

import net.iriscan.sdk.core.image.Image
import net.iriscan.sdk.core.record.BiometricRecord

/**
 * @author Slava Gornostal
 *
 * Interface for extracting iris texture from image or record
 */
interface IrisExtractor {
    /**
     * Extracts biometric data from biometric image record
     * */
    fun extract(sample: BiometricRecord): BiometricRecord

    /**
     * Extracts biometric data from raw image
     * */
    fun extract(sample: Image): Image?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy