How to translate camera in pyBullet

805 Views Asked by At

Currently in debug visualizer, I know I can drag the mouse to swivel the rotation of the camera. Additionally, I can use the mouse wheel to zoom in and out.

But what about translating the camera? Say, along the XYZ world frame axises. Or even along the XYZ camera frame axises. This would make focusing on my object much much easier in the visual debugger. Is this possible?

2

There are 2 best solutions below

0
On

One solution I implemented uses keystroke events as shown here to reset the target position at least along the X and Y axis

keys = p.getKeyboardEvents()
cam = p.getDebugVisualizerCamera()
#Keys to change camera
if keys.get(100):  #D
   xyz = cam[11]
   x= float(xyz[0]) + 0.125
   y = xyz[1]
   z = xyz[2]
   p.resetDebugVisualizerCamera(cameraYaw = cam[8], cameraPitch= cam[9],cameraDistance = cam[10],cameraTargetPosition=[x,y,z])
if keys.get(97):   #A
   xyz = cam[11]
   x= float(xyz[0]) - 0.125
   y = xyz[1]
   z = xyz[2]
   p.resetDebugVisualizerCamera(cameraYaw = cam[8], cameraPitch= cam[9],cameraDistance = cam[10],cameraTargetPosition=[x,y,z])
if keys.get(99):   #C
   xyz = cam[11]
   x = xyz[0] 
   y = float(xyz[1]) + 0.125
   z = xyz[2]
   p.resetDebugVisualizerCamera(cameraYaw = cam[8], cameraPitch= cam[9],cameraDistance = cam[10],cameraTargetPosition=[x,y,z])
if keys.get(102):  #F
   xyz = cam[11]
   x = xyz[0] 
   y = float(xyz[1]) - 0.125
   z = xyz[2]
   p.resetDebugVisualizerCamera(cameraYaw = cam[8], cameraPitch= cam[9],cameraDistance = cam[10],cameraTargetPosition=[x,y,z]) 
1
On

A bit late but you can hold Ctrl (or Alt) and move the camera by clicking and dragging the Mouse wheel.