You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi!
Please check below codes. I think it seems to be a bug..
Camera.py : Line 120 ~
if sensorsize is not None:
self._rhou = sensorsize[0] / self.imagesize[1]
self._rhov = sensorsize[1] / self.imagesize[0]
else:
Why self._rhou is assigned by sensorsize[0] / self.imagesize[1] ?? I think self.imagesize index can be wrong.
I think it will be modified like this (Is it correct ??)
self._rhou = sensorsize[0] / self.imagesize[0]
self._rhov = sensorsize[1] / self.imagesize[1]
Please check whether it is a bug or not.
Thanks. :)
The text was updated successfully, but these errors were encountered:
Hi!
Please check below codes. I think it seems to be a bug..
Camera.py : Line 120 ~
Why self._rhou is assigned by sensorsize[0] / self.imagesize[1] ?? I think self.imagesize index can be wrong.
I think it will be modified like this (Is it correct ??)
self._rhou = sensorsize[0] / self.imagesize[0]
self._rhov = sensorsize[1] / self.imagesize[1]
Please check whether it is a bug or not.
Thanks. :)
The text was updated successfully, but these errors were encountered: