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
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/sd1.5-controlnet-depth";
const data = {
"image": "toB64('https://segmind.com/depth.jpeg')",
"samples": 1,
"prompt": "young african american man, black suit, smiling, white background",
"negative_prompt": "mangled ears, Disfigured, cartoon, blurry, nude",
"scheduler": "UniPC",
"num_inference_steps": 25,
"guidance_scale": 7.5,
"strength": 1,
"seed": 9715432854,
"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);
}
})();
Input Image
Number of samples to generate.
min : 1,
max : 4
Prompt to render
Prompts to exclude, eg. 'bad anatomy, bad hands, missing fingers'
Type of scheduler.
Allowed values:
Number of denoising steps.
min : 20,
max : 100
Scale for classifier-free guidance
min : 0.1,
max : 25
How much to transform the reference image
min : 0.1,
max : 1
Seed for image generation.
Base64 encoding of the output image.
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.
ControlNet Depth is a neural network that can be used to control the output of Stable Diffusion models with depth information. This allows you to specify specific features that you want to include in the output image, such as the overall structure of the image, the pose of the subject, or the style of the image, as well as the depth information.
To use ControlNet Depth, you can follow these steps:
Go to the Segmind website: https://www.segmind.com/ and sign up for a free account.
Click on the "Models" tab and select "ControlNet Depth".
Click on the "Try it out" button and upload an image that you want to control.
Click on the "Generate" button to generate the controlled image.
ControlNet Depth is a powerful tool that can be used for various purposes. It is still under development, but it has the potential to revolutionize the way we interact with images. Reach out to us to learn more about how we can help you with customized solutions, large-scale cost-effective deployment, and other use cases.
Creating images with specific features: ControlNet Depth can be used to create images with specific features, such as a particular pose, a specific style, or a specific object, as well as depth information. This can be useful for creating images for creative projects or for research purposes.
Improving the quality of images: ControlNet Depth can be used to improve the quality of images by removing noise or by adding detail. This can be useful for restoring damaged images or creating more realistic ones.
Controlling the output of Stable Diffusion models with depth information: ControlNet Depth can be used to control the output of Stable Diffusion models to include specific features, as well as depth information. This can be useful for creating images with a particular style or for creating images consistent with a particular dataset.