unified_apple_vision 1.0.0 unified_apple_vision: ^1.0.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 🍎 #
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
copied to clipboard
Usage 🕹 #
// initialize
final vision = UnifiedAppleVision();
// create input image
final input = VisionInputImage(
bytes: image.bytes,
size: image.size,
);
// analyze
vision.analyze(
image: input,
requests: [
// add requests you wish to perform
VisionRecognizeTextRequest(
onResults: (results) {
final observations = results.ofRecognizeTextRequest; // get casted results
// some action
},
),
],
);
copied to clipboard
Documents 📘 #
License 📜 #
This project is licensed under the MIT License - see the LICENSE file for details.