LocalLabelerOptions constructor

LocalLabelerOptions({
  1. double confidenceThreshold = 0.5,
  2. required String modelPath,
  3. int maxCount = 10,
})

Constructor to create an instance of LocalLabelerOptions.

Implementation

LocalLabelerOptions(
    {double confidenceThreshold = 0.5,
    required this.modelPath,
    this.maxCount = 10})
    : super(confidenceThreshold: confidenceThreshold);