-
Notifications
You must be signed in to change notification settings - Fork 164
Home
Also see the other pages documenting the individual features.
In the following, we will used LMB for the left mouse button, MMB for middle mouse button, and RMB for the right mouse button. Usually it is meant that you click with with the respective button to activate the functionality.
When loading a dataset, the data must be organized as follows:
point cloud folder ├── velodyne/ -- directory containing ".bin" files with Velodyne point clouds. ├── labels/ [optional] -- label directory, will be generated if not present. ├── image_2/ [optional] -- directory containing ".png" files from the color camera. ├── image_3/ [optional] -- directory containing ".png" files from the other color camera (there are stereo cameras mounted on the car). ├── calib.txt [optional] -- calibration of velodyne vs. camera. needed for projection of point cloud into camera. └── poses.txt -- file containing the poses of every scan, see below on how to obtain them.
To obtain the poses.txt go to
http://jbehley.github.io/projects/surfel_mapping/
and download the "Frame-to-Model (with loop closure)" poses.
The rss2018_frame2model_loop
folder contains text files of the form
00.txt, 01.txt, 02.txt, ...
, choose the correct one for your sequence,
move it to your point cloud folder and rename it to poses.txt
.
There are three colored vectors which in the tile-coordinate system correspond to:
- red vector for the x-direction
- green vector for the y-direction
- blue vector for the z-direction (Warning: In the OpenGL code the coordinates are different, red=x, blue=y, green=z (?))
In the console output you will see the tile-coordinates of the currently selected tile.
For example, 200, -100, 50
denotes the tile at
x = 200 (red direction), y = -100 (green direction)
with tile size = 50
.
As the whole point cloud contains billions of points, we use a tile to represent a small part of the point cloud. In the tile selection view on the left side, you can select square to load all point inside the selected tile. The currently selected tile is highlighted by a orange border.
The red line running through the tiles shows the path of the car driving through the scene.
You have to hold the Ctrl-button for moving around in the scene. Moving is still possible even while having the brush or polygon tool selected.
The following actions will change the viewpoint of the camera: | [[/images/LMB_HV_ctrl.png| Ctrl + LMB]] | Move in the x-y-direction relative to the camera angle (stay in z=constant plane) | | [[/images/MMB_HV_ctrl.png| Ctrl + MMB]] | Move in the y-z-direction relative to the camera angle (stay in x=constant plane) | | [[/images/RMB_HV_ctrl.png| Ctrl + RMB]] | Change viewing angle of the camera | | [[/images/Scroll_ctrl.png| Ctrl + Scroll]] | Zoom in/out |
The following actions will change the viewpoint of the camera: | [[/images/MMB_HV_ctrl.png| Ctrl + MMB]] | Rotate camera | | [[/images/RMB_HV_ctrl.png| Ctrl + RMB]] | Translate camera relative to the camera view | | [[/images/Scroll_ctrl.png| Ctrl + Scroll]] | Zoom in/out |