1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const axios = require('axios');
const fs = require('fs');
const path = require('path');
async function toB64(imgPath) {
const data = fs.readFileSync(path.resolve(imgPath));
return Buffer.from(data).toString('base64');
}
const api_key = "YOUR API-KEY";
const url = "https://api.segmind.com/v1/seg-swap";
const data = {
"prompt": "photo of a wooden table in center of living room",
"main_image": "toB64('https://segmind-resources.s3.amazonaws.com/others/b855aade-9114-4554-9530-088f1eb1e32d-livingroom.png')",
"object_image": "toB64('https://segmind-resources.s3.amazonaws.com/others/69ceda90-7c13-48e2-a436-a4e0f733d136-table2.png')",
"mask_image": "toB64('https://segmind-resources.s3.amazonaws.com/others/b2c6b355-07be-4edc-b6ce-ec05fd6a03f2-mask_room2.png')",
"steps": 30,
"seed": 42,
"growmask": 5,
"horizontal_repeat": 1,
"vertical_repeat": 1,
"image_format": "png",
"image_quality": 95,
"base64": false
};
(async function() {
try {
const response = await axios.post(url, data, { headers: { 'x-api-key': api_key } });
console.log(response.data);
} catch (error) {
console.error('Error:', error.response.data);
}
})();
The main prompt describing the scene or subject
The URL of the main image
The URL of the overlay image
The URL of the main image mask
The number of steps for image processing
min : 10,
max : 100
Random seed for reproducibility
Grow mask parameter for adjusting mask size
min : 0,
max : 20
No of horizontal tiling of object (useful when object is a pattern)
min : 1,
max : 10
No of vertical tiling of object (useful when object is a pattern)
min : 1,
max : 10
The output image format
Allowed values:
The quality of the output image
min : 10,
max : 100
Return image as base64 string
To keep track of your credit usage, you can inspect the response headers of each API call. The x-remaining-credits property will indicate the number of remaining credits in your account. Ensure you monitor this value to avoid any disruptions in your API usage.
The Seg-Swap model from Segmind empowers users to dynamically alter images by removing, replacing, adding objects, and transferring patterns. This innovative image manipulation model is designed for content creators and businesses seeking advanced and intuitive image editing capabilities, offering a unique way to transform visual content.
Object Removal and Replacement: Seamlessly remove an existing object in an image and replace it with a new object, providing powerful editing flexibility.
Object Addition: Introduce new elements into an image, expanding creative possibilities and allowing for complex scene construction.
Pattern Transfer: Apply the visual pattern from one object onto another, such as transferring a textile pattern to a sofa, unlocking unique design options.
Mask-Based Control: Utilize a mask image to precisely define the area of the main image that will be affected by the object manipulation.
Adjustable Processing Steps: Control the level of detail and refinement in the image processing with a configurable number of steps.
Mask Size Adjustment: Fine-tune the mask size using the growmask parameter to ensure smooth integration of new or modified objects.
Pattern Tiling: Repeat the overlay object horizontally and vertically, ideal for applying repeating patterns across surfaces
E-commerce Product Visualization: Easily swap product variations (e.g., different colored chairs) in a lifestyle image without re-shooting, enhancing online catalogs.
Interior Design Mockups: Experiment with different furniture styles and patterns in a room scene by replacing existing items, aiding in design decisions.
Graphic Design and Content Creation: Quickly add or replace elements in marketing materials or social media visuals, streamlining the content creation process.
Fashion and Textile Design: Visualize fabric patterns on different garment silhouettes or transfer patterns between items, accelerating the design workflow
The Seg-Swap model offers a powerful and versatile solution for advanced image manipulation, enabling users to effortlessly remove, replace, add objects, and transfer patterns. Its intuitive parameters and diverse applications make it an invaluable tool for enhancing creative workflows and achieving unique visual transformation.