getImagePredictionList method
predicts image but returns the raw net output
Implementation
Future<List<double?>?> getImagePredictionList(
int arg_index,
Uint8List? arg_imageData,
List<Uint8List?>? arg_imageBytesList,
int? arg_imageWidthForBytesList,
int? arg_imageHeightForBytesList,
List<double?> arg_mean,
List<double?> arg_std) async {
final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
'dev.flutter.pigeon.ModelApi.getImagePredictionList', codec,
binaryMessenger: _binaryMessenger);
final List<Object?>? replyList = await channel.send(<Object?>[
arg_index,
arg_imageData,
arg_imageBytesList,
arg_imageWidthForBytesList,
arg_imageHeightForBytesList,
arg_mean,
arg_std
]) as List<Object?>?;
if (replyList == null) {
throw PlatformException(
code: 'channel-error',
message: 'Unable to establish connection on channel.',
);
} else if (replyList.length > 1) {
throw PlatformException(
code: replyList[0]! as String,
message: replyList[1] as String?,
details: replyList[2],
);
} else {
return (replyList[0] as List<Object?>?)?.cast<double?>();
}
}