camera.dart 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. import 'dart:ui';
  2. import 'package:camera/camera.dart';
  3. import 'package:flutter/foundation.dart';
  4. import 'package:google_mlkit_object_detection/google_mlkit_object_detection.dart';
  5. Future<InputImage?> processCameraImage(
  6. CameraDescription camera,
  7. CameraImage image,
  8. void Function(InputImage inputImage) onImage,
  9. ) async {
  10. final WriteBuffer allBytes = WriteBuffer();
  11. // ignore: curly_braces_in_flow_control_structures
  12. for (final Plane plane in image.planes) allBytes.putUint8List(plane.bytes);
  13. final bytes = allBytes.done().buffer.asUint8List();
  14. final Size imageSize = Size(image.width.toDouble(), image.height.toDouble());
  15. final imageRotation = InputImageRotationValue.fromRawValue(camera.sensorOrientation);
  16. if (imageRotation == null) return null;
  17. final inputImageFormat = InputImageFormatValue.fromRawValue(image.format.raw);
  18. if (inputImageFormat == null) return null;
  19. final planeData = image.planes
  20. .map((Plane plane) => InputImagePlaneMetadata(
  21. bytesPerRow: plane.bytesPerRow,
  22. height: plane.height,
  23. width: plane.width,
  24. ))
  25. .toList();
  26. final inputImageData = InputImageData(
  27. size: imageSize,
  28. imageRotation: imageRotation,
  29. inputImageFormat: inputImageFormat,
  30. planeData: planeData,
  31. );
  32. final inputImage = InputImage.fromBytes(bytes: bytes, inputImageData: inputImageData);
  33. onImage(inputImage);
  34. }