axiom-vision-ref

Reference Apple's Vision framework APIs for subject segmentation, pose detection, face analysis, text recognition, and barcode detection.

Updated Dec 3, 2025
One-click install
npx skills add https://github.com/tuliopc23/flying-dutchman-app --skill axiom-vision-ref
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: axiom-vision-ref
Source: https://github.com/tuliopc23/flying-dutchman-app/tree/main/.claude/skills/axiom-vision-ref
Command: npx skills add https://github.com/tuliopc23/flying-dutchman-app --skill axiom-vision-ref

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill provides a comprehensive reference for Apple's Vision framework, enabling developers to integrate advanced computer vision capabilities into their applications.

Core Features & Use Cases

  • Computer Vision APIs: Detailed information on subject segmentation, pose detection (hand and body), face analysis, text recognition (OCR), and barcode detection.
  • VisionKit Integration: Guidance on using VisionKit for subject lifting and document scanning.
  • Use Case: Implement real-time hand gesture recognition in a fitness app by referencing the VNDetectHumanHandPoseRequest API.

Quick Start

Refer to the documentation for VNDetectHumanHandPoseRequest to detect hand landmarks.

Frequently Asked Questions about axiom-vision-ref

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I use the Vision framework for text recognition in an iOS app?

To use the Vision framework for text recognition (OCR) in an iOS app, you implement the VNRecognizeTextRequest API to detect and extract text from images, providing camera or photo library inputs directly on iOS, macOS, or visionOS platforms.

Can I detect human hand poses for gesture recognition using Apple's Vision framework?

Yes, you can detect human hand poses for gesture recognition using the VNDetectHumanHandPoseRequest API, which identifies specific hand landmarks to facilitate real-time interactions like fitness app movement tracking.

Does the Vision framework support barcode scanning on macOS and visionOS?

Yes, the Vision framework supports barcode detection across iOS, macOS, and visionOS, allowing you to scan and parse barcode payloads by configuring the VNDetectBarcodesRequest API within your application workflow.

What is the best way to integrate subject segmentation and lifting in a Swift application?

The best way to integrate subject segmentation and lifting is by combining the Vision framework's subject segmentation APIs with VisionKit, which provides specialized UI components for subject lifting and document scanning workflows.

How do I perform face analysis and pose detection simultaneously using Vision APIs?

You perform face analysis and body pose detection simultaneously by creating and configuring VNDetectFaceLandmarksRequest and VNDetectHumanBodyPoseRequest objects, then adding both to a VNImageRequestHandler to process images in a single pass.