detectObjectOnImage method

Future<List?> detectObjectOnImage({
  1. required String path,
  2. String model = "SSDMobileNet",
  3. double imageMean = 127.5,
  4. double imageStd = 127.5,
  5. double threshold = 0.1,
  6. int numResultsPerClass = 5,
  7. List anchors = anchors,
  8. int blockSize = 32,
  9. int numBoxesPerBlock = 5,
  10. bool asynch = true,
})

Implementation

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