POST/v1/ip-sdxl-canny
1const axios = require('axios');
2
3const fs = require('fs');
4const path = require('path');
5
6async function toB64(imgPath) {
7    const data = fs.readFileSync(path.resolve(imgPath));
8    return Buffer.from(data).toString('base64');
9}
10
11const api_key = "YOUR API-KEY";
12const url = "https://api.segmind.com/v1/ip-sdxl-canny";
13
14const data = {
15  "prompt": "woman sculpture",
16  "negative_prompt": "lowquality, badquality, sketches",
17  "samples": 1,
18  "scheduler": "Euler a",
19  "num_inference_steps": 25,
20  "guidance_scale": 7,
21  "seed": 354849415,
22  "controlnet_scale": 0.8,
23  "ip_adapter_scale": 0.5,
24  "strength": 0.9,
25  "base64": false,
26  "input_image": "toB64('https://segmind-sd-models.s3.amazonaws.com/outputs/canny_img_input.jpeg')",
27  "ip_image": "toB64('https://segmind-sd-models.s3.amazonaws.com/outputs/canny_ip_input.png')"
28};
29
30(async function() {
31    try {
32        const response = await axios.post(url, data, { headers: { 'x-api-key': api_key } });
33        console.log(response.data);
34    } catch (error) {
35        console.error('Error:', error.response.data);
36    }
37})();
RESPONSE
image/jpeg
HTTP Response Codes
200 - OKImage Generated
401 - UnauthorizedUser authentication failed
404 - Not FoundThe requested URL does not exist
405 - Method Not AllowedThe requested HTTP method is not allowed
406 - Not AcceptableNot enough credits
500 - Server ErrorServer had some issue with processing
Expand

Attributes


promptstr *

Prompt to render


negative_promptstr ( default: None )

Prompts to exclude, eg. 'bad anatomy, bad hands, missing fingers'


samplesint ( default: 1 ) Affects Pricing

Number of samples to generate.

min : 1,

min : 4


schedulerenum:str ( default: DPM2 Karras )

Type of scheduler.

Allowed values:


num_inference_stepsint ( default: 25 ) Affects Pricing

Number of denoising steps.

min : 20,

min : 100


guidance_scalefloat ( default: 7.5 )

Scale for classifier-free guidance

min : 1,

min : 25


seedint ( default: -1 )

Seed for image generation.

min : -1,

min : 999999999999999


controlnet_scalefloat ( default: 7.5 )

Scale for classifier-free guidance

min : 0,

min : 1


ip_adapter_scalefloat ( default: 7.5 )

Scale for classifier-free guidance

min : 0,

min : 1


strengthfloat ( default: 0.99 )

Scale for classifier-free guidance

min : 0,

min : 1


base64boolean ( default: 1 )

Base64 encoding of the output image.


input_imageimage *

Input Image


ip_imageimage *

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 XL Canny 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 XL Canny 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.

Key Features:

  1. Dual Prompt Integration : Seamlessly combines image and text prompts for intricate image transformations.

  2. Canny Edge Preprocessor: Enhances image outlines, maintaining the original composition's integrity.

  3. Context-Rich Outputs: Produces images that skillfully merge aspects of both the input and the image prompt.

  4. Creative Versatility: Offers a wide range of possibilities for artistic and design projects.

Applications:

  1. Digital Art and Illustration: Create complex artworks that blend elements from different images and concepts.

  2. Graphic Design: Enhance design projects with unique, context-rich visuals.

  3. Photography Enhancement: Combine photographic elements with artistic prompts for unique compositions.

  4. Educational Tools: Teach advanced concepts in digital art and image processing.

  5. Personal Projects: Experiment with blending personal photos with creative text prompts for unique creations.