Water & Blur
I ever wanted to know, why you get this strange grey veil, when you combine trans/water with heavy blur. And why does this combination work with medium or light blur?
26 posts
Originally posted by TuggummiThere is no 'setting' for water in the convo filter, as coned just said if you had bothered to read his post "...combined with a time-dependant subtraction".
Well while were at it, what is the convo setting for water then? I think UnConeD was coughing at the other thread about that 🙄
Most people just use it as a 'controlled blur' anywayAmen to convo glow! 😁
Originally posted by PAK-9including me 😉
but I think 99% of AVS'rs wouldnt know what to do with it.
To most people it would just be a dynamic controlled blur 😛Convo-glow that pulsates on beat!? OMG! I WANT THAT! 😁
For other values of i, u[k] and v[i-k] do not overlap with non-zero values.
u[k] = [0 1 2 1 0] (extra zeros for padding)
flipped v[k]:
v[0-k] = [2 3 0 0 0]
multiply corresponding elements:
* = [0 3 0 0 0]
sum = 3
=> y[0] = 3
u[k] = [0 1 2 1 0]
flipped v[k]:
v[1-k] = [0 2 3 0 0] (note difference with previous i)
multiply corresponding elements:
* = [0 2 6 0 0]
sum = 8
=> y[1] = 8
u[k] = [0 1 2 1 0]
flipped v[k]:
v[2-k] = [0 0 2 3 0]
multiply corresponding elements:
* = [0 0 4 3 0]
sum = 7
=> y[2] = 7
u[k] = [0 1 2 1 0]
flipped v[k]:
v[3-k] = [0 0 0 2 3]
multiply corresponding elements:
* = [0 0 0 2 0]
sum = 2
=> y[3] = 2