Log in

View Full Version : Noisy and aliased video


vooyeq
1st March 2014, 21:20
Hi there,

Trying to get rid of noise and aliasing. What can I possibly make of these clips ?

smdegrain seems to work quite well with the noise, but I'm still left with terrible aliasing [AA script blurs image too much].

Quality before speed.

Videos, quite obvious, nevertheless:
clip_x.ts - source
clip_x_smd - source + smdegrain
clip_x_smd_aa - source + smdegrain + aa
https://www.dropbox.com/sh/d1ftr68hzokey1l/Id5cs8wl3a

Screenshots:
http://k3310ph.amperpol.com/clip_1.ts.jpg
http://k3310ph.amperpol.com/clip_2.ts.jpg
http://k3310ph.amperpol.com/clip_3.ts.jpg
http://k3310ph.amperpol.com/clip_4.ts.jpg

smdegrain script
FFVideoSource("e:\z\clip_4.ts")
SelectEven()
TFM() #thanks to manono
SMDegrain (tr=6,PreFilter=2,thSAD=450,Globals=2)

smdegrain+aa script
FFVideoSource("e:\z\clip_4.ts")
SelectEven()
TFM() #thanks to manono
#AA
o=last
ox=o.width
oy=o.height
o.pointresize(ox*3,oy*3).removegrain(4)
mt_lutxy(last,last.removegrain(11,-1),"x x y - 2.51 * +",U=2,V=2).bilinearresize(ox,oy)
o3=last
aaa = o3.eedi2(maxd=8).bicubicresize(ox,oy,0,0,0,0.5).turnleft().eedi2(maxd=8).turnright().bicubicresize(ox,oy,0,0,-0.5,0)
aaa.SMDegrain (tr=6,PreFilter=2,thSAD=450,Globals=2)
return last

Thanks.