Тёмный

Noise Threshold is BURNING Your PC in Blender 

CG Torus
Подписаться 2,2 тыс.
Просмотров 19 тыс.
50% 1

This video dives deep into optimizing Blender's noise threshold and adaptive sampling settings. Learn how to balance render time and quality by understanding key parameters like noise threshold, maximum, and minimum samples. Whether you're using a top-tier graphics card like a 4090 or working with limited resources, these tips will help you streamline your workflow. Don't forget to subscribe for more Blender optimization tips!
Videos used in this video to explain concepts and their creators (subscribe to their channels 👀):
‪@DerekElliott‬ : • Brighter Shadow Causti...
‪@cgvertex‬ : • Blender cycles continu...
‪@asokerov‬ : • masking the reflection...
‪@laviestudio‬ : • Screen Space Global Il...
‪@Olav3D‬ : • [2.93] Blender Tutoria...
‪@lanewallace.‬ : • The Best Volumetric Fo...
#blender #3d

Развлечения

Опубликовано:

 

28 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 35   
@aliosanlou4425
@aliosanlou4425 3 месяца назад
Based on my underestandings , noise threshold is the aspect ration between Signal and noise , for example a value of ( 1 ) noise threshold means the aspect ration between signal and noise would be 50% , 50% , so if u decrease the noise threshold , you will increase the aspect ration of the signal compared to the noise , so u get higher quality image
@Lucas72928
@Lucas72928 3 месяца назад
The noise threshold is the maximum variance accepted for each pixel, it's not a ratio
@aliosanlou4425
@aliosanlou4425 3 месяца назад
@Lucas72928 i dont quite underestand what you mean That is stil aspect ratio aint it?
@Lucas72928
@Lucas72928 3 месяца назад
@@aliosanlou4425 aspect ratio is a measure of how stretched a rectangle is. "Ratio" is just a division. The variance is related to probability and it's not a division
@TiagoMeraki
@TiagoMeraki 3 месяца назад
adaptive sampling (aka noise threshold in blender) stores half the samples in a separate buffer (a separate image if you will), meaning there's now two versions of your render in memory: one with all the samples (cleanest version) and one with only half the samples (noisier). the pixels of the two images are compared, and when the difference is lower than the value you set in the "noise threshold", that pixel stops being sampled
@slimeball3209
@slimeball3209 3 месяца назад
​​​​​@@Lucas72928 it is a ratio, if noise is 1500 and noise treshold is 100, you doing 100/1500 to decide how many samples you should reduce in this chunk of image. in this example this is 0.06 aka 6% of samples. if it is 100/100 then you have 1, that means 100% so render in this region is ended. it is really bad for caustic, it creating lumps of caustic pixels because caustic noise is spatially bigger than other noise types.
@petebateman143
@petebateman143 3 месяца назад
They even renamesd Samples to Max Samples to make it clear it's not the same setting as pre 3.0 Cycles. And yet the "reduce samples" mantra has not changed on Reddit, it's the ancient "wisdom" that just won't die.
@ettiSurreal
@ettiSurreal 3 месяца назад
when using denoise oftentimes you'd want to disable adaptive sampling outright, as non uniform samples will confuse the denoiser and make it effectively hallucinate detail and create strange artifacts
@theftking
@theftking 3 месяца назад
This 100%. Usually in darker scenes with out of focus details. Usually you can resolve this by adding a minimum sample count though, so it samples uniformly at the start, the adaptive cleans up noise.
@darko.v
@darko.v 3 месяца назад
Had this happen on a cloth/fluid sim
@DGscene
@DGscene 3 месяца назад
it also frequently throw up volume scenes
@Jonathan-ep9wb
@Jonathan-ep9wb 10 дней назад
For me setting min samples to something like 128 fixed it...
@Undy1
@Undy1 3 месяца назад
Through a lot of testing I found that noise threshold very often produces inferior results than just an equivalent render time without it - and that's especially true in scenes that are inherently very noisy across the entire image (like volumetric heavy scenes). That being said noise threshold is incredibly useful if there are parts of the scene that require a lot of samples and other parts that require barely any at all (for example a sky, hdri or just transparency). It's possible that this is because I never touched the minimum sample value and perhaps Blender is setting it too high as you said in the video - knowing that information now I will be trying to set the minimum samples manually to something very low like 32 and see if that helps. Still it's weird when I have a scene with a noise threshold set to some value and then the renderer proceeds to leave some areas pretty noisy and then spends more time on areas that are already clean. It feels like it's working pretty much backwards, but again, that might just be me.
@GANONdork123
@GANONdork123 3 месяца назад
It probably has to do with how Blender detects noise in the image. I remember seeing a paper on adaptive sampling and from what I gathered, it uses a special pass for detecting noise rather than analyzing the final combined render. This pass doesn't take into account variables in your scene that increase noise like small light sources or subsurface scattering. I can tell for a fact that SSS noise isn't being taken into account because it's consistently always noisier than almost everything else.
@kelajuan_
@kelajuan_ 3 месяца назад
What a coincidence, just two days ago I watched your sampling video and was waiting for the promised noise threshold. Thank you!
@therealKrak
@therealKrak 3 месяца назад
I don't recommend using denoise for animations, especially when using volumes in scenes as clouds or mist.
@oyora
@oyora 3 месяца назад
04:30 I could be wrong but I think if the min_samples is set to zero this is how it is setting the min_samples: const int min_samples = (int)ceilf(16.0f / powf(adaptive_sampling.threshold, 0.3f)); adaptive_sampling.min_samples = max(4, min_samples); so unless you set the threshold to zero the min sample number shouldn't change based on the max sample count. but then the adaptive_sampling itself is doing some quirky bitwise operations (that I don't want to think about now 😊). at first glance I assume that probably changes the stopping conditions so that it will process more samples which from the user's pov feels like a higher min_samples. -idk xD
@MateoTeos
@MateoTeos 3 месяца назад
Showing denoise difference with RU-vid's quality is not a great idea, mate.
@phillhart2990
@phillhart2990 3 месяца назад
This is a really well thought out and informed vid. May you have many many views! Thanks for sharing and taking the time to put this together so well. Your efforts to make it understandable have truly paid off, I can promise you.
@The_Orgin
@The_Orgin 3 месяца назад
0:28 You should have said holy grain
@XirRalph
@XirRalph 3 месяца назад
I am a little less confused now. Thank you
@MartKart8
@MartKart8 3 месяца назад
I rarely use Cycles as I've noticed quite a few creators, keep recommending cycles, like Pixxo 3D, his videos are great, his graphics card is always compatible and he always when making textures goes with the highest possible textures he can do, with the latest versions of Blender , just Cycles doesn't work to well with me. Ryan King is a good one, as he will use both Eevee and Cycles, and shows different ways to get textures to work in a similar way to Cycles, and ways to make sure your computer doesn't struggle with rendering.
@-fat
@-fat 3 месяца назад
That’s not a Boeing 747! 😡
@punmije
@punmije 2 месяца назад
I don't like using denoiser, it is killing fine details, smoothing image and also creating flicker in animation. Always better to render more samples then denoise low sample render.
@arcatheone
@arcatheone 3 месяца назад
me watching this in a high end laptop (I dont need it)
@galvinvoltag
@galvinvoltag 3 месяца назад
I just render in the lowest sample rate with "good enough" noise, apply denoiser and use a scene grease pencil to keep the sharpness. I am just lazy so I use render artifacts as my style. It made my job a hundred times easier that I may return to RU-vid at some point idk.
@albyt3403
@albyt3403 3 месяца назад
I really wanted to subscribe, the editing and content is really good but this god awful ai voice is unbearable.
@DarkHarpuia
@DarkHarpuia 3 месяца назад
I find it super helpful to increase the minimum number of samples particularly in scenes that have an overall darker color scheme, and lots of shadow. I had an indoor scene where my max samples were only about 128 (for animation), but because the minimum samples were set to 0, Blender kept undersampling the darkest areas, leading to some really weird denoising. You can set your noise threshold actually fairly high if you up the minimum samples, because then even darkened areas still get enough samples that the denoiser doesn't have to guess too much on them, leading to a smoother color gradient, instead of weirdly mushy shadow interiors.
@vrstate
@vrstate 3 месяца назад
But one problem thou, i personally usue sample limit at just 128, and if it gets blurry due to denoise i tend to just render the scene at a higher resolution like 4k or even 8k, it tends to clean just as good as havingn the base 4069 base sample count that blender uses but is way faster
@jellybeanz3405
@jellybeanz3405 3 месяца назад
Ooh that’s a really good idea 😮
@DisgruntledPigumon
@DisgruntledPigumon 3 месяца назад
3:20 time is the same
@aashinsiby2484
@aashinsiby2484 3 месяца назад
thank u boss
@samk2407
@samk2407 3 месяца назад
So does this mean it's now better to render each frame as a whole frame. Because back in the day you were supposed to break it up into smaller chnunks. But it seems like adaptive sampling would be less effective with that technique
@lavatr8322
@lavatr8322 3 месяца назад
I need to Try and Error until i see what works best for a particular project
@serioussaad
@serioussaad 3 месяца назад
Very helpful information thank you !!!
Далее
5 Blender Tips That Have Saved Me 100+ Hours
9:51
Просмотров 371 тыс.
How to Render Faster In Blender Cycles
9:11
Просмотров 48 тыс.
titan tvman's plan (skibidi toilet 77)
01:00
Просмотров 5 млн
The Key to Realism in Blender (or 3D)
14:34
Просмотров 46 тыс.
Product Texturing in Blender - The Ultimate Guide
9:21
How Ian Hubert Hacked VFX (and you can too!)
22:26
Просмотров 228 тыс.
Optimize interior Renderings in Blender Cycles
11:02
Просмотров 178 тыс.
Why Do Video Game Studios Avoid Blender?
6:49
Просмотров 593 тыс.
Why I never render PNG
6:40
Просмотров 78 тыс.
🍁 Просто друг
0:24
Просмотров 2,1 млн