Skip to main content
Bria AI빠름높음

Remove Background

AI 기반 이미지 배경 제거 도구입니다. 전문적인 수준의 엣지 감지로 모든 피사체에 대해 깔끔하고 정확한 컷아웃을 제공합니다.

32 크레딧
이미지당
정밀한 엣지 감지
깔끔한 배경 제거
모든 피사체 유형에 적용 가능
빠른 처리 속도

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

llms.txt

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bria/remove-background",
  "input": {
    "image_url": "https://example.com/product-photo.jpg"
  }
}'

파라미터

파라미터타입필수기본값설명
image_urlstringYes-배경을 제거할 이미지 URL

파일 입력 방법

이 모델의 image_url 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=bria/remove-background" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:image_url=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "bria/remove-background",
  "input": {
    "prompt": "your prompt here",
    "image_url": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

제품 컷아웃

제품 사진에서 배경 제거

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "bria/remove-background",
  "input": {
    "image_url": "https://example.com/product-photo.jpg"
  }
}'

팁 & 모범 사례

1선명한 피사체와 잘 조명된 이미지에서 가장 잘 작동합니다
2더 깨끗한 엣지 감지를 위해 고해상도 이미지를 업로드하세요
3합성 전 전처리 단계로 활용하기 좋습니다
4이커머스 제품 카탈로그 배치 처리에 이상적

사용 사례

이커머스 제품 사진 편집
프로필 사진 배경 제거
디자인 에셋 준비
사진 합성 워크플로우