getBoundingBoxes abstract method

Future<Map<Rect, String?>> getBoundingBoxes({
  1. required CameraImage image,
  2. required int imageRotation,
})

Extracts the locations and sizes of bounding boxes within an image. Returns a Map<Rect, String?> combining the bounding boxes and their text content.

Implementation

Future<Map<Rect, String?>> getBoundingBoxes({
  required CameraImage image,
  required int imageRotation,
});