TfOutputFormat

data class TfOutputFormat(    val enumValue: Int? = null,     val enumValueString: String? = null,     val spatialDimensionality: Int? = null,     val pointsPerFinger: Int? = null,     val maxFingersCount: Int? = null)

The information about the format of the neural model.

Constructors

Link copied to clipboard
fun TfOutputFormat(    enumValue: Int? = null,     enumValueString: String? = null,     spatialDimensionality: Int? = null,     pointsPerFinger: Int? = null,     maxFingersCount: Int? = null)

Properties

Link copied to clipboard
val enumValue: Int? = null

Internal value of the format enum-case.

Link copied to clipboard
val enumValueString: String? = null

String representation of the internal enum-case (if available).

Link copied to clipboard
val maxFingersCount: Int? = null

Number of fingers supported by the model.

Link copied to clipboard
val pointsPerFinger: Int? = null

Number of interest points located per finger.

Link copied to clipboard
val spatialDimensionality: Int? = null

Number of spatial dimensions available in the model output.