detectObjectOnFrame method

Future<List?> detectObjectOnFrame({
  1. required List<Uint8List> bytesList,
  2. String model = "SSDMobileNet",
  3. int imageHeight = 1280,
  4. int imageWidth = 720,
  5. double imageMean = 127.5,
  6. double imageStd = 127.5,
  7. double threshold = 0.1,
  8. int numResultsPerClass = 5,
  9. int rotation = 90,
  10. List anchors = anchors,
  11. int blockSize = 32,
  12. int numBoxesPerBlock = 5,
  13. bool asynch = true,
})

Implementation

Future<List?> detectObjectOnFrame({
  required List<Uint8List> bytesList,
  String model = "SSDMobileNet",
  int imageHeight = 1280,
  int imageWidth = 720,
  double imageMean = 127.5,
  double imageStd = 127.5,
  double threshold = 0.1,
  int numResultsPerClass = 5,
  int rotation = 90,
  List anchors = anchors,
  int blockSize = 32,
  int numBoxesPerBlock = 5,
  bool asynch = true,
}) {
  throw UnimplementedError('detectObjectOnFrame() has not been implemented.');
}