SAM3

Serverless Hosted API를 통해 Meta의 SAM3 모델을 사용하세요

우리는 Meta의 Segment Anything Model 3arrow-up-right 추론을 Serverless Hosted API를 통해 지원합니다. 두 가지 다른 SAM3 엔드포인트를 제공합니다:

  • Promptable 개념 분할 (PCS), 분할은 텍스트 프롬프트를 사용합니다

  • [작업 진행 중] Promptable 시각적 분할 (PVS), 포인트/박스를 사용한 대화형 분할 포인트/박스

코드 샘플

아래는 SAM3 추론에 PCS 엔드포인트를 사용하는 코드 샘플입니다. 사용자는 Roboflow의 API 키arrow-up-rightAPI_KEY 환경 변수로 전달해야 합니다.

import os
import requests
import base64
import cv2
import numpy as np

# 출처 "https://media.roboflow.com/notebooks/examples/dog.jpeg"
image = cv2.imread("./dog.jpeg")

# 이미지를 base64로 인코딩
_, buffer = cv2.imencode('.jpg', image)
image_base64 = base64.b64encode(buffer).decode('utf-8')

payload = {
    "image": { "type": "base64", "value": image_base64 },
    "prompts": [
        { "type": "text", "text": "person" },
        { "type": "text", "text": "dog" },
    ],
    "output_prob_thresh": 0.5,
    "format": "polygon",
}

url = "https://serverless.roboflow.com/sam3/concept_segment?api_key=" + os.getenv("API_KEY")
response = requests.post(url, json=payload)
data = response.json()

for key in data:
    print(key) # prompt_results와 time이어야 합니다

엔드포인트

SAM3 PCS (promptable concept segmentation)

post

Concept Segmentation (Text Prompts)

Allows you to segment objects using text prompts.

Image Input: The image field accepts either:

  • {"type": "url", "value": "<IMAGE_URL>"} - A publicly accessible image URL

  • {"type": "base64", "value": "<BASE64_DATA>"} - Base64 encoded image data

Prompts: Each prompt in the prompts array should have type: "text" and a text field with the object description.

Query parameters
api_keystringRequired

Your Roboflow API Key. Get one at https://app.roboflow.com/settings/api

Body
formatstringOptional

One of 'polygon', 'rle'

Default: polygon
image_idstringOptional

Optional ID for caching embeddings.

output_prob_threshnumberOptional

Score threshold for outputs.

Default: 0.5
model_idstringOptional

The model ID of SAM3. Use 'sam3/sam3_final' to target the generic base model.

Default: sam3/sam3_final
nms_iou_thresholdnumberOptional

IoU threshold for cross-prompt NMS. If not set, NMS is disabled. Must be in [0.0, 1.0] when set.

Responses
chevron-right
200

Successful Response

application/json
post
/sam3/concept_segment

Last updated

Was this helpful?