pouët.net

Go to bottom

Bokeh DOF

category: code [glöplog]
:(
added on the 2011-10-13 02:03:47 by Gargaj Gargaj
yehar: Well yes, I guess technically GPUs are Turing complete :-) My point was that the FIR solution is probably a lot simpler in a GPU context. I wouldn't know how to do an IIR filter using just a plain ol' regular fragment shader (but I am admittedly a n00b).
added on the 2011-10-13 09:58:21 by revival revival
Revival: I'm a complete newbie to GPU's too, but I'm now reading on it. What you say seems to be correct. The result of reading from the texture that is being written to is specified as undefined, but could work: http://www.nvidia.com/docs/IO/8227/GDC2003_SummedAreaTables.pdf. To be on the safe side, one could use an efficient parallel algorithm for prefix sum: http://http.developer.nvidia.com/GPUGems3/gpugems3_ch39.html. An analogous algorithm can be used to implement IIR filters that have been factored to single poles by partial fraction expansion.
added on the 2011-10-13 16:19:20 by yehar yehar
also see http://developer.amd.com/media/gpu_assets/SATsketch-siggraph05.pdf from ATI a few years back.
or, yea, compute
added on the 2011-10-13 17:22:02 by smash smash
yehar - reading from the texture you're writing to is allowed on Nvidia, if you're only reading from the same pixel you are writing to (there's an opengl-extension for it)... which is probably an absolute useless piece of information for this usecase :p
added on the 2011-10-13 17:44:58 by hornet hornet
I find an interesting twist to do, if one is using a gaussian type kernel that blurs according to luminosity of another texture, *and* one is one is using depth buffer from the scene for that mask channel (as opposed to some kind of gaussian circle gradient, or linear gradient) - running that depth buffer or perhaps a scene with lighting, through a Dilate type of fragment to treat the image one feeds the blur map can create an interesting alternative to the heavy hexagonal blur look. The brighter parts of the luminosity channel one has treated with the Dilate will do that classic bloom out, but it's not a played out look. Similarly, you can just take you luminosity channel and run it through a hexagon pixel shader routine, pass that to the blur kernel that blurs from luminosity, and voila.

If it's a really extreme effects, you can use pretty low res going in, and speed stuff up quite a bit.

added on the 2011-10-14 04:58:19 by gtoledo3 gtoledo3
This one is also interesting, a memory-efficient algorithm for summed area tables and recursive filters: http://w3.impa.br/~diego/projects/NehEtAl11/
added on the 2011-10-14 08:32:18 by yehar yehar
While summed area tables should work well for simple circle-filters, aren't they more or less useless for depth-of-field effects as they provide no means to avoid leaking?
added on the 2011-10-14 10:57:34 by kusma kusma
With a little bit of formula rewriting I'm sure anyone can convert the summed area thing to scatter the blobs instead of gathering.

O(n log n)-method: first when rendering each pixel, write both color and the bokeh blob size, then in postprocess recursively split the blob into 2^n half and residue.
O(n): left as an exercise, similar to the tree-approach.

(for extra points, figure how to make it non-square using this method, might not be as trivial as with gathering)
added on the 2011-10-14 13:26:40 by 216 216
Have you noticed that SQUARE BOKEH doesn't look that bad, can be used stylistically in a demo, and it's really fast?

BB Image

BB Image

BB Image
added on the 2012-01-08 04:48:49 by xernobyl xernobyl
Square bokeh looks pretty ugly to me. Could be good as a demo effect though.
added on the 2012-01-08 13:07:38 by psonice psonice
ohh I like that one! :)
added on the 2012-01-08 15:14:51 by las las
Square bokeh? Use massive pixels instead!
Come on? Glowing cubes with square bokeh? You must be a gamer not to love it.
added on the 2012-01-08 20:14:12 by xernobyl xernobyl
Just out of curio though, has anyone made a demo about it yet?

I'm not sold yet tbh, but I'm sure if Fairlight or ASD used it they'd automatically perfect it. :D
Ok, I'm sold, that was pretty awesome!

Just another quick question: Would Bokeh be the same type of de-focussing that is used to make normal pics look like scale models?
wasn't Excess ahead of them, or was that another kind of dof?
added on the 2012-01-08 23:38:14 by Hyde Hyde
8bb: that's just a question of simulating the right lens aperture / distance scale.
added on the 2012-01-09 00:27:42 by xernobyl xernobyl
Quote:
Come on? Glowing cubes with square bokeh? You must be a gamer not to love it.


I hate to have to say this, but square bokeh was already done like 12 years back: http://www.pouet.net/prod.php?which=344

That's actually one of my favourite demos too. You may now call me a gamer :(
added on the 2012-01-09 01:16:57 by psonice psonice
Box blur can be seen as square bokeh given a big enough distance from the focal plane...
added on the 2012-01-09 02:37:56 by xernobyl xernobyl
8bit: we used bokeh effects in numb res already - but also tried to keep it subtle and not completely overdo it, so i guess most people missed it :)
(we also had dof with no leakage since frameranger btw)
added on the 2012-01-09 10:30:20 by smash smash
blur your left foot out, your right foot out and and now you gotta shout: do the hokey bokeh!
added on the 2012-01-09 10:56:34 by maali maali
Hyde: We were indeed. It's generally the same DOF algorithm (i.e inspired by the DICE presentation at SIGGRAPH 2011), but it looks like mine has somewhat less leaking. This might be partially because of the use-cases rather than the implementation itself, but I somehow doubt it. I spent a LOT of time experimenting with leak-elimination. I ended up removing the in-front-of-the-focal-plane DOF, because the thin features of the neuron-cluster model suffered quite a lot. It looked good on "fat" models, but not on thin ones. I hate that I had to remove it, but there was simply no time to fix it either.

Smash: I'd love to pick your brain at some point about leak-prevention, especially in relation to scatter-as-gather. Cortex Sous-Vide was my first demo with DOF (well, apart from a few fixed-function hacks years ago), and I'm sure there's a lot of know-how that I've missed. I've simply not been interested in doing gaussian DOF, because it looks like ass.
added on the 2012-01-09 11:44:32 by kusma kusma
Wasn't Bjoer from Tpolm another Bokeh?

Hey Smash, at least you don't overdo it like all these other ribbon and glow demos. *ducks* ;)

So basically post processing then Xerby? Would be pretty cool if modern cameras came equipped with realtime post processing capabilities.

login

Go to top