SinglePoseDetectionModelBase

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

Base class for pose detection models for detecting a single pose per image.

Constructors

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

Functions

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

Converts raw model output to the result.

detectPose
Link copied to clipboard
common
fun detectPose(image: I): <ERROR CLASS>

Detects a pose for the given image.

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): <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

SinglePoseDetectionModel
Link copied to clipboard

Extensions

detectPose
Link copied to clipboard
fun SinglePoseDetectionModelBase<Bitmap>.detectPose(imageProxy: ImageProxy): DetectedPose

Detects a pose for the given imageProxy. Internal preprocessing is updated to rotate image to match target orientation. After prediction, internal preprocessing is restored to the original state.