Ekin Ozturk
Ekin Ozturk
Hi @Speierers, I actually tried three configurations. `setpath.bat` before environment creation, `setpath.bat` before environment activation and `setpath.bat` after environment activation. All three results in failure to import `mitsuba`.
Ah, I don't think that's the case in the master branch https://github.com/mitsuba-renderer/mitsuba2/blob/e1c09283a54848e74fe8d84802b72857ab25007f/setpath.bat#L11 I'll try swapping to give the Mitsuba directory precedence and see if that fixes it.
Just tested that, and now OpenEXR fails to load instead with the error: ```python >>> import OpenEXR Traceback (most recent call last): File "", line 1, in ImportError: DLL load...
This is the result of `print(sys.path)` in Python after running `setpath.bat`: ```python ['', 'G:\\research_files\\academic_work\\git_repositories\\mitsuba_renderer_folder\\mitsuba2\\build_windows\\release\\dist\\python', 'G:\\research_files\\academic_work\\git_repositories\\mitsuba_renderer_folder\\mitsuba2', 'C:\\Users\\ekin4\\.conda\\envs\\test_exr_mitsuba2\\python38.zip', 'C:\\Users\\ekin4\\.conda\\envs\\test_exr_mitsuba2\\DLLs', 'C:\\Users\\ekin4\\.conda\\envs\\test_exr_mitsuba2\\lib', 'C:\\Users\\ekin4\\.conda\\envs\\test_exr_mitsuba2', 'C:\\Users\\ekin4\\.conda\\envs\\test_exr_mitsuba2\\lib\\site-packages'] ```
At the moment, not a big priority. I have set up a separate environment for manipulating `.exr` images, which, for now, is viable. The convenience of using OpenEXR has been...
Swapping out OpenEXR for Bitmap worked superbly, much easier interface too. Thanks! Unfortunately, I ran into a similar issue involving pytorch (my script loads exr images into pytorch tensors). I...
I figured out how to make `asmjit` compile as a static library. Essentially, the preprocessor variable `ASMJIT_STATIC` is not correctly defined when `asmjit/asmjit.h` is imported in `include/mitsuba/core/jit.h`, adding the following...
So I've been looking into this the past few days and I've essentially modified the `volpathmis` integrator by adding volume emitter sampling and emission contribution for rays passing through a...
I see now how photo matching might be tricky :sweat_smile: With regards to with and without emitter sampling, are you referring to rendering without the emitter in the scene or...
I've now tried doing that and have set up a test scene with a pure volume emitter and a pure surface emitter enclosed inside a sphere with an attached `irradiancemeter`...