ObjectDetectionModelBase

abstract class ObjectDetectionModelBase<I>(modelKindDescription: String?) : OnnxHighLevelModel<I, List<<ERROR CLASS>>>

Base class for object detection models.

Constructors

ObjectDetectionModelBase
Link copied to clipboard
common
fun ObjectDetectionModelBase(modelKindDescription: String? = null)

Functions

convert
Link copied to clipboard
common
abstract 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? = null

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

EfficientDetObjectDetectionModelBase
Link copied to clipboard
SSDLikeModelBase
Link copied to clipboard

Extensions

detectObjects
Link copied to clipboard
fun ObjectDetectionModelBase<Bitmap>.detectObjects(imageProxy: ImageProxy, topK: Int = 3): List<DetectedObject>

Returns the detected object for the given image sorted by the score. Internal preprocessing is updated to rotate image to match target orientation. After prediction, internal preprocessing is restored to the original state.