checkobjectsize static method

TransformationData checkobjectsize({
  1. int? objectthresholdpercent = 50,
})

Calculates the percentage of the main object area relative to image dimensions.

  • objectthresholdpercent : Object Threshold Percent (Default: 50)

Returns TransformationData.

Implementation

static TransformationData checkobjectsize(
    {int? objectthresholdpercent = 50}) {
  // Call the generated class method
  return CheckObjectSize().detect(objectthresholdpercent);
}