aws_ai 0.0.2 copy "aws_ai: ^0.0.2" to clipboard
aws_ai: ^0.0.2 copied to clipboard

outdated

Flutter package to wrap Amazon artificial intelligence services

example/example.dart

import 'package:aws_ai/src/RekognitionHandler.dart';
import 'dart:async';
import 'dart:io';

main() async {

  File sourceImagefile; //load source image in this File object
  String  accessKey = "",
          secretKey = "",
          region    = "" ;

  RekognitionHandler rekognition = new RekognitionHandler(accessKey, secretKey, region);
  Future<String> labelsArray = rekognition.detectLabels(sourceImagefile);
  print(labelsArray);
}
12
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Flutter package to wrap Amazon artificial intelligence services

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

async, crypto, flutter, http, intl, path

More

Packages that depend on aws_ai