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