What problem does it solve? Segmenting objects in images traditionally requires training task-specific models on labeled datasets. This Skill provides operational guidance for Meta's Segment Anything Model (SAM), which produces high-quality object masks on any image domain without fine-tuning, using simple point, box, or mask prompts. ## Core Features & Use Cases - Interactive Segmentation: Generate masks from foreground/background points, 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. - Deployment & Integration: Export to ONNX for browser and edge deployment, use HuggingFace Transformers, or build FastAPI/Gradio annotation services. - Use Case: Build an annotation tool where a user clicks an object in an image, and SAM returns a pixel-accurate mask that is exported as COCO RLE for training a downstream detection model. ## Quick Start Ask the AI to segment the object at a specific point in your image using SAM with the ViT-H checkpoint and return the highest-scoring mask.