~SimpleX~
11th February 2010, 12:52
Hello everyone! I'm new to avisynth, so I want to ask some questions about filters I should use in different situations to better understand the process.
My questions:
1) Which denoising filters are good for anime?
2) Is there any way to slow down grain movements after denoising (and using gradfun2dbmod to dither banding)? There're many scenes with kind of constant frame but moving grain...
3) Which sharpening filters are good for anime? Warpsharp's killing some little lines but effect is pretty good (not everywhere, though). LSF is better for details preservation, but doesn't make lines thinner.
I'm currently working on Cafe Junkie (hentai anime).
Sample: 22 seconds (http://www.mediafire.com/?mkmz4dmzcyj)
Script I'm using:
SetMemoryMax(768)
setMTMode(2,0)
src=DGDecode_MPEG2Source("C:\Encoding\Cafe Junkie\VTS_01_1.d2v", info=3, cpu=0)
src=src.ColorMatrix(hints=true, threads=0)
progressive=src.AnimeIVTC(mode=1, aa=1, ifade=true)
ECMode="DFTTest().dehalo_alpha(darkstr=0.7,brightstr=1.7).warpsharp()"
denoised=progressive.MCTemporalDenoise(\
settings="low", radius=2, GPU=false, fixband=true, sigma=3, chroma=true,\
edgeclean=true, ECmode=ECMode, ECrad=3, ECthr=16,\
enhance=true,\
protect=true,\
sharp=true, strength=170, SHmode=5, sovershoot=2,\
post=0,\
deblock=true)
final=denoised.FastLineDarkenMOD2(thinning=8, strength=35, luma_cap=210).Tweak(sat=1.1).Crop(0,0,-2,0).Spline36Resize(720, 540)
final
__film = last
__t0 = __film.trim(0, 36751)
__t0
Is there anything to add, to remove? Is it optimal for this source?
Thanks for your help! And sorry for my "English".
My questions:
1) Which denoising filters are good for anime?
2) Is there any way to slow down grain movements after denoising (and using gradfun2dbmod to dither banding)? There're many scenes with kind of constant frame but moving grain...
3) Which sharpening filters are good for anime? Warpsharp's killing some little lines but effect is pretty good (not everywhere, though). LSF is better for details preservation, but doesn't make lines thinner.
I'm currently working on Cafe Junkie (hentai anime).
Sample: 22 seconds (http://www.mediafire.com/?mkmz4dmzcyj)
Script I'm using:
SetMemoryMax(768)
setMTMode(2,0)
src=DGDecode_MPEG2Source("C:\Encoding\Cafe Junkie\VTS_01_1.d2v", info=3, cpu=0)
src=src.ColorMatrix(hints=true, threads=0)
progressive=src.AnimeIVTC(mode=1, aa=1, ifade=true)
ECMode="DFTTest().dehalo_alpha(darkstr=0.7,brightstr=1.7).warpsharp()"
denoised=progressive.MCTemporalDenoise(\
settings="low", radius=2, GPU=false, fixband=true, sigma=3, chroma=true,\
edgeclean=true, ECmode=ECMode, ECrad=3, ECthr=16,\
enhance=true,\
protect=true,\
sharp=true, strength=170, SHmode=5, sovershoot=2,\
post=0,\
deblock=true)
final=denoised.FastLineDarkenMOD2(thinning=8, strength=35, luma_cap=210).Tweak(sat=1.1).Crop(0,0,-2,0).Spline36Resize(720, 540)
final
__film = last
__t0 = __film.trim(0, 36751)
__t0
Is there anything to add, to remove? Is it optimal for this source?
Thanks for your help! And sorry for my "English".