Log in

View Full Version : Replacing Camcorder color denoise


matfra
5th July 2012, 15:00
Hello,
Does anyone know what filter can replace this Virtualdub plugin Camcorder color denoise 1.6 MT (25.04.2009) from http://acobw.narod.ru/
I have trouble to import it in Avisynth.
LoadVirtualDubPlugin ("C:\Program Files (x86)\AviSynth 2.5\plugins\CCD.VDF", "CCD",0)
AVISource("C:\clip.avi")
ConvertToRGB32()
CCD(50)

Is there any comparable script for avisynth, if not, how can have this one working ?
Thank everyone.

Mounir
5th July 2012, 19:27
You should have preroll of 1 frame
("C:\Program Files (x86)\AviSynth 2.5\plugins\CCD.VDF", "CCD",1)


What's the problem when you load it because it work ok with me

Tempter57
6th July 2012, 06:19
LoadVirtualDubPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\ccd_sse2.vdf", "CamCD", 0)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\fft3dfilter.dll")

setmtmode(5,4) # for threads=4
setmemorymax(256)

AVISource("C:\clip.avi")

setmtmode(2)

ConvertToRGB32().CamCD(30,1).ConvertToYV12() # for Progressive
# ConvertToRGB32(interlaced=true).CamCD(30,1).ConvertToYV12(interlaced=true)

# fft3dfilter(wintype=1,degrid=1,bw=32,bh=32,oh=16,ow=16,sigma=3.0,sigma2=3.0,sigma3=16.0,sigma4=3.0,bt=3,plane=3,ncpu=1) # variant 2

matfra
6th July 2012, 14:31
I still having he same error even with everything you told me. It seem the error occure right after the loading of the plugin.
LoadVirtualDubPlugin ("C:\Program Files (x86)\AviSynth 2.5\plugins\ccd_sse2.vdf", "CamCD",1)

I am using avisynth 2.6. Is it could be the issue ?
Is there a other similar program can Camcorder denoise ?

matfra
6th July 2012, 14:55
I found my problem.
The error was provoke by AviSynth 2.6 ! Its working now on AviSythn 2.58

Tempter57
6th July 2012, 15:58
I am using avisynth 2.6. Is it could be the issue ?
Is there a other similar program can Camcorder denoise ?
Yes, XviD4PSP_5 (http://code.google.com/p/xvid4psp/downloads/list), used AviSynth 2.6 MT, type filtering DVC...