detectObjectOnBinary method

Future<List?> detectObjectOnBinary({
  1. required Uint8List binary,
  2. String model = "SSDMobileNet",
  3. double threshold = 0.1,
  4. int numResultsPerClass = 5,
  5. List anchors = anchors,
  6. int blockSize = 32,
  7. int numBoxesPerBlock = 5,
  8. bool asynch = true,
})

Implementation

Future<List?> detectObjectOnBinary({
  required Uint8List binary,
  String model = "SSDMobileNet",
  double threshold = 0.1,
  int numResultsPerClass = 5,
  List anchors = anchors,
  int blockSize = 32,
  int numBoxesPerBlock = 5,
  bool asynch = true,
}) {
  throw UnimplementedError('detectObjectOnBinary() has not been implemented.');
}