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
38
39
40
41
42
43
44
45
const axios = require('axios');
const FormData = require('form-data');
const api_key = "YOUR API-KEY";
const url = "https://api.segmind.com/v1/flux-canny-dev";
const reqBody = {
"seed": 632558,
"prompt": "Mystical fairy in real, magic, 4k picture, high quality",
"guidance": 30,
"megapixels": 1,
"num_outputs": 1,
"control_image": "https://segmind-sd-models.s3.us-east-1.amazonaws.com/display_images/flux-tools/flux-canny-dev-ip.jpg",
"output_format": "jpg",
"output_quality": 80,
"num_inference_steps": 28,
"disable_safety_checker": false
};
(async function() {
try {
const formData = new FormData();
// Append regular fields
for (const key in reqBody) {
if (reqBody.hasOwnProperty(key)) {
formData.append(key, reqBody[key]);
}
}
// Convert and append images as Base64 if necessary
const response = await axios.post(url, formData, {
headers: {
'x-api-key': api_key,
...formData.getHeaders()
}
});
console.log(response.data);
} catch (error) {
console.error('Error:', error.response ? error.response.data : error.message);
}
})();
Random seed. Set for reproducible generation
Prompt for generated image
Guidance for generated image
min : 0,
max : 100
Approximate number of megapixels for generated image. Use match_input to match the size of the input (with an upper limit of 1440x1440 pixels)
Allowed values:
Number of outputs to generate
min : 1,
max : 4
Image used to control the generation. The canny edge detection will be automatically generated.
Format of the output images
Allowed values:
Quality when saving the output images, from 0 to 100. 100 is best quality, 0 is lowest quality. Not relevant for .png outputs
min : 0,
max : 100
Number of denoising steps. Recommended range is 28-50, and lower number of steps produce lower quality outputs, faster.
min : 1,
max : 50
Disable safety checker for generated images.
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.
Flux Canny Dev is an advanced AI model developed by Black Forest Labs, designed to enhance image generation by integrating edge detection techniques. This model leverages the Canny edge detection algorithm to identify and emphasize the structural outlines within images, resulting in outputs with enhanced clarity and definition.
Edge Detection Integration: Utilizes the Canny algorithm to detect edges, ensuring that generated images maintain sharp and well-defined structures.
Enhanced Image Clarity: By focusing on prominent edges, the model produces images with improved clarity and detail, making them more visually appealing.
Versatile Application: Suitable for various creative projects, including digital art, graphic design, and content creation, where precise image details are crucial.
Improved Visual Quality: The integration of edge detection leads to images with better-defined features, enhancing the overall visual quality.
Consistency in Output: Ensures that generated images consistently exhibit clear and sharp edges, maintaining a high standard across different projects.
Efficiency in Workflow: Streamlines the image generation process by automatically emphasizing structural details, reducing the need for manual adjustments.
Digital Art Creation: Assists artists in producing detailed and sharp images, enhancing the artistic quality of digital artworks.
Graphic Design: Enables designers to create visuals with clear outlines, improving the effectiveness of design elements.
Content Generation: Facilitates the creation of high-quality images for various content needs, including marketing materials and social media posts.
By incorporating the Canny edge detection algorithm, Flux Canny Dev offers a powerful tool for professionals seeking to generate images with enhanced structural clarity and detail.