YOLOv7
हमारे Serverless Hosted API के माध्यम से YOLOv7 instance segmentation का उपयोग करें
कोड नमूना
3
मॉडल चलाएँ
import os
import cv2
import numpy as np
import requests
import supervision as sv
from inference_sdk import InferenceHTTPClient
content = requests.get("https://media.roboflow.com/docs/concrete-crack.jpg").content
image = cv2.imdecode(np.frombuffer(content, np.uint8), cv2.IMREAD_COLOR)
client = InferenceHTTPClient(
api_url="https://serverless.roboflow.com",
api_key=os.environ["ROBOFLOW_API_KEY"],
)
results = client.infer(image, model_id="concrete-pugqq/3")
detections = sv.Detections.from_inference(results)
annotated = sv.MaskAnnotator().annotate(image.copy(), detections)
cv2.imwrite("annotated.png", annotated)
अंतिम अपडेट
क्या यह उपयोगी था?