segmentation / README.md
Alex
revert to fiel
779723a
|
raw
history blame
899 Bytes
metadata
title: Segmentation
emoji: πŸ“‰
colorFrom: indigo
colorTo: red
sdk: gradio
sdk_version: 5.19.0
app_file: app.py
pinned: false

Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference

curl -X POST "https://alexgenovese-segmentation.hf.space/segment"
-F "data=[{"type": "image", "value": null}]"
-F "data=@woman_with_bag.jpeg"
-H "Content-Type: multipart/form-data"
-o response.json

curl -X POST "https://alexgenovese-segmentation.hf.space/segment"
-H "accept: application/json"
-H "Content-Type: multipart/form-data"
-F "file=@woman_with_bag.jpeg"

curl -X POST -F "file=@woman_with_bag.jpeg" https://alexgenovese-segmentation.hf.space/api/segment

curl -X POST https://alexgenovese-segmentation.hf.space/segment
-H "Content-Type: application/json"
-d "{"image_base64": "$(base64 woman_with_bag.jpeg)"}"