detectObjectOnImage method
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,
})
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.');
}