forked from NVIDIA-ISAAC-ROS/isaac_ros_visual_slam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVisualSlamStatus.msg
More file actions
22 lines (17 loc) · 866 Bytes
/
VisualSlamStatus.msg
File metadata and controls
22 lines (17 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This is a status message which gives insights about tracker status and execution time which can help in diagnostics and profiling.
# The frame id in the header is used as the reference frame of both the transforms below.
std_msgs/Header header
# Pure visual odometry return code:
# 0 - Unknown state
# 1 - Success
# 2 - Failed
# 3 - Success but invalidated by IMU
uint8 vo_state
# The total time it takes to process the input frames to output messages in seconds.
float64 node_callback_execution_time
# Time it takes to get current pose out of cuVSLAM using pure visual slam tracking in seconds.
float64 track_execution_time
# Mean time to get poses out of cuVSLAM using pure visual slam tracking in seconds.
float64 track_execution_time_mean
# Max time to get poses out of cuVSLAM using pure visual slam tracking in seconds.
float64 track_execution_time_max