AI Art Refinement: How Denoise Transforms Your Images


- Denoise controls the strength of redrawing.
- Denoise adds noise.
- Denise levels significantly affects the outcome.
Introduction
Hello, this is Easygoing.
Today, we’ll take a look at image-to-image, a process for refining illustrations.

Text-to-Image vs. Image-to-Image
Image generation can be broadly divided into two types:
- Text-to-Image: Generating illustrations from text prompts.
- Image-to-Image: Generating illustrations from existing images.
Text-to-image involves inputting a description (prompt) to create an illustration.

In contrast, image-to-image involves inputting an image to refine an illustration, allowing various applications such as minor adjustments or significant redraws by tweaking the denoise strength.
Workflow Introduction!
This time, we’ll use a workflow combining both text-to-image and image-to-image.
In this workflow, we’ll create the base illustration with the versatile SDXL model and refine it with the high-texture Flux.1 model.
flowchart LR
subgraph SDXL
A1(Base Illustration<br>1024 x 1024)
end
B1(HDR Processing<br>SuperBreasts)
C1(upscale x1.4<br>Lanczos)
subgraph Flux.1
D1(Refined Illustration<br>1448 x 1448)
end
A1-->B1
B1-->C1
C1-->D1

Models Used
- anima_pencil-XL-v5.0.0
- flux1-dev
- FLUX1-schnell-AE-FP32
- flan-t5-xxl_TE-only_FP32
- CLIP-SAE-ViT-L-14 -FP32
Lightweight Versions
Actual Illustrations
Let’s take a look at the actual illustrations.
SDXL (Base Illustration)

SDXL can produce clean anime illustrations with diverse compositions. However, compared to newer models, its noise removal efficiency is lower, resulting in slightly inferior texture and some residual noise in the final illustration.
Flux.1 (Refined Illustration)

Using Flux.1 for image-to-image processing on the SDXL base illustration, we achieved a higher overall texture quality and a clear illustration with minimal noise.
Denoise Adds Noise!
In image-to-image, the denoise parameter determines the strength of redrawing the image. While "denoise" translates to "noise removal" in Japanese, it actually controls the strength of adding noise.
Setting denoise to 0.5 means redrawing half of the illustration, but what exactly does this process entail?
Text-to-Image Case
In text-to-image, since the illustration is created from scratch, denoise is set to 1.0. With a karras scheduler and 10 steps, noise is reduced as follows:
The noise drops sharply at first and then gradually decreases in the later stages.
Image-to-Image Case
Now, let’s look at image-to-image with denoise set to 0.5. The result is shown in color, aligned to the right side of the previous graph.
The graph for denoise 0.5 resembles the latter half of the denoise 1.0 graph. Rather than uniformly reducing noise levels, denoise uses the latter part of the noise distribution.
Scheduler Differences Matter!
In the previous article, we compared scheduler differences with denoise set to 1.0:
Denoise 1.0, 10 Steps
Step | Simple | Normal | Exponential | Karras | Beta | Beta57 |
---|---|---|---|---|---|---|
1 | 14.6146 | 14.6146 | 14.6146 | 14.6146 | 14.6146 | 14.6146 |
2 | 7.8399 | 7.3020 | 6.7189 | 8.5600 | 11.0910 | 8.5700 |
3 | 4.6092 | 4.0861 | 3.0890 | 4.7965 | 6.6031 | 4.2422 |
4 | 2.9183 | 2.4960 | 1.4201 | 2.5508 | 3.6758 | 2.2522 |
5 | 1.9502 | 1.6156 | 0.6529 | 1.2741 | 2.0981 | 1.3101 |
6 | 1.3449 | 1.0712 | 0.3002 | 0.5895 | 1.2555 | 0.8041 |
7 | 0.9324 | 0.6951 | 0.1380 | 0.2479 | 0.7624 | 0.4970 |
8 | 0.6250 | 0.3997 | 0.0634 | 0.0923 | 0.4448 | 0.2889 |
9 | 0.3687 | 0.0292 | 0.0292 | 0.0292 | 0.2178 | 0.1345 |
10 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
With denoise at 1.0, all schedulers start from the same maximum noise level.
Denoise 0.5, 5 Steps
In contrast, with denoise set to 0.5, the initial noise amount varies significantly depending on the scheduler.
Step | Simple | Normal | Exponential | Karras | Beta | Beta57 |
---|---|---|---|---|---|---|
1 | 2.0617 | 1.6156 | 0.6529 | 1.2741 | 2.2683 | 1.4082 |
2 | 1.2762 | 0.9324 | 0.2317 | 0.4469 | 1.1682 | 0.7515 |
3 | 0.7901 | 0.4936 | 0.0822 | 0.1303 | 0.6127 | 0.4000 |
4 | 0.4381 | 0.0292 | 0.0292 | 0.0292 | 0.2772 | 0.1763 |
5 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | 0.0000 | 0.0000 |
Changes in noise levels affect the strength of redrawing the illustration. In image-to-image, the scheduler differences have a much stronger impact compared to text-to-image.
Which Scheduler to Use?
So, which scheduler should you use for image-to-image?
In the previous article, we recommended two schedulers for text-to-image:
- Fast generation with SD1.5/SDXL → Karras
- Enhancing details with next-gen models → Beta
The same logic applies to image-to-image. For fast and stable generation, use the karras scheduler; for significant redrawing with next-gen models, use the beta scheduler.
Image-to-image is heavily influenced by scheduler differences, and model compatibility, so it’s also worth experimenting with different denoise and scheduler combinations to find the optimal setup as you gain experience.
Summary: Denoise Adds Noise!
- Denoise controls the strength of redrawing.
- Denoise adds noise.
- Denise levels significantly affects the outcome.
Image generation AI relies on illustrations from noise. Since its inception, many excellent methods have been developed to control noise.

Schedulers and denoise settings may seem complex, but understanding how they affect the outcome makes adjustments easier. The changes in illustrations when settings align perfectly are fascinating, and I look forward to exploring the best configurations while enjoying image generation.
Thank you for reading!