Log in

View Full Version : UnDot() Interlaced Foage ?


numlock
6th October 2004, 09:27
I want to use UnDot. My question is can it be used with interlaced video.
IF yes what would be the correct script ?

What about Faerydust() ? CAn I use that also along with UnDot()

Would this be OK ?

SeparateFields()
UnDot()
Faerydust()
Weave()

tia

Mug Funky
6th October 2004, 09:59
probably best to separate fields before applying undot (though it'll hardly make a difference). dumb bobbing will diminish the effects of undot, so straight out field-separation is probably the go for it.

either:

separatefields().undot()

or:

even = last.separatefields().selecteven().undot()
odd = last.separatefields().selectodd().undot()
interleave(even,odd).weave()

the latter is better for temporal smoothers, where bobbing would cause the differences between frames to be too small, reducing effectiveness.