boundingBoxSizeLimit property

  1. @TagNumber.new(4)
double get boundingBoxSizeLimit

Only Bounding Box whose size is larger than this limit will be returned. Object Tracking only. Value 0.0 means to return all the detected entities.

Implementation

@$pb.TagNumber(4)
$core.double get boundingBoxSizeLimit => $_getN(3);
  1. @TagNumber.new(4)
set boundingBoxSizeLimit (double v)

Implementation

@$pb.TagNumber(4)
set boundingBoxSizeLimit($core.double v) {
  $_setFloat(3, v);
}