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
The following code shows cameras with parts of their lenses drawn on incorrect positions (using spatialmath 1.1.11):
import numpy as np
from machinevisiontoolbox.Camera import CentralCamera
R = np.eye(3)
for i in range(2):
t = np.array([i, 1, 0])
pose = SE3.Rt(R, t)
CentralCamera.plot(pose=pose, scale=0.5)
The following code shows cameras with parts of their lenses drawn on incorrect positions (using spatialmath 1.1.11):
I think the problem is here:
There seems to be a missing
pose=pose
in line 1217. When I add that, I get correctly drawn lenses:The text was updated successfully, but these errors were encountered: