SSDLikeModelBase

abstract class SSDLikeModelBase<I>(metadata: SSDLikeModelMetadata, modelType: String?) : ObjectDetectionModelBase<I>

Base class for object detection model based on SSD architecture.

Parameters

metadata

SSD-like model metadata. Used for decoding the output.

Constructors

SSDLikeModelBase
Link copied to clipboard
common
fun SSDLikeModelBase(metadata: SSDLikeModelMetadata, modelType: String? = null)

Functions

convert
Link copied to clipboard
common
open override fun convert(output: <ERROR CLASS>): List<<ERROR CLASS>>

Converts raw model output to the result.

detectObjects
Link copied to clipboard
common
fun detectObjects(image: I, topK: Int = 5): List<<ERROR CLASS>>

Returns the detected object for the given image sorted by the score.

initializeWith
Link copied to clipboard
common
open override fun initializeWith(vararg executionProviders: ExecutionProvider)

Initialize the model with the specified executions providers.

predict
Link copied to clipboard
common
open fun predict(input: I): List<<ERROR CLASS>>

Makes prediction on the given input.

summary
Link copied to clipboard
common
open fun summary(): <ERROR CLASS>

Properties

internalModel
Link copied to clipboard
common
abstract val internalModel: OnnxInferenceModel

Model used to make predictions.

modelKindDescription
Link copied to clipboard
common
open override val modelKindDescription: String?

High-level description of the model. Used for model summary printing. For the model hub models it equals to the string representation of the OnnxModelType

preprocessing
Link copied to clipboard
common
abstract val preprocessing: <ERROR CLASS><I, <ERROR CLASS><FloatArray, <ERROR CLASS>>>

Preprocessing operation specific to this model.

Inheritors

SSDLikeModel
Link copied to clipboard
SSDMobileNetV1ObjectDetectionModel
Link copied to clipboard
SSDObjectDetectionModel
Link copied to clipboard