CustomObjectDetectorOptions constructor

CustomObjectDetectorOptions(
  1. CustomModel _customModel, {
  2. bool classifyObjects = false,
  3. bool trackMutipleObjects = false,
  4. int maximumLabelsPerObject = 10,
  5. double confidenceThreshold = 0.5,
})

Constructor for CustomObjectDetectorOptions.

Implementation

CustomObjectDetectorOptions(this._customModel,
    {this.classifyObjects = false,
    this.trackMutipleObjects = false,
    this.maximumLabelsPerObject = 10,
    this.confidenceThreshold = 0.5});