foodDetectionDemo / detector.py
cheng
update dependency
2a11855
raw
history blame
223 Bytes
from clip_component import get_token_from_clip
from grounding_component import run_grounding
def detect(image):
token = get_token_from_clip(image)
predict_image = run_grounding(image,token)
return predict_image