SSDObjectDetectionModel
Special model class for detection objects on images with built-in preprocessing and post-processing.
It internally uses SSD model trained on the COCO dataset.
Since
0.3
See also
Constructors
SSDObjectDetectionModel
Link copied to clipboard
fun SSDObjectDetectionModel()
Content copied to clipboard
Functions
detectObjects
Link copied to clipboard
fun detectObjects(inputData: FloatArray, topK: Int = 5): List<DetectedObject>
Content copied to clipboard
Returns the top N detected object for the given image file.
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
inputDimensions
Link copied to clipboard
inputShape
Link copied to clipboard
outputShape
Link copied to clipboard