unified_apple_vision 0.1.1 copy "unified_apple_vision: ^0.1.1" to clipboard
unified_apple_vision: ^0.1.1 copied to clipboard

A Flutter plugin for using apple's vision framework.

unified_apple_vision 🍎 #

Pub Version License: MIT

This plugin is for using Apple Vision Framework with Flutter.

This plugin is designed to unify multiple APIs into one plugin and process multiple analysis requests at once.

Features ⚙️ #

Vision API
Text Recognition

Requirements 🧩 #

  • iOS 13.0+
  • macOS 10.15+

Install 📦 #

Add this to your pubspec.yaml:

unified_apple_vision: ^latest

Usage 🕹 #

// config
final vision = UnifiedAppleVision()
  ..executionPriority = VisionExecutionPriority.veryHigh
  ..request = [
    const VisionRecognizeTextRequest(automaticallyDetectsLanguage: true)
  ];

// analyze
final res = await vision.analyze(VisionInputImage(
  bytes: image.bytes,
  size: image.size,
));

Documents 📘 #

License 📜 #

This project is licensed under the MIT License - see the LICENSE file for details.

4
likes
0
points
33
downloads

Publisher

verified publisherdrdng.dev

Weekly Downloads

A Flutter plugin for using apple's vision framework.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on unified_apple_vision