jitter blur effect
Hi Guys,
I'm trying to independently blur a number of videos in real time, that are positioned in formation across the screen. I'm having trouble applying the blur effect to the position video frames. Can anyone help me?
The question isn;t very clear to me.
From what i can see of your patch your not running your films into the jit.gl.videoplane objects (which would give a huge increase in performance and move everything to the GPU)
If you run your move through the jit.gl.slab effect (check jitter slab examples for over 4 kinds of blur) and then to jit.gl.videoplane then you can move each videoplane around and apply a blur over all of them.
Or.
You can can bind each videoplane to its own jit.gl.node (capture 1) and then apply a separate blur effect to each of them.
Hi yibidy28
Here's a nice jit.gl.pix one by Wes smith.
Andro's example is also an excellent option.
Two very nice solutions, thanks both.
Great ideas. Thanks for your help guys!