describeImage method

Future<String> describeImage(
  1. Uint8List imageBytes
)

Describes the image encoded in imageBytes (for example PNG or JPEG bytes) and returns the description.

Implementation

Future<String> describeImage(Uint8List imageBytes) {
  throw UnimplementedError('describeImage() has not been implemented.');
}