← ClaudeAtlas

describe-imagelisted

Describe images (charts, diagrams, tables, screenshots) using Vision AI. Use as fallback when you cannot read an image file directly. Supports batch processing of folders.
Wide-Moat/open-computer-use · ★ 114 · AI & Automation · score 71
Install: claude install-skill Wide-Moat/open-computer-use
# Describe Image Analyze images using Vision AI and generate detailed text descriptions in Russian. ## Quick Start ```bash # Single image python /mnt/skills/public/describe-image/scripts/describe.py \ -i /path/to/image.png # Folder with images python /mnt/skills/public/describe-image/scripts/describe.py \ -i /path/to/folder ``` ## Parameters | Parameter | Default | Description | |-----------|---------|-------------| | `-i, --input` | required | Image file or folder path | | `-c, --context` | "" | (optional) Context for better accuracy (e.g., "Sales dashboard Q4") | | `--page` | 1 | (optional) Page number for folder processing | | `--page-size` | 50 | (optional) Images per page (max 100) | | `--quiet` | false | (optional) Suppress per-image logging in single-file mode | ## Supported Image Types - Charts and graphs (bar, line, pie, radar, scatter) - Tables and spreadsheets - UI screenshots - Flowcharts and process diagrams - Architecture diagrams - Document photos and scans ## Examples **Single image:** ```bash python /mnt/skills/public/describe-image/scripts/describe.py \ -i /home/assistant/document/images/img_001.jpg ``` **With context for better accuracy:** ```bash python /mnt/skills/public/describe-image/scripts/describe.py \ -i dashboard.png \ -c "Quarterly sales report showing EMEA region performance" ``` **Folder with images (batch processing):** ```bash # Process first 50 images python /mnt/skills/public/describe-image/scripts/describe.py