unified_apple_vision 0.1.1 unified_apple_vision: ^0.1.1 copied to clipboard
A Flutter plugin for using apple's vision framework.
unified_apple_vision 🍎 #
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.