What problem does it solve? Segmenting objects in images normally requires task-specific training data and model fine-tuning. This Skill provides operational guidance for Meta AI's Segment Anything Model (SAM), enabling zero-shot segmentation of any object in any image domain using simple point, box, or mask prompts. ## Core Features & Use Cases - Interactive Segmentation: Segment objects with foreground/background point clicks, bounding boxes, or combined prompts, with iterative refinement using previous mask logits. - Automatic Mask Generation: Produce all object masks in an image at once with tunable quality, stability, and density thresholds via SamAutomaticMaskGenerator. - Deployment & Integration: Export to ONNX for browser and edge deployment, use HuggingFace Transformers, or build annotation tools, FastAPI services, and Gradio interfaces. - Use Case: Building a dataset labeling pipeline: run automatic mask generation over raw images, filter masks by predicted IoU above 0.9, and export annotations in COCO RLE format for training a downstream detection model. ## Quick Start Use the segment-anything skill to segment the object at point (500, 375) in my image and return the highest-scoring mask.