lighttransport / nanort

NanoRT, single header only modern ray tracing kernel.
MIT License
1.08k stars 90 forks source link

Add raw output in addition to exr #1

Closed prabindh closed 9 years ago

prabindh commented 9 years ago

Added raw output dump in addition to exr. Useful in systems like mine where exr tools are not available.

syoyo commented 9 years ago

You can use tinyexr example to convert exr image to other format.

https://github.com/syoyo/tinyexr/tree/master/examples

prabindh commented 9 years ago

Thanks, I did go through that, but it needs an additional step of running tinyexr separately. Just thought that it is simpler to output at the same time as the exr itself.

syoyo commented 9 years ago

I guess pfm(portable float map) output is better.

syoyo commented 9 years ago

Anyway, merged. Thanks!

prabindh commented 9 years ago

Thanks...