Images, Annotations and Augmentation
Images and Annotations data fetching and modifications endpoints
Create Image Object
Create Image
POST
https://api.autogon.ai/api/v1/label/image/
Request Body
images*
array
List of Image URLs
project_id*
int
Project ID
Get Images
Perform quick and fully-managed model inference
GET
https://api.autogon.ai/api/v1/label/image
Path Parameters
project_id*
int
Project ID
Delete Images
Delete images using IDs
DELETE
https://api.autogon.ai/api/v1/label/image/
Request Body
images
array
Array of image IDs
project_id*
int
Project ID
Annotate Images
Sample Request
Modifiy Image Annotations
POST
https://api.autogon.ai/api/v1/label/image/annotate
Request Body
project_id*
int
Project ID
images*
array
List of image data for each specific image including annotations
Image Augmentation
Augment all
POST
https://api.autogon.ai/api/v1/label/image/augment/
Augment all image-annotation pairs in a project
Request Body
project_id*
int
Project ID
augmentations
array
List of augmentations to apply.
Default: ["all"]
Equivalent to: ["HorizontalFlip", "VerticalFlip", "Crop", "HueSaturation", "BrightnessContrast", "Blur"]
multiplier
int
Number of augmented images to generate per image
Default: 3
Last updated