includeConfidence property

  1. @TagNumber.new(2)
bool get includeConfidence

When true, also return confidence_mask_u8: the model's probability for the class it chose, per pixel. Costs width * height extra bytes.

Implementation

@$pb.TagNumber(2)
$core.bool get includeConfidence => $_getBF(1);
  1. @TagNumber.new(2)
set includeConfidence (bool value)

Implementation

@$pb.TagNumber(2)
set includeConfidence($core.bool value) => $_setBool(1, value);