Page 12 of 17

Re: DGDenoise

Posted: Tue Apr 18, 2017 1:57 pm
by admin
Oy, that last slipstream was brain-dead. :oops:

OK, I fixed the DGDenoise problem. Now I have one little issue in DGTelecide. Fixes coming soon...

Thanks for pointing this out, gonca.

Re: DGDenoise

Posted: Tue Apr 18, 2017 2:47 pm
by Guest
Thanks for creating the filters

Re: DGDenoise

Posted: Tue Apr 18, 2017 3:07 pm
by admin
Thanks. Of course, it would be better if they worked properly. ;)

I just slipstreamed the fix. Heading over to the binaries thread to announce it.

Re: DGDenoise

Posted: Tue Apr 18, 2017 3:09 pm
by admin
This works pretty good on your sample, gonca:

dgsource("sample.dgi")
dgdenoise(strength=2.0,searchw=9,chroma=true)
dgsharpen()

That's industrial strength. Reduce strength and/or searchw, or turn off chroma, if you like.

Re: DGDenoise

Posted: Tue Apr 18, 2017 3:27 pm
by Guest
I have read the documentation but would you recommend searchw=9 or chroma+true over the defaults in general terms?

Re: DGDenoise

Posted: Tue Apr 18, 2017 3:42 pm
by admin
Generally, it's a tradeoff of speed against thoroughness (aka, "quality").

Take chroma. Make this script:

dgsource("sample.dgi")
UtoY() # visualize the chroma U plane

and compare it to this:

dgsource("sample.dgi")
grayscale() # visualize the luma plane

You will see that there is lots of noise in the luma but only a relatively small amount in the chroma. That's pretty typical. So adding chroma=true will slow things down while not doing much for the perceived result.

Regarding searchw. The bigger it is the better the smoothing but you lose some detail and it takes longer.

I usually just go with searchw=5 and chroma=false and then set the strength as desired. I don't work with very noisy sources like your sample, however. The knobs are there for you to tweak for noisier sources.

Re: DGDenoise

Posted: Tue Apr 18, 2017 4:15 pm
by Guest
Thanks for the explanation and information.
I normally don't work with sources that noisy but I do have some older movies hat seem to be from the era of "Movie Grain is King"

Re: DGDenoise

Posted: Tue Apr 18, 2017 4:24 pm
by Guest
Running an encode and it looks like its all working as it should

Re: DGDenoise

Posted: Tue Apr 18, 2017 4:28 pm
by admin
Sweet, thanks for the report and testing. I tested this version pretty well too.

Re: DGDenoise

Posted: Thu Apr 20, 2017 11:41 am
by Sharc
admin wrote:Generally, it's a tradeoff of speed against thoroughness (aka, "quality").

Take chroma. Make this script:

dgsource("sample.dgi")
UtoY() # visualize the chroma U plane

and compare it to this:

dgsource("sample.dgi")
grayscale() # visualize the luma plane
Why is the chroma U plane view shown at half frame width? Is it because of the YV12 4.2.0 colorspace?

Re: DGDenoise

Posted: Thu Apr 20, 2017 12:21 pm
by admin
It's also half height. Yes, it is that way because there is one U sample (and one V sample) for each block of 4 luma samples.

Y Y
Y Y
U
V

Re: DGDenoise

Posted: Thu Apr 20, 2017 2:27 pm
by Sharc
Ah, the penny dropped why I got the horizontal reduction only. My source was actually 4:2:2 rather than 4:2:0.
Thanks.

Re: DGDenoise

Posted: Fri Feb 23, 2018 6:40 am
by Sharc
A cosmetic issue with DGDenoise:

When I set strength=0.0 I am getting an almost black picture for chroma=false, and a green picture for chroma=true.
Well, one should not set strength to zero, right? :roll:

Re: DGDenoise

Posted: Fri Feb 23, 2018 7:41 am
by admin
Right. I'll add a check for that. Thanks for pointing it out.

Re: DGDenoise

Posted: Sun Aug 19, 2018 5:52 pm
by mparade
Hello,

Sorry for asking that, but how can one access CUDA Filters packaged into DGDecodeNV?

I have been using DGDecNV for a few years and now opted for giving a try to DGDenoise to speed up my scripts feeded into x265.

Thank you in advance for the support.

Re: DGDenoise

Posted: Sun Aug 19, 2018 6:20 pm
by admin
Just load plugin DGDecodeNV.dll and then use DGDenoise(). If you use DGSource() then you have already loaded the dll. Refer to the DGDecodeNV user manual for parameters.

Re: DGDenoise

Posted: Tue Nov 06, 2018 12:15 pm
by Boulder
Isn't DGDenoise Vapoursynth-compatible? I tried using it the normal way as dgdecodenv.dll is in the VS plugins autoload folder, but the function is not recognized. DGSource itself works just fine. I'd like to switch to DGDenoise as my prefiltering tool, it's much faster than KNLMeansCL even with chroma processing enabled.

Re: DGDenoise

Posted: Tue Nov 06, 2018 12:36 pm
by admin
DGDenoise is not native-Vapoursynth-enabled. You can run it in avscompat mode, however. Here is an example:

import vapoursynth as vs
core = vs.get_core()
core.avs.LoadPlugin("DGDecodeNV.dll")
core.avs.LoadPlugin("DGHDRtoSDR.dll")
clip = core.avs.DGSource("Coco.dgi",fulldepth=True)
clip = core.avs.DGHDRtoSDR(clip,fulldepth=False)
clip = core.avs.DGDenoise(clip)
clip.set_output()

I'm trying to stay away from native support, as it is a major hassle to implement and maintain two versions. If you run into any serious downsides from avscompat mode, please let me know.

BTW, you can run DGSource() in native mode with DGDenoise() in avscompat mode, but you have to load the DLL into both namespaces:

import vapoursynth as vs
core = vs.get_core()
core.std.LoadPlugin("DGDecodeNV.dll")
core.avs.LoadPlugin("DGDecodeNV.dll")
core.std.LoadPlugin("DGHDRtoSDR.dll")
clip = core.dgdecodenv.DGSource("Coco.dgi",fulldepth=True)
clip = core.dghdrtosdr.DGHDRtoSDR(clip,fulldepth=False)
clip = core.avs.DGDenoise(clip)
clip.set_output()

Re: DGDenoise

Posted: Tue Nov 06, 2018 12:50 pm
by Boulder
Thanks, I think I'll start using the avscompat mode for now. I suppose there are no big differences what comes to performance or stability of DGSource?

Re: DGDenoise

Posted: Tue Nov 06, 2018 1:04 pm
by admin
That's right, there is no significant difference performance-wise. There is a difference in autoloading but to me it is a minor matter.

Re: DGDenoise

Posted: Wed Nov 07, 2018 11:30 pm
by hydra3333
I seem to recall something about a custom avscompat.dll for vapoursynth ... is one needed ?

Re: DGDenoise

Posted: Thu Nov 08, 2018 4:49 am
by Guest
hydra3333 wrote:
Wed Nov 07, 2018 11:30 pm
I seem to recall something about a custom avscompat.dll for vapoursynth ... is one needed ?
For the normal DGIndexNV and DGDecodeNV no
For the CudaSynth versions one will be needed

Re: DGDenoise

Posted: Tue Jun 23, 2020 7:56 am
by zybex
Hello dear Donald.
Thank you for your wonderful plugins and filters, they are really useful and are used by me and many users around the world.

I ask you to refine the filter "DGDenoise", having made separate adjustment of parameters for Luma and Chroma in it, this will allow it to be used much better. In particular, I have the original video files, which for high-quality noise reduction without loss of detail, the current version of the same parameter values ​​for Luma and Chroma in the "DGDenoise" filter is not enough.

The current option for the "DGDenoise" filter looks like this:
DGDenoise (clip c, float strength, float blend, bool chroma, int searchw, int device)

I suggest you create new additional parameters:
L_strength # Luma strength
L_blend # Luma blend
L_searchw # Luma searchw
C_strength # Chroma strength
C_blend # Chroma blend
C_searchw # Chroma searchw

At the same time, it would be nice to make compatibility with the old parameter format so that if the values of the new parameters are not specified (separately for Luma and Chroma), then the old parameters would act if their values are indicated (strength, blend, chroma, searchw).

Now I have to resort to such a trick for separately adjusting the noise reduction parameters for Luma and Chroma:

lumadenoise = DGDenoise(strength=0.10, blend=0.5, chroma=false, searchw=9, device=255)
chromadenoise = DGDenoise(strength=0.12, blend=0, chroma=true, searchw=9, device=255)
lumadenoise.MergeChroma(chromadenoise)

But I would like to achieve the same result by setting the parameters in the "DGDenoise" filter in one line, for 1 time, this would be more correct, convenient and possibly faster.

Re: DGDenoise

Posted: Tue Jun 23, 2020 8:05 am
by Rocky
Yes I can do that. There are some other pending enhancement requests. I hope to get to it soon after getting DGDemux with MVC etc. out the door. Thank you for your suggestion and welcome to the forum, zybex!

Re: DGDenoise

Posted: Wed Jun 24, 2020 4:46 am
by hydra3333
:thumbsup: