-
In the documentation for the Additionally, I cannot see where the variables |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @coult099 , Sensors can be provided with However, please keep in mind while Mitsuba 3 does indeed sample rays over the shutter time interval (if you choose to set them), there are currently no native plugins that utilise this information. So for instance, you won't be able to simulate motion blur effects from shapes that move over that time interval. More importantly, the films that are provided don't simulate the effect of radiant exposure either, so that however long you set your exposure time doesn't affect the final output. You would need to modify or add new sensors to model these additional effects (artifacts) of physical cameras. |
Beta Was this translation helpful? Give feedback.
Hi @coult099 ,
Sensors can be provided with
shutter_open
andshutter_close
parameters during initialisation. They are both default initialised to0
insensor.cpp
.However, please keep in mind while Mitsuba 3 does indeed sample rays over the shutter time interval (if you choose to set them), there are currently no native plugins that utilise this information. So for instance, you won't be able to simulate motion blur effects from shapes that move over that time interval.
More importantly, the films that are provided don't simulate the effect of radiant exposure either, so that however long you set your exposure time doesn't affect the final output. You would need to modify or add new senso…