Outline & Motivation
from PIL import Image
from lang_sam import LangSAM
model = LangSAM()
image_pil = Image.open("./assets/car.jpeg").convert("RGB")
text_prompt = "all wheel."
results = model.predict([image_pil], [text_prompt]) Hello, I used this code and it indicated that all wheels were processed, but in the end only one mask was output—why is that?
Pitch
No response
Additional context
No response
Outline & Motivation
from PIL import Image
from lang_sam import LangSAM
model = LangSAM()
image_pil = Image.open("./assets/car.jpeg").convert("RGB")
text_prompt = "all wheel."
results = model.predict([image_pil], [text_prompt]) Hello, I used this code and it indicated that all wheels were processed, but in the end only one mask was output—why is that?
Pitch
No response
Additional context
No response