SegmentationMask.fromJson constructor

SegmentationMask.fromJson(
  1. Map json
)

Returns an instance of SegmentationMask from a given json.

Implementation

factory SegmentationMask.fromJson(Map<dynamic, dynamic> json) {
  final values = json['confidences'];
  final List<double> confidences = [];
  for (final item in values) {
    confidences.add(double.parse(item.toString()));
  }
  return SegmentationMask(
    width: json['width'] as int,
    height: json['height'] as int,
    confidences: confidences,
  );
}