What problem does it solve? Segmenting objects in images traditionally requires training task-specific models on labeled datasets. This Skill lets you segment any object in any image domain without fine-tuning, using Meta AI's Segment Anything Model with simple point or box prompts. ## Core Features & Use Cases - Interactive Segmentation: Generate masks from foreground/background points, bounding boxes, or previous masks using SamPredictor with ViT-B, ViT-L, or ViT-H checkpoints. - Automatic Mask Generation: Produce all object masks in an image at once with SamAutomaticMaskGenerator, with tunable quality and stability thresholds. - Deployment & Integration: Export to ONNX for edge deployment, or use HuggingFace Transformers (SamModel/SamProcessor) for pipeline integration. - Use Case: Build an annotation tool where a user clicks on an object in an image and instantly receives a high-quality segmentation mask with a predicted IoU score, ready to export as COCO RLE for training data generation. ## Quick Start Use the segment-anything-model skill to segment the object at point (500, 375) in my image and return the best mask with its quality score.