-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
With the original segment anything all I have to do to segment a single image is downloading the checkpoint and running
from segment_anything import SamPredictor, sam_model_registry
sam = sam_model_registry["<model_type>"](checkpoint="<path/to/checkpoint>")
predictor = SamPredictor(sam)
predictor.set_image(<your_image>)
masks, _, _ = predictor.predict(<input_prompts>)How can I do something similar in FastSAM3D? I downloaded the FastSAM3D checkpoint and have a 3D image with prompts ready. How do use FastSAM3D to segment my image using my prompts?
Metadata
Metadata
Assignees
Labels
No labels