Log in

View Full Version : What denoising filter would you recommend to remove the noise from this movie?


orion44
29th July 2018, 01:32
I'm making a backup of a BluRay movie, and would like to remove the noise.

What denoising filter would you recommend?

I've uploaded a 5 second video sample Here (http://www.mediafire.com/file/mu8367nu0j4jad1/Video_Sample.avi/file).

Also, here is a screenshot:

https://u.cubeupload.com/ClearSky/Image.jpg

Mounir
29th July 2018, 02:30
Try this script i made:


AVISource("C:\Users\gfk\Desktop\Video Sample.avi")
converttorgb32(matrix="pc.709",interlaced=false)
SetMTMode(2,4)
LoadVirtualDubPlugin("C:\Program Files (x86)\virtualdubmod1.5\plugins\Camcorder_Color_Denoise_sse2.vdf", "CCD", 1)
CCD(10,0) # 0 to 100, default: 30
LoadVirtualDubPlugin("C:\Program Files (x86)\VirtualDub\plugins\msu_sharpen.vdf", "MSUSmartSharpen", 1)
MSUSmartSharpen(0) # 0(small) to 5 (mad)
converttoyv12(matrix="pc.709",interlaced=false)
# DENOISING:
pre=fluxsmootht(3).removegrain(20)
SMDegrain(tr=3,thSAD=500,contrasharp=30,prefilter=pre,str=1.2,refinemotion=true,lsb=true)


https://image.noelshack.com/fichiers/2018/30/7/1532827821-video-sample000073.jpg

orion44
29th July 2018, 02:45
Try this script i made:



https://image.noelshack.com/fichiers/2018/30/7/1532827821-video-sample000073.jpg

Thank you.

I will try it.