Sumit Chaturvedi

Results 10 comments of Sumit Chaturvedi

I'm interested in this. Any tips on how to get started?

Have you tried: ``` svg_path = Path('SVG path') xmin, xmax, ymin, ymax = svg_path.bbox() ``` That's what I used when I needed a path's bounding box.

Hello everyone. I have been using torch tools and love it for its simplicity and readability. For example, I tried using pytorch-lightning once instead but I just became nervous because...

Does anyone have the normal map for the Mitsuba example? Trying to reproduce it. Thanks!!!

@njroussel @chrisoffner I tried a trivial example with the following normal map (the result should be as if the normal map is not there). But my renders have this same...

@njroussel @wjakob, Following up on this issue. Please let me know if I can provide any more information to help debug this issue? I'm using the mitsuba version available through...

@joeylitalien Can you also check on an identity operation (a bump map setting that doesn't bump)? BTW you neural LOD work looks very cool!

I also had a question about Normal Mapping from your lecture series (Advanced Image Synthesis -- if it wasn't meant to be public, please don't shut it down now!!). In...

I ported it here (for anyone interested): ```py import mitsuba as mi import drjit as dr def safe_rsqrt (x) : return dr.rsqrt(dr.maximum(x, 0.)) def sggx_sample(sh_frame, sample, s_mat) : k, j,...

Thanks for the reply @njroussel !!