Some images from my renderer back

Board: Home Board index Raytracing General Development

(L) [2015/03/03] [ost by yiningkarlli] [Some images from my renderer] Wayback!

Hello all,

I've been following the ompf2 (and before that, ompf) boards for some time now, but haven't really posted aside from one or two posts a long time ago. I thought for a first "real" post, I'd share some images from my renderer, called Takua Render. I wrote Takua Render from scratch and have been working on it for around four years now. It started out as a unidirectional pathtracer, but now is primarily a VCM renderer (which correspondingly means it also supports PPM, BDPT, etc).

Some images produced by my renderer:

Edit: apologies for the first four images; the first four images are rendered at 1920x1080, but I'm not sure how to add image resize tags in the forum's post editor thing.

[IMG #1 Image]
[IMG #2 Image]
[IMG #3 Image]
[IMG #4 Image]
[IMG #5 Image]
[IMG #6 Image]
[IMG #7 Image]
[IMG #8 Image]

Hope everyone likes them!

-YKL
[IMG #1]:[IMG:#0]
[IMG #2]:[IMG:#1]
[IMG #3]:[IMG:#2]
[IMG #4]:[IMG:#3]
[IMG #5]:[IMG:#4]
[IMG #6]:[IMG:#5]
[IMG #7]:[IMG:#6]
[IMG #8]:[IMG:#7]
(L) [2015/03/03] [ost by shocker_0x15] [Some images from my renderer] Wayback!

Cool!!

How much vertices do the flowers consist of?
(L) [2015/03/04] [ost by ypoissant] [Some images from my renderer] Wayback!

Very nice.

How do you handle the lackered material on the chair?
(L) [2015/03/04] [ost by beason] [Some images from my renderer] Wayback!

Wow, very cool! Would love to see more renderings.
(L) [2015/03/05] [ost by yiningkarlli] [Some images from my renderer] Wayback!

>> beason wrote:Wow, very cool! Would love to see more renderings.
More coming soon! I have a couple of cool things in the works. In the meantime, there's a lot more images (and also my writeups and stuff) on my development blog: [LINK http://blog.yiningkarlli.com/]
 >> ypoissant wrote:How do you handle the lackered material on the chair?
My renderer has a layered shading system not too dissimilar from Vray's layered shader or Renderman 19/RIS's LM system. So the chair uses a layered BSDF with a base diffuse BSDF with the color, and then a clearcoat layer on top and then a couple of layers with fingerprints and scratches and stuff, although the fingerprints and scratches don't really end up being visible...
 >> shocker_0x15 wrote:How much vertices do the flowers consist of?
The flowers are close to a quarter of a billion triangles, which took an awful lot of memory. Detailed writeup here: [LINK http://blog.yiningkarlli.com/2015/02/flower-vase-render.html]

Thanks so much everyone!
(L) [2015/03/05] [ost by koiava] [Some images from my renderer] Wayback!

Very nice renders and layered materials looks great, fingerprint layer was highest level of awesomeness [SMILEY :D]
VCM rocks, SDS paths is totally clear [SMILEY :)] what was render time for second image(Lilacs in glass vase)?
Flower scene is not a simple case for BVH with object splits, because AABBs doesn't fits well on this thin rods, so which acceleration structure are you using? Do you use spatial splits?
(L) [2015/03/06] [ost by mpeterson] [Some images from my renderer] Wayback!

>> koiava wrote:Very nice renders and layered materials looks great, fingerprint layer was highest level of awesomeness
VCM rocks, SDS paths is totally clear  what was render time for second image(Lilacs in glass vase)?
Flower scene is not a simple case for BVH with object splits, because AABBs doesn't fits well on this thin rods, so which acceleration structure are you using? Do you use spatial splits?
vcm rocks ??? where are you coming from ? it is for shure the slowest approach to handle complex lighting/illumination
(L) [2015/03/06] [ost by koiava] [Some images from my renderer] Wayback!

>> mpeterson wrote:vcm rocks ??? where are you coming from ? it is for shure the slowest approach to handle complex lighting/illumination
In common cases unidirectional path tracing with external light sampling and MIS is industry standard, but there is situations where this approach has problems.(for example "flowers in glass vase" scene)
In the set of unbiased techniques we has BDPT with MIS, which has really good results for difficult cases(I mean difficult for unidirectional PT), but it has can't simply find SDS paths efficiently, because at specular event Importance Sampling is hard to do.
VCM isn't unbiased, because it's combinations of PPM and BDPT, it's consistent, So for surfaces PT/VCM integrator is probably most useful at this time [SMILEY :)]
(L) [2015/03/10] [ost by ypoissant] [Some images from my renderer] Wayback!

>> yiningkarlli wrote:My renderer has a layered shading system not too dissimilar from Vray's layered shader or Renderman 19/RIS's LM system. So the chair uses a layered BSDF with a base diffuse BSDF with the color, and then a clearcoat layer on top and then a couple of layers with fingerprints and scratches and stuff, although the fingerprints and scratches don't really end up being visible...
This piques my curiosity a bit more.

Do you have a compound layered BTDF that computes all the layer effects together or are each layer considered as a different medium which you trace through one after the other?

back