unified_apple_vision 🍎
A plugin for using Apple Vision Framework with Flutter, designed to integrate multiple APIs into one plugin and process multiple analysis requests at once.
Features ⚙️ & Requirements 🧩
Status: ✅ Complete ⚠️ Problematic 👨💻 In Progress ❌ Not Yet
Install 📦
Add this to your pubspec.yaml:
unified_apple_vision: ^latest
Usage 🕹
// initialize
final vision = UnifiedAppleVision();
// create input image
final input = VisionInputImage(
bytes: image.bytes,
size: image.size,
);
// analyze
final res = await vision.analyze(input, [
// add requests you wish to perform
const VisionRecognizeTextRequest(),
]);
Documents 📘
License 📜
This project is licensed under the MIT License - see the LICENSE file for details.