runSegmentationOnBinary method
Implementation
@override
Future<Uint8List?> runSegmentationOnBinary({required Uint8List binary, List<int>? labelColors, String outputType = "png", bool asynch = true}) async {
return await _channel.invokeMethod('runSegmentationOnBinary', {
"binary": binary,
"labelColors": labelColors ?? TfliteNextPlatform.pascalVOCLabelColors,
"outputType": outputType,
"asynch": asynch,
});
}