awsrekDetectlabels static method

TransformationData awsrekDetectlabels({
  1. int? maximumLabels = 5,
  2. int? minimumConfidence = 55,
})

Detect objects and text in images

  • maximumLabels : Maximum Labels (Default: 5)

  • minimumConfidence : Minimum Confidence (Default: 55)

Returns TransformationData.

Implementation

static TransformationData awsrekDetectlabels(
    {int? maximumLabels = 5, int? minimumConfidence = 55}) {
  // Call the generated class method
  return AwsrekDetectlabels().detectLabels(maximumLabels, minimumConfidence);
}