getImagePredictionList method

Future<List<double?>?> getImagePredictionList(
  1. int arg_index,
  2. Uint8List? arg_imageData,
  3. List<Uint8List?>? arg_imageBytesList,
  4. int? arg_imageWidthForBytesList,
  5. int? arg_imageHeightForBytesList,
  6. List<double?> arg_mean,
  7. List<double?> arg_std,
)

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?>();
  }
}