Log in

View Full Version : question about TemporalSoften...


akiza
1st September 2006, 10:02
====
TemporalSoften(clip clip, int radius, int luma_threshold, int chroma_threshold [, int scenechange] [, int mode])

All frames no more than radius away are examined.

====

I'm a little confused....:confused:

If radius=3, how many frames TemporalSoftem work with ?

1. [n-1],[n],[n+1] -> total frames=3

2. [n-2],[n-1],[n],[n+1],[n+2] -> total frames=5

which one is correct ?

unskinnyboy
1st September 2006, 11:16
All frames no more than radius away are examined.
Confusing wording eh? How about this - frames which are farther away than the radius are not examined ?
which one is correct ?
None of the above.

Correct answer is [n-3], [n-2], [n-1], [n], [n+1], [n+2], [n+3] -> total frames = 7.

If you say radius=3, 7 frames are examined. 3 frames before the current frame, 3 frames after the current frame and the current frame.

akiza
1st September 2006, 11:32
Thanks. :D