Skip to content

Commit

Permalink
Move back to the transformation for the blender addon
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaBartolomei committed Jan 29, 2020
1 parent 4877cda commit 01eb4d7
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions scripts/blender/visensor_sim_blender_addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,9 @@ class VISimCamera():
frequency_reduction_factor = 99 # if 10 then it is 10 times SLOWER than the imu that runs at 200Hz
height = 480
width = 752
#transform_ImuCamera = [0, -1, 0, 0, #frontal camera in ros standard
# -1, 0, 0, 0,
# 0, 0, -1, 0,
# 0, 0, 0, 1]
transform_ImuCamera = [0, 0, 1, 0, #frontal camera in ros standard
transform_ImuCamera = [0, -1, 0, 0, #frontal camera in ros standard
-1, 0, 0, 0,
0, -1, 0, 0,
0, 0, -1, 0,
0, 0, 0, 1]
#todo add param with the delay between the imu and image

Expand Down Expand Up @@ -664,3 +660,4 @@ def unregister():

if __name__ == "__main__":
register()

0 comments on commit 01eb4d7

Please sign in to comment.