CGI tech news box

General computer graphic news and papers.
kintuX
Posts: 809
Joined: Wed Jan 10, 2018 2:37 am

Re: CGI tech news box

Post by kintuX »

Psychopath Renderer: A different Approach
I've been away from Psychopath for a while working on other projects, but recently I stumbled upon a blog post by Yining Karl Li, entitled "Mipmapping with Bidirectional Techniques". In it, he describes his solution to a problem I've been pondering for a while: how to handle texture filtering in the context of bidirectional light transport...
--------------------------------------------------------------

Oh, and especially good news for lacilaci ;)

Optix Denoiser with Cycles... soon.
Image
kintuX
Posts: 809
Joined: Wed Jan 10, 2018 2:37 am

Re: CGI tech news box

Post by kintuX »

A radiative transfer framework for non-exponential media
Benedikt Bitterli, Srinath Ravichandran, Thomas Müller, Magnus Wrenninge, Jan Novák, Steve Marschner, Wojciech Jarosz. A radiative transfer framework for non-exponential media. ACM Transactions on Graphics (Proceedings of SIGGRAPH Asia), 37(6):225:1–225:17, November 2018.

Image

Even in photography, such a clear image of rain falling from the cloud with its backgrounds is quite hard and expensive to make.
User avatar
Sharlybg
Donor
Donor
Posts: 3101
Joined: Mon Dec 04, 2017 10:11 pm
Location: Ivory Coast

Re: CGI tech news box

Post by Sharlybg »

Unity global instant GI without precomputation :

https://forum.unity.com/threads/segi-fu ... on.410310/

SEGI Opensource Project :
interior.jpg


sponzaupper.jpg


sponzadark.jpg
Support LuxCoreRender project with salts and bounties

Portfolio : https://www.behance.net/DRAVIA
User avatar
Sharlybg
Donor
Donor
Posts: 3101
Joined: Mon Dec 04, 2017 10:11 pm
Location: Ivory Coast

Re: CGI tech news box

Post by Sharlybg »

Some Good boost to Bidir engine with such kind of boost Bidir could become a standar for daily rendering workflow :

https://www.researchgate.net/publicatio ... _Rendering
Bidi.jpg
Support LuxCoreRender project with salts and bounties

Portfolio : https://www.behance.net/DRAVIA
User avatar
Dade
Developer
Developer
Posts: 5672
Joined: Mon Dec 04, 2017 8:36 pm
Location: Italy

Re: CGI tech news box

Post by Dade »

Sharlybg wrote: Mon Dec 03, 2018 9:46 am Some Good boost to Bidir engine with such kind of boost Bidir could become a standar for daily rendering workflow :

https://www.researchgate.net/publicatio ... _Rendering
I tried this in old Lux years ago: heterogeneous hybrid CPU/GPU rendering has too much problems. Note the heterogeneous, it means you are assigning to CPU and GPU different type tasks and you get the end result when all is done. This is different from our current homogeneous hybrid rendering where we assign to CPU and GPU the same type of task.

Short version: you have an infinitely fast GPU (it does everything in 0 secs) and a normal CPU. We have 2 task types A and B. Heterogeneous hybrid rendering will assign A tasks to the GPU and B tasks to the CPU. The time to do everything will be cpu time for B ... even with an infinitely fast GPU.

Homogeneous hybrid rendering will render everything in 0 secs thanks to the infinitely fast GPU.
Support LuxCoreRender project with salts and bounties
epilectrolytics
Donor
Donor
Posts: 790
Joined: Thu Oct 04, 2018 6:06 am

Re: CGI tech news box

Post by epilectrolytics »

User avatar
Sharlybg
Donor
Donor
Posts: 3101
Joined: Mon Dec 04, 2017 10:11 pm
Location: Ivory Coast

Re: CGI tech news box

Post by Sharlybg »

REDSHIFT Photon mapping engine & Docs :

https://github.uconn.edu/pages/mjr14019 ... n-mapping/
Support LuxCoreRender project with salts and bounties

Portfolio : https://www.behance.net/DRAVIA
User avatar
lacilaci
Donor
Donor
Posts: 1969
Joined: Fri May 04, 2018 5:16 am

Re: CGI tech news box

Post by lacilaci »

Sharlybg wrote: Wed Jan 23, 2019 5:17 pm REDSHIFT Photon mapping engine & Docs :

https://github.uconn.edu/pages/mjr14019 ... n-mapping/
interesting. So they have the same problem with photon mapping as other renderers (splotches, too many settings and gpu memory, but working caustics).
I wonder if Dade's solution will be first one that overcomes the usual issues. I mean last post of his experiments were splotch free and memory usage wasn't terrible...
User avatar
Dade
Developer
Developer
Posts: 5672
Joined: Mon Dec 04, 2017 8:36 pm
Location: Italy

Re: CGI tech news box

Post by Dade »

lacilaci wrote: Wed Jan 23, 2019 5:57 pm
Sharlybg wrote: Wed Jan 23, 2019 5:17 pm REDSHIFT Photon mapping engine & Docs :

https://github.uconn.edu/pages/mjr14019 ... n-mapping/
interesting. So they have the same problem with photon mapping as other renderers (splotches, too many settings and gpu memory, but working caustics).
I wonder if Dade's solution will be first one that overcomes the usual issues. I mean last post of his experiments were splotch free and memory usage wasn't terrible...

I don't feel the pressure :mrgreen:
Support LuxCoreRender project with salts and bounties
User avatar
Mango3
Posts: 32
Joined: Sun Oct 28, 2018 7:09 pm

Re: CGI tech news box

Post by Mango3 »

interesting. So they have the same problem with photon mapping as other renderers (splotches, too many settings and gpu memory, but working caustics).
Standard photon mapping is a robust and well known method but has been largely superseded by far better methods (progressive photon mapping -> stochastic progressive photon mapping) because it cannot handle distributed ray tracing effects like motion blur, depth-of-field or anti-aliasing.

If you then couple bidirectional path-tracing with photon mapping for what both are best then you end up with vertex connection merging (vcm).
RenderMan has it for instance.
Post Reply