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
37
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/ip-sdxl-canny";
const data = {
"prompt": "woman sculpture",
"negative_prompt": "lowquality, badquality, sketches",
"samples": 1,
"scheduler": "Euler a",
"num_inference_steps": 25,
"guidance_scale": 7,
"seed": 354849415,
"controlnet_scale": 0.8,
"ip_adapter_scale": 0.5,
"strength": 0.9,
"base64": false,
"input_image": "toB64('https://segmind-sd-models.s3.amazonaws.com/outputs/canny_img_input.jpeg')",
"ip_image": "toB64('https://segmind-sd-models.s3.amazonaws.com/outputs/canny_ip_input.png')"
};
(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);
}
})();
Prompt to render
Prompts to exclude, eg. 'bad anatomy, bad hands, missing fingers'
Number of samples to generate.
min : 1,
max : 4
Type of scheduler.
Allowed values:
Number of denoising steps.
min : 20,
max : 100
Scale for classifier-free guidance
min : 1,
max : 25
Seed for image generation.
min : -1,
max : 999999999999999
Scale for classifier-free guidance
min : 0,
max : 1
Scale for classifier-free guidance
min : 0,
max : 1
Scale for classifier-free guidance
min : 0,
max : 1
Base64 encoding of the output image.
Input Image
Ip 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.
IP Adapter Canny XL represents a significant advancement in the field of AI-driven image transformation. Built on the SDXL framework, this model integrates the IP Adapter and Canny edge preprocessor to offer unparalleled control and guidance in creating context-rich images. It's an ideal solution for artists, designers, and anyone looking to combine the precision of text prompts with the creativity of image prompts.
The IP Adapter Canny XL model stands out with its unique ability to utilize both image and text prompts. The IP Adapter processes the image prompt, blending it with features from the text prompt to create a modified image. This image is further refined using preprocessors like Canny, which extracts outlines from the input image, retaining the composition of the original while infusing new elements.
Dual Prompt Integration : Seamlessly combines image and text prompts for intricate image transformations.
Canny Edge Preprocessor: Enhances image outlines, maintaining the original composition's integrity.
Context-Rich Outputs: Produces images that skillfully merge aspects of both the input and the image prompt.
Creative Versatility: Offers a wide range of possibilities for artistic and design projects.
Digital Art and Illustration: Create complex artworks that blend elements from different images and concepts.
Graphic Design: Enhance design projects with unique, context-rich visuals.
Photography Enhancement: Combine photographic elements with artistic prompts for unique compositions.
Educational Tools: Teach advanced concepts in digital art and image processing.
Personal Projects: Experiment with blending personal photos with creative text prompts for unique creations.