POST/v1/ip-sdxl-openpose
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-openpose";
13
14const data = {
15  "prompt": "ballerina",
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.5,
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/sdxl_input_openpose.jpg')",
27  "ip_image": "toB64('https://segmind-sd-models.s3.amazonaws.com/outputs/pose_ip_input.jpeg')"
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 Openpose is an innovative AI model that redefines the capabilities of the SDXL framework, especially in the realm of human pose and gesture analysis. This model is a fusion of the IP Adapter and the Openpose Preprocessor, designed to create images that are not only visually rich but also contextually detailed, particularly in scenarios involving human subjects.

At the heart of IP Adapter XL Openpose is the integration of two advanced components. The IP Adapter empowers the SDXL model to effectively combine image and text prompts, while the Openpose Preprocessor excels in analyzing and identifying human poses and gestures. This combination ensures accurate interpretation and representation of human figures and their movements in the generated images.

Key Features:

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

  2. Human Pose Analysis:Utilizes the Openpose Preprocessor for precise interpretation of human poses and gestures.

  3. Accurate Human Figure Interpretation:: Ensures faithful representation of human subjects and their movements.

  4. Creative Versatility: Ideal for a wide range of applications, from digital art to scientific visualization.

Applications:

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

  2. Animation and Film Production: Enhance character design and animation with precise human figure interpretation.

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

  4. Fashion and Design: Visualize fashion designs and concepts with accurately posed human figures.

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