runImage method

Future<AIResult> runImage(
  1. Uint8List imageBytes
)

Runs image classification on the loaded model and returns the result.

See OnDeviceAi.runImage for full documentation.

Implementation

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