YOLO-World
YOLO-World 오픈 보캐블러리 객체 감지를 Serverless Cloud API를 통해 사용하세요.
코드 예시
2
모델 실행
curl --location 'https://serverless.roboflow.com/yolo_world/infer' \\
--header 'Content-Type: application/json' \\
--data '{
"api_key": "'"$ROBOFLOW_API_KEY"'",
"image": {"type": "url", "value": "https://media.roboflow.com/quickstart/traffic.jpg"},
"text": ["car", "truck"],
"yolo_world_version_id": "v2-s",
"confidence": 0.05
}'3
모델 실행
import os
import cv2
import supervision as sv
from inference_sdk import InferenceHTTPClient
image = sv.load_image_from_url("https://media.roboflow.com/quickstart/traffic.jpg")
client = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key=os.environ["ROBOFLOW_API_KEY"],
)
results = client.infer_from_yolo_world(
inference_input=image,
class_names=["car", "truck"],
model_version="v2-s",
confidence=0.05,
)
detections = sv.Detections.from_inference(results[0])
labels = [
f"{name} {conf:.2f}"
for name, conf in zip(detections.data["class_name"], detections.confidence)
]
annotated = sv.BoxAnnotator().annotate(image.copy(), detections)
annotated = sv.LabelAnnotator().annotate(annotated, detections, labels=labels)
cv2.imwrite("annotated.png", annotated)
추론 속도
모델
지연 시간(ms)
Inference(자가 호스팅)와 함께 사용
마지막 업데이트
도움이 되었나요?