unified_apple_vision 0.5.0 unified_apple_vision: ^0.5.0 copied to clipboard
A plugin for using Apple Vision Framework with Flutter, designed to integrate multiple APIs into one plugin and process multiple analysis requests at once.
unified_apple_vision 🍎 #
This plugin is for using with Flutter.
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 want to process
const VisionRecognizeTextRequest(),
]);
Documents 📘 #
License 📜 #
This project is licensed under the MIT License - see the LICENSE file for details.