runPoseNetOnBinary method
Future<List?>
runPoseNetOnBinary({
- required Uint8List binary,
- int numResults = 5,
- double threshold = 0.5,
- int nmsRadius = 20,
- bool asynch = true,
override
Implementation
@override
Future<List?> runPoseNetOnBinary({required Uint8List binary, int numResults = 5, double threshold = 0.5, int nmsRadius = 20, bool asynch = true}) async {
return await _channel.invokeMethod('runPoseNetOnBinary', {
"binary": binary,
"numResults": numResults,
"threshold": threshold,
"nmsRadius": nmsRadius,
"asynch": asynch,
});
}