CustomImageLabelerOptions constructor

CustomImageLabelerOptions({
  1. double confidenceThreshold = 0.5,
  2. required CustomLocalModel customModel,
  3. required String customModelPath,
  4. int maxCount = 5,
})

Constructor to create an instance of CustomImageLabelerOptions

Implementation

CustomImageLabelerOptions(
    {this.confidenceThreshold = 0.5,
    required this.customModel,
    required this.customModelPath,
    this.maxCount = 5});