Advertisement
Guest User

Untitled

a guest
Sep 8th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function RemoveSpotsMC2x(clip,int limit, bool "_grey")
  2. {
  3. _grey=default(_grey, false)
  4. limit = default(limit,6)
  5. i=MSuper(clip,pel=2)
  6. bvec = MAnalyse(i,isb=false, blksize=8, delta=1, truemotion=true)
  7. fvec = MAnalyse(i,isb=true, blksize=8, delta=1, truemotion=true)
  8. backw = MFlow(clip,i,bvec)
  9. forw = MFlow(clip,i,fvec)
  10. clp=interleave(backw,clip,forw)
  11. clp=clp.RemoveSpots().RemoveSpots().RemoveSpots()
  12. clp=clp.SelectEvery(3,1)
  13. return clp
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement