View Single Post
Old 11th June 2011, 18:20   #3  |  Link
Didée
Registered User
 
Join Date: Apr 2002
Location: Germany
Posts: 5,391
Quote:
Originally Posted by Boulder View Post
Why are the compensated frames blurry? I thought that Blur is only applied to the motion vector search and not to the final result.
Look at the lines that are doing the actual compensations:
Code:
mc1=last.MCompensate(super, bv1)
Bingo? Bingo!


Script adapted, with more-obviously-named clips:
Code:
AVISource("e:\temp\dvnauha.avi")
TDeint(mode=1)

super_search = MSuper(last.Blur(1.58))
super_render = MSuper(last,levels=1)
fv1 = MAnalyse(super_search, chroma=true, isb=false)
bv1 = MAnalyse(super_search, chroma=true, isb=true)

mc1 = last.MCompensate(super_render, bv1)
mc2 = last.MCompensate(super_render, fv1)

interleave(mc2,last,mc1)
__________________
- We´re at the beginning of the end of mankind´s childhood -

My little flickr gallery. (Yes indeed, I do have hobbies other than digital video!)
Didée is offline   Reply With Quote