Ujjayanta
Ujjayanta
Hi @Speierers I copied the whole code in a simple python script and it runs fine. "" import mitsuba import os mitsuba.set_variant('scalar_rgb') from mitsuba.core import Thread from mitsuba.core.xml import load_file...
Hi @merlinND I am not sure how to use film.prepare(channels). Tried this but getting an error: " channels = 3 film = sensor.film() film.set_destination_file(r'C:\Users\Jojo\Downloads\ou2.exr') film.prepare(channels) film.develop() " Originally, I followed...
@merlinND I tried to put the line: scene.integrator().render(scene, sensor) But the notebook goes on running indefinitely. Earlier, I could just render fine without this line.
You were right. I missed the integrator.render(). Now, I prepared a simple Python file: ```python import mitsuba import os mitsuba.set_variant('scalar_rgb') from mitsuba.core import Thread from mitsuba.core.xml import load_file filename =...
@Speierers it fails at scene.integrator().render(scene, sensor)
This is just happening with any scene.
Hi, it's now working with both raw = True and raw = False. I have no idea why Jupyter notebook keeps breaking from time to time..
Maybe as a start I could add a link to the app on the README page? - I think that could be nice. In that way, the app would be...
I made the changes and also another minor change to the [streamlit_app.py](https://github.com/jojo96/30days-Bengali/blob/master/streamlit_app.py) in the repo but could you check if all the necessary things are done? Thank you for the...