SSDLikeModelMetadata

data class SSDLikeModelMetadata(outputBoxesName: String, outputClassesName: String, outputScoresName: String, yMinIdx: Int, xMinIdx: Int)

This class aggregates the metadata of the SSD-like model used for decoding the output. The class is exists mostly for reducing code duplication.

Constructors

SSDLikeModelMetadata
Link copied to clipboard
common
fun SSDLikeModelMetadata(outputBoxesName: String, outputClassesName: String, outputScoresName: String, yMinIdx: Int, xMinIdx: Int)

Properties

outputBoxesName
Link copied to clipboard
common
val outputBoxesName: String

The name of the output tensor with the bounding boxes.

outputClassesName
Link copied to clipboard
common
val outputClassesName: String

The name of the output tensor with the class indices.

outputScoresName
Link copied to clipboard
common
val outputScoresName: String

The name of the output tensor with classes confidence scores.

xMinIdx
Link copied to clipboard
common
val xMinIdx: Int

The index of the xMin coordinate in the bounding box encoded representation.

yMinIdx
Link copied to clipboard
common
val yMinIdx: Int

The index of the yMin coordinate in the bounding box encoded representation.