I'm used to working on animation sources and not live footage. I have a source that looks like they added in TONS of artificial grain over the film. When you look at the background, there is a huge amount of it and it's very distracting and annoying.
I have tried multiple types of noise/grain removers, and they kind of help but they have not been doing too well at it. The only way I have been able to get rid of those colored specks is with mctemporaldenoise(sigma=5, sharp=false, radius=1, ecrad=1). Anything lesser than sigma of 5 doesn't get it out of the background well enough. It's been smearing things out though, because of the strong noise removal. The others I tried did more detail damage and less background noise removal, but this is still kind of overkill.
Is there a better alternative to removing this grain or at least making it harder to see without smearing away as much detail, or blurring the overall picture a lot?
Screenshots
https://forum.videohelp.com/images/imgfiles/ERWOITN.png
https://forum.videohelp.com/images/imgfiles/9qcJnxH.png
https://forum.videohelp.com/images/imgfiles/DonnkpR.png
+ Reply to Thread
Results 1 to 12 of 12
-
Last edited by killerteengohan; 11th Jun 2019 at 20:30.
-
You can perform heavier filtering on the chroma and lighter filtering on the luma:
Code:MergeChroma(TemporalDegrain(weak settings), TemporalDegrain(heavy settings)) # or TemporalDegrain2(...)
-
Gimme a moment to make one
Last edited by killerteengohan; 11th Jun 2019 at 21:02.
-
Here is 30 second video sample.
https://mega.nz/#!Nx4VyChL!OH5sRMu3psoNXVZl0bXOM9e-Ori7bLnzC5OKtVEzQmw -
Here is a 15 second one from a much darker scene
https://mega.nz/#!c8gFRQ6C!D5olC7ztlE9IWfOBdpFwBVDJQGYDme1vGeQjb6dJ3J8 -
Tried both
Code:MergeChroma(mctemporaldenoise(sigma=2, sharp=false, radius=1, ecrad=1), mctemporaldenoise(sigma=5, sharp=false, radius=1, ecrad=1))
Code:MergeChroma(TemporalDegrain(sigma=2), TemporalDegrain(sigma=6))
Code:Chroma=last.mctemporaldenoise(sigma=5, sharp=false, radius=1, ecrad=1) Luma=last.mctemporaldenoise(sigma=2, sharp=false, radius=1, ecrad=1) MergeLuma(Luma) MergeChroma(Chroma)
Didn't really have any luck with this working any different or better than before when it comes to the mctemporaldenoise. The temporaldegrain was removing it better, but it was smudging away everything else detail wise way worse.
Am I not separating chroma and luma filtering properly? -
I haven't looked at the dark scene yet but just TemporalDegrain2(degrainTR=3) works pretty well with the bright clip. If you use TemporalDegrain() you'll need to try settings lower than the default, SAD1=200, SAD2=150, sigma=8, or thereabouts.
-
Anyway, just simply use this simple script. I think you'll really like the results.
SMDegrain(tr=3,thSAD=400, subpixel=3, contrasharp=false,prefilter=2,str=8.0,refinemotion =true, truemotion=true, lsb=true, chroma=true) -
-
Right, we want to avoid removing details. But it removed a significant amount of grain.
-
I have good results with this script that is less aggressive noise removal but seems to be very good at removing background noise
https://forum.doom9.org/showthread.php?p=618853#post618853
For more aggressive grain removal I use this script, but you can also use another denoiser to do a more aggressive preclean simply by changing one line and adding it to the script, which I do for heavy grain removal or even scratch removal from very old sources. It also works with B&W sources
https://forum.doom9.org/showthread.php?p=1694939#post1694939
Change this line in the script to add your own prefilter
alt=input.RemoveGrain(2)
Some examples I use occasionally are
alt=input.fluxsmoothst(3,3)
alt=input.msmooth(threshold=5,strength=3,highq=tru e,chroma=false)
Similar Threads
-
Sharpening and Grain?
By killerteengohan in forum RestorationReplies: 27Last Post: 14th Jul 2018, 01:54 -
Remove grain?
By bagmand in forum Authoring (Blu-ray)Replies: 2Last Post: 30th Oct 2017, 07:00 -
Help on how to get rid of the grain/noise.
By ricardouk in forum RestorationReplies: 11Last Post: 2nd Oct 2016, 18:45 -
Noise/Grain removal suggestion?
By killerteengohan in forum RestorationReplies: 27Last Post: 19th Mar 2015, 10:55 -
can snowy look (from grain?) be fixed?
By spiritgumm in forum Video ConversionReplies: 17Last Post: 19th Feb 2015, 06:45