View Single Post
Old 30th October 2006, 10:00   #781  |  Link
Livesms
Registered User
 
Livesms's Avatar
 
Join Date: Mar 2006
Posts: 184
Quote:
Originally Posted by manono View Post
Hi-

As foxyshadis speculated, it is pure interlace. Put on a bobber (or separate the fields) and step through it, and you'll see that every frame/field is different. No repeats. The reason (maybe) why you think TIVTC does such a good job is that it doesn't find any field matches and just deinterlaces. You can do as well, and do it faster, by just using TDeint. And if this is for DVD, then I wouldn't recommend deinterlacing at all.
Yes!

SeparateFields() gives me half height picture and all different (step by step) video. So it is pure interlaced video.

So what can you reccomend as deinterlacing filter. I have some variants
Code:
interp = separatefields().selecteven().EEDI2(field=1)
deinted = tdeint(edeint=interp,order=1,field=1)
tfm(clip2 = deinted,order=1)
http://dump.ru/files/8/826331359/0.jpg
Code:
2 pass TIVTC
first pass
tfm(d2v=d2vname, output="matches.txt")

second pass
tfm(d2v=d2vname, input="matches.txt")
http://dump.ru/files/0/0508170020/1.jpg
Code:
TIVTC for PAL  
tfm(d2v=d2vname)
http://dump.ru/files/1/100852183/2.jpg
Some samples from MeGui
Code:
#TDeint with EDI
edeintted = last.AssumeTFF().SeparateFields().SelectEven().EEDI2(field=-1)
TDeint(order=1,full=false,edeint=edeintted)
http://dump.ru/files/6/6827235/3.jpg
Code:
#TDeint
TDeint(order=1,full=false)
http://dump.ru/files/0/074818498/4.jpg
Code:
#FieldDeinterlace
AssumeTFF().FieldDeinterlace(full=false)
http://dump.ru/files/4/4845181842/5.jpg
Code:
#FieldDeinterlace (no blend)
AssumeTFF().FieldDeinterlace(blend=false,full=false)
http://dump.ru/files/4/4192710577/6_1.jpg
Code:
#LeakKernelDeint
LeakKernelDeint(order=1,sharp=true)
http://dump.ru/files/2/223364508/7.jpg
Code:
#TomsMoComp
TomsMoComp(1,5,1)
http://dump.ru/files/9/9263911186/8.jpg

Maybe there is other method, which will give me better/best results?

Last edited by Livesms; 30th October 2006 at 11:50.
Livesms is offline   Reply With Quote