EfficientDetObjectDetectionModel
Special model class for detection objects on images with built-in preprocessing and post-processing.
It internally uses ONNXModels.ObjectDetection.EfficientDetD0 or other EfficientDet models trained on the COCO dataset.
Since
0.4
Constructors
EfficientDetObjectDetectionModel
Link copied to clipboard
fun EfficientDetObjectDetectionModel()
Content copied to clipboard
Functions
detectObjects
Link copied to clipboard
Returns the detected object for the given image file sorted by the score.
predict
Link copied to clipboard
predictRaw
Link copied to clipboard
Returns list of multidimensional arrays with data from model outputs.
predictRawWithShapes
Link copied to clipboard
fun predictRawWithShapes(inputData: FloatArray): List<Pair<FloatBuffer, LongArray>>
Content copied to clipboard
Returns list of pairs from model outputs.
predictSoftly
Link copied to clipboard
Predicts vector of probabilities instead of specific class in predict method.
open override fun predictSoftly(inputData: FloatArray, predictionTensorName: String): FloatArray
Content copied to clipboard
Properties
inputDataType
Link copied to clipboard
inputDimensions
Link copied to clipboard
inputShape
Link copied to clipboard
outputDataType
Link copied to clipboard
outputShape
Link copied to clipboard