getImagePredictionListObjectDetection abstract method

  1. @TaskQueue(type: TaskQueueType.serialBackgroundThread)
  2. @async
List<ResultObjectDetection> getImagePredictionListObjectDetection(
  1. int index,
  2. Uint8List? imageData,
  3. List<Uint8List>? imageBytesList,
  4. int? imageWidthForBytesList,
  5. int? imageHeightForBytesList,
  6. double minimumScore,
  7. double IOUThreshold,
  8. int boxesLimit,
)

predicts image but returns the output detections

Implementation

@TaskQueue(type: TaskQueueType.serialBackgroundThread)
@async
List<ResultObjectDetection> getImagePredictionListObjectDetection(
    int index,
    Uint8List? imageData,
    List<Uint8List>? imageBytesList,
    int? imageWidthForBytesList,
    int? imageHeightForBytesList,
    double minimumScore,
    double IOUThreshold,
    int boxesLimit);