Object
Learn how to control the positioning of your product images.
Product image
AI Background API supports several options to provide source images that need to be processed.
You have to upload only images without background, so you can use Claid API Background Removal.
If you choose to upload an image with a background, the scene will be created around the entire image.
HTTP(S) URL
URL of the input image should be from 1 to 4096 characters. The image must be accessible by our system.
Connected storage
You can connect Cloud Storage and use it as a source for images. Currently, our API supports AWS S3 and Google Cloud Storage.
After connecting your Cloud Storage, you can refer the storage name as an input.
Input image file types
The API supports the following image formats as inputs: BMP, GIF, JPEG, PNG, TIFF, WEBP, AVIF, and HEIC.
JPEG does not support background transparency, so you will probably want to select another image format.
Placement
There are several placement types that can be used to position an object in a scene. Some of them allow additional parameters for a more accurate positioning.
Placement type | Description |
---|---|
| Absolute placement type allows to manually define a product position based on dependent parameters such as |
| Original placement type keeps the product's position on the generated images the same as it was on the input images. |
Absolute placement
Absolute placement is a method to manually tune an object position using one or multiple dependent fields: Position, Scale, and Rotation degree. It is used by default so that placement_type
field can be omitted or specified explicitly.
Rotation degree
You can do 360-degree rotation of the object by specifying the rotation_degree
option.
The object will rotate in a clockwise direction from 0
to 360
degrees.
Scale
You can change the size of the object in relation to the background by specifying the scale
option.
By default, the object is scaled to the edges of the generated background, which is equivalent to setting scale
to 1.0
.
If you wish, the object can be scaled down to 10% of the total width and height of the generated background, which is equivalent to setting scale
to 0.1
.
Position
You can move the object around the image by specifying relative object position with position
option.
By default, the object is positioned at the center of the image, which corresponds to {"x":0.5, "y":0.5}
.
Positioning is not an intuitive concept, so below is a reference table for positioning the object:
left top corner:
| top edge:
| right top corner:
|
left edge:
| center:
| right edge:
|
left bottom corner:
| bottom edge:
| right bottom corner:
|
Possible values
Parameter | Type | Range | Default value |
---|---|---|---|
| str | 1 - 4096 | is required |
| float | 0.0 - 360.0 | 0.0 |
| float | 0.0 - 1.0 | 1.0 |
| float | 0.0 - 1.0 | 0.5 |
| float | 0.0 - 1.0 | 0.5 |
Original placement
Original placement is a choice when a product on the original image with a transparent background is already has a desired position. Meaning, background will be generated, while the product will remain in the same place as it was on the original image.
This placement type doesn't require any additional fields.
Last updated