From 4af4a12873f22029eba29b3db2c1dcf19a9ae44e Mon Sep 17 00:00:00 2001 From: cbrxyz <52760912+cbrxyz@users.noreply.github.com> Date: Fri, 16 Feb 2024 22:23:43 +0000 Subject: [PATCH] Updating docs to d753bd4559210dd046a8b2adf5a4e9fb63c9417c --- docs/_modules/axros/action.html | 20 +++++++++---------- docs/_modules/axros/serviceclient.html | 2 +- docs/_modules/mil_misc_tools/download.html | 1 + .../mil_passive_sonar/scripts/triggering.html | 4 ++-- docs/_modules/mil_ros_tools/cv_debug.html | 1 + .../_modules/mil_ros_tools/image_helpers.html | 2 +- docs/_modules/mil_ros_tools/init_helpers.html | 1 + docs/_modules/mil_usb_to_can/sub8/utils.html | 12 ++++------- .../mil_vision_tools/color_classifier.html | 2 +- .../mil_vision_tools/shape_finder.html | 14 ++++++------- .../mil_vision_tools/vision_node.html | 2 +- .../nodes/path_planner.html | 2 +- .../ros_alarms/nodes/alarm_server.html | 6 +++--- .../marker_occ_grid.html | 3 +-- .../passive_sonar/passive_sonar.rst.txt | 4 ++-- docs/_sources/electrical/onboarding.md.txt | 2 +- .../indyav_path/path_recorder.rst.txt | 2 +- docs/_sources/navigator/lessons22.md.txt | 2 +- .../software/adding_documentation.md.txt | 2 +- docs/_sources/software/getting_started.md.txt | 2 +- docs/_sources/software/help.md.txt | 2 +- .../_sources/software/noetic_migration.md.txt | 2 +- docs/design/passive_sonar/passive_sonar.html | 6 +++--- docs/electrical/onboarding.html | 2 +- .../planning/indyav_path/path_recorder.html | 2 +- docs/navigator/lessons22.html | 2 +- docs/reference/axros/api.html | 4 ++-- docs/reference/images.html | 2 +- docs/reference/pathplanning.html | 2 +- docs/reference/vision.html | 6 +++--- docs/searchindex.js | 2 +- docs/software/adding_documentation.html | 2 +- docs/software/getting_started.html | 2 +- docs/software/help.html | 2 +- docs/software/noetic_migration.html | 2 +- 35 files changed, 62 insertions(+), 64 deletions(-) diff --git a/docs/_modules/axros/action.html b/docs/_modules/axros/action.html index 44d4b64..e733790 100644 --- a/docs/_modules/axros/action.html +++ b/docs/_modules/axros/action.html @@ -109,7 +109,7 @@

Source code for axros.action

     _action_client: ActionClient[types.Goal, types.Feedback, types.Result]
     _goal: types.Goal
     _goal_id: str
-    _feedback_futs: list[asyncio.Future[types.Feedback]]
+    _feedback_futs: list[asyncio.Future[types.ActionFeedback[types.Feedback]]]
 
     def __init__(
         self,
@@ -162,14 +162,14 @@ 

Source code for axros.action

     def _status_callback(self, status):
         del status
 
-    def _result_callback(self, status, result: types.Result):
+    def _result_callback(self, status, result: types.ActionResult[types.Result]):
         del status
         self.forget()
 
         if not self._result_fut.done():
             self._result_fut.set_result(result)
 
-    def _feedback_callback(self, status, feedback: types.Feedback):
+    def _feedback_callback(self, status, feedback: types.ActionFeedback):
         del status
 
         old, self._feedback_futs = self._feedback_futs, []
@@ -622,7 +622,7 @@ 

Source code for axros.action

             feedback_msg.feedback = feedback
         self._feedback_pub.publish(feedback_msg)
- def _publish_status(self, goal=None) -> None: + def _publish_status(self, goal=None): msg = GoalStatusArray() if self.goal: msg.status_list.append(self.goal.status_msg()) @@ -712,7 +712,7 @@

Source code for axros.action

             self._process_goal_callback()
-
[docs]class ActionClient(Generic[types.Goal, types.Feedback, types.Result]): +
[docs]class ActionClient(Generic[types.Goal, types.Result, types.Feedback]): """ Representation of an action client in axros. This works in conjunction with the :class:`~.SimpleActionServer` by sending the servers goals to execute. @@ -721,7 +721,7 @@

Source code for axros.action

     """
 
     def __init__(
-        self, node_handle: NodeHandle, name: str, action_type: type[types.Action[types.Goal, types.Feedback, types.Result]]
+        self, node_handle: NodeHandle, name: str, action_type: type[types.Action]
     ):
         """
         Args:
@@ -791,23 +791,23 @@ 

Source code for axros.action

     def __str__(self) -> str:
         return f"<axros.ActionClient at 0x{id(self):0x}, name='{self._name}' running={self.is_running()} node_handle={self._node_handle}>"
 
-    def _status_callback(self, msg: GoalStatusArray) -> None:
+    def _status_callback(self, msg: GoalStatusArray):
         for status in msg.status_list:
             if status.goal_id.id in self._goal_managers:
                 manager = self._goal_managers[status.goal_id.id]
                 manager._status_callback(status.status)
 
-    def _result_callback(self, msg: types.ActionResult[types.Result]) -> None:
+    def _result_callback(self, msg):
         if msg.status.goal_id.id in self._goal_managers:
             manager = self._goal_managers[msg.status.goal_id.id]
             manager._result_callback(msg.status.status, msg.result)
 
-    def _feedback_callback(self, msg: types.ActionFeedback[types.Feedback]):
+    def _feedback_callback(self, msg):
         if msg.status.goal_id.id in self._goal_managers:
             manager = self._goal_managers[msg.status.goal_id.id]
             manager._feedback_callback(msg.status.status, msg.feedback)
 
-
[docs] def send_goal(self, goal: types.Goal) -> GoalManager[types.Goal, types.Feedback, types.Result]: +
[docs] def send_goal(self, goal: types.Goal) -> GoalManager: """ Sends a goal to a goal manager. The goal manager is responsible for the communication between the action client and server; it assists in this process diff --git a/docs/_modules/axros/serviceclient.html b/docs/_modules/axros/serviceclient.html index 239eb4b..c146930 100644 --- a/docs/_modules/axros/serviceclient.html +++ b/docs/_modules/axros/serviceclient.html @@ -219,7 +219,7 @@

Source code for axros.serviceclient

         while True:
             try:
                 await self._node_handle.master_proxy.lookup_service(self._name)
-            except (rosxmlrpc.XMLRPCException, rosxmlrpc.ROSMasterError):
+            except rosxmlrpc.XMLRPCException:
                 await util.wall_sleep(0.1)  # XXX bad
                 continue
             else:
diff --git a/docs/_modules/mil_misc_tools/download.html b/docs/_modules/mil_misc_tools/download.html
index bd173f1..96ec264 100644
--- a/docs/_modules/mil_misc_tools/download.html
+++ b/docs/_modules/mil_misc_tools/download.html
@@ -91,6 +91,7 @@ 

Source code for mil_misc_tools.download

 [3] Download a file via http
     http://stackoverflow.com/questions/22676
 """
+
 import io as StringIO
 import os
 import urllib.request
diff --git a/docs/_modules/mil_passive_sonar/scripts/triggering.html b/docs/_modules/mil_passive_sonar/scripts/triggering.html
index 5ce9cfa..b356c2e 100644
--- a/docs/_modules/mil_passive_sonar/scripts/triggering.html
+++ b/docs/_modules/mil_passive_sonar/scripts/triggering.html
@@ -176,7 +176,7 @@ 

Source code for mil_passive_sonar.scripts.triggering

self.enabled = rospy.get_param("~enable_on_launch") # Attributes about our target frequency range - # target Frquency in Hz + # target Frequency in Hz self.target = rospy.get_param("~target_frequency") # tolerance around that frequerncy in Hz tolerance = rospy.get_param("~frequency_tolerance") @@ -201,7 +201,7 @@

Source code for mil_passive_sonar.scripts.triggering

self.v_sound = rospy.get_param("v_sound") # Misc attributes - # minimum gradient of the max convolution wrt time to trigger a time of arivals calculation + # minimum gradient of the max convolution wrt time to trigger a time of arrivals calculation self.threshold = rospy.get_param("~threshold") self.trigger_offset = rospy.get_param("~trigger_offset") # how far after the triggering time to make upper bound of samples at triggering in sec diff --git a/docs/_modules/mil_ros_tools/cv_debug.html b/docs/_modules/mil_ros_tools/cv_debug.html index 2180359..1c1a57c 100644 --- a/docs/_modules/mil_ros_tools/cv_debug.html +++ b/docs/_modules/mil_ros_tools/cv_debug.html @@ -81,6 +81,7 @@

Source code for mil_ros_tools.cv_debug

 """
 Shows images for debugging purposes.
 """
+
 import sys
 from typing import Optional
 
diff --git a/docs/_modules/mil_ros_tools/image_helpers.html b/docs/_modules/mil_ros_tools/image_helpers.html
index 684d508..89c615d 100644
--- a/docs/_modules/mil_ros_tools/image_helpers.html
+++ b/docs/_modules/mil_ros_tools/image_helpers.html
@@ -178,7 +178,7 @@ 

Source code for mil_ros_tools.image_helpers

         last_image_time (genpy.Time): The time of the last image received.
         im_sub (rospy.Subscriber): The subscriber to the image topic. The topic
             name and queue size are received through the constructor.
-        info_sub (rospy.Susbcriber): The subscriber to the camera info topic.
+        info_sub (rospy.Subscriber): The subscriber to the camera info topic.
             The topic name is derived from the root of the supplied topic and the
             queue size is derived from the constructor.
         bridge (CvBridge): The bridge between OpenCV and ROS.
diff --git a/docs/_modules/mil_ros_tools/init_helpers.html b/docs/_modules/mil_ros_tools/init_helpers.html
index 9b5f378..de63d43 100644
--- a/docs/_modules/mil_ros_tools/init_helpers.html
+++ b/docs/_modules/mil_ros_tools/init_helpers.html
@@ -82,6 +82,7 @@ 

Source code for mil_ros_tools.init_helpers

 This module provides functions which help to ensure that resources are available
 when needed.
 """
+
 import time
 from typing import Any, Optional
 
diff --git a/docs/_modules/mil_usb_to_can/sub8/utils.html b/docs/_modules/mil_usb_to_can/sub8/utils.html
index c8a135c..593d86b 100644
--- a/docs/_modules/mil_usb_to_can/sub8/utils.html
+++ b/docs/_modules/mil_usb_to_can/sub8/utils.html
@@ -194,13 +194,11 @@ 

Source code for mil_usb_to_can.sub8.utils

 
     @overload
     @classmethod
-    def _unpack_payload(cls, data: Literal[b""]) -> None:
-        ...
+    def _unpack_payload(cls, data: Literal[b""]) -> None: ...
 
     @overload
     @classmethod
-    def _unpack_payload(cls, data: bytes) -> bytes:
-        ...
+    def _unpack_payload(cls, data: bytes) -> bytes: ...
 
     @classmethod
     def _unpack_payload(cls, data: bytes) -> bytes | None:
@@ -535,13 +533,11 @@ 

Source code for mil_usb_to_can.sub8.utils

 
     @overload
     @classmethod
-    def from_bytes(cls, data: Literal[b""]) -> None:
-        ...
+    def from_bytes(cls, data: Literal[b""]) -> None: ...
 
     @overload
     @classmethod
-    def from_bytes(cls: type[T], data: bytes) -> T:
-        ...
+    def from_bytes(cls: type[T], data: bytes) -> T: ...
 
     @classmethod
     def from_bytes(cls: type[T], data: bytes) -> T | None:
diff --git a/docs/_modules/mil_vision_tools/color_classifier.html b/docs/_modules/mil_vision_tools/color_classifier.html
index d700a4e..efca18c 100644
--- a/docs/_modules/mil_vision_tools/color_classifier.html
+++ b/docs/_modules/mil_vision_tools/color_classifier.html
@@ -174,7 +174,7 @@ 

Source code for mil_vision_tools.color_classifier

[docs] def feature_probabilities(self, features: np.ndarray) -> List[float]: """ - Allows child classes to give probabilties for each possible class given + Allows child classes to give probabilities for each possible class given a features vector, instead of just one classification. By default, gives 1.0 to classified class and 0.0 to others. diff --git a/docs/_modules/mil_vision_tools/shape_finder.html b/docs/_modules/mil_vision_tools/shape_finder.html index 19d2d1e..252122e 100644 --- a/docs/_modules/mil_vision_tools/shape_finder.html +++ b/docs/_modules/mil_vision_tools/shape_finder.html @@ -293,7 +293,7 @@

Source code for mil_vision_tools.shape_finder

cam (Optional[PinholeCameraModel]): The camera model. rectified (bool): If ``cam`` is set, set True if corners were found in an already rectified image (image_rect_color topic). - instrinsics (np.ndarray): Camera intrinisic matrix. + intrinsics (np.ndarray): Camera intrinisic matrix. dist_coeffs (np.ndarray): Camera distortion coefficients. Returns: @@ -384,12 +384,12 @@

Source code for mil_vision_tools.shape_finder

self.model_2D = np.zeros((50, 1, 2), dtype=np.int) # Approximate an ellipse with 50 points, so that verify_contour is reasonable fast still for idx, theta in enumerate(np.linspace(0.0, 2.0 * np.pi, num=50)): - self.model_2D[idx][0][ - 0 - ] = self.length * 0.5 * scale + self.length * 0.5 * scale * np.cos(theta) - self.model_2D[idx][0][ - 1 - ] = self.width * 0.5 * scale + self.width * 0.5 * scale * np.sin(theta) + self.model_2D[idx][0][0] = ( + self.length * 0.5 * scale + self.length * 0.5 * scale * np.cos(theta) + ) + self.model_2D[idx][0][1] = ( + self.width * 0.5 * scale + self.width * 0.5 * scale * np.sin(theta) + ) def get_corners(self, contour, debug_image=None): """ diff --git a/docs/_modules/mil_vision_tools/vision_node.html b/docs/_modules/mil_vision_tools/vision_node.html index ac2b8f2..d43d90a 100644 --- a/docs/_modules/mil_vision_tools/vision_node.html +++ b/docs/_modules/mil_vision_tools/vision_node.html @@ -107,7 +107,7 @@

Source code for mil_vision_tools.vision_node

    is needed/available in your application.
 
     Args:
-        name (str): Name of the identifed object.
+        name (str): Name of the identified object.
         attributes (str): Attributes to attach to message, the purpose and value
             of this attribute will vary by application. Defaults to an empty string.
         confidence (Optional[float]): Float between 0 and 1 describing the confidence
diff --git a/docs/_modules/navigator_path_planner/nodes/path_planner.html b/docs/_modules/navigator_path_planner/nodes/path_planner.html
index ea570e0..654a905 100644
--- a/docs/_modules/navigator_path_planner/nodes/path_planner.html
+++ b/docs/_modules/navigator_path_planner/nodes/path_planner.html
@@ -1150,7 +1150,7 @@ 

Source code for navigator_path_planner.nodes.path_planner

[docs] def action_check(self, _: rospy.timer.TimerEvent) -> None: """ Manages action preempting. Serves as the callback to a Timer operating - opereating every self.revisit_period seconds. + operating every self.revisit_period seconds. """ if self.preempted or not self.move_server.is_active(): return diff --git a/docs/_modules/ros_alarms/nodes/alarm_server.html b/docs/_modules/ros_alarms/nodes/alarm_server.html index d8253fa..07ce57d 100644 --- a/docs/_modules/ros_alarms/nodes/alarm_server.html +++ b/docs/_modules/ros_alarms/nodes/alarm_server.html @@ -258,9 +258,9 @@

Source code for ros_alarms.nodes.alarm_server

if alarm_name in self.alarms: self.alarms[alarm_name].update(h.initial_alarm) else: - self.alarms[ - alarm_name - ] = h.initial_alarm # Update even if already added to server + self.alarms[alarm_name] = ( + h.initial_alarm + ) # Update even if already added to server elif ( alarm_name not in self.alarms ): # Add default initial if not there already diff --git a/docs/_modules/subjugator_vision_tools/marker_occ_grid.html b/docs/_modules/subjugator_vision_tools/marker_occ_grid.html index 81b29b5..9f4553b 100644 --- a/docs/_modules/subjugator_vision_tools/marker_occ_grid.html +++ b/docs/_modules/subjugator_vision_tools/marker_occ_grid.html @@ -254,7 +254,7 @@

Source code for subjugator_vision_tools.marker_occ_grid

self.poly_generator = self.polygon_generator() return [0, False, srv.intial_position] - # We search at 1.5 * r so that there is some overlay in the search feilds. + # We search at 1.5 * r so that there is some overlay in the search fields. np_pose = msg_helpers.pose_to_numpy(srv.intial_position) rot_mat = make_2D_rotation( tf.transformations.euler_from_quaternion(np_pose[1])[2], @@ -329,7 +329,6 @@

Source code for subjugator_vision_tools.marker_occ_grid

class MarkerOccGrid(OccGridUtils): - """ Handles updating occupancy grid when new data comes in. TODO: Upon call can return some path to go to in order to find them. diff --git a/docs/_sources/design/passive_sonar/passive_sonar.rst.txt b/docs/_sources/design/passive_sonar/passive_sonar.rst.txt index 5223687..6f23f38 100644 --- a/docs/_sources/design/passive_sonar/passive_sonar.rst.txt +++ b/docs/_sources/design/passive_sonar/passive_sonar.rst.txt @@ -78,8 +78,8 @@ Configuration ************* All parameters that are expected to be changed in tuining are ROS Params initialized in ``passive_sonar.yaml`` -To make a custom configation -^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +To make a custom configuration +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ * ``roscd subjugator_launch`` diff --git a/docs/_sources/electrical/onboarding.md.txt b/docs/_sources/electrical/onboarding.md.txt index c48026a..45d73e7 100644 --- a/docs/_sources/electrical/onboarding.md.txt +++ b/docs/_sources/electrical/onboarding.md.txt @@ -20,7 +20,7 @@ including meeting times. ## Join the electrical GitHub Unlike the software and mechanical teams (who share a GitHub repository), we use -a separate repository for the electrical team. As a resut, you will need to be added +a separate repository for the electrical team. As a result, you will need to be added to this organization. Once you're in Slack (or you've come to the lab), ask an electrical leader to add you to the GitHub organization. The organization can be found [here](https://github.com/uf-mil-electrical). diff --git a/docs/_sources/indyav/software/planning/indyav_path/path_recorder.rst.txt b/docs/_sources/indyav/software/planning/indyav_path/path_recorder.rst.txt index 77c3d4e..d1b5f1a 100644 --- a/docs/_sources/indyav/software/planning/indyav_path/path_recorder.rst.txt +++ b/docs/_sources/indyav/software/planning/indyav_path/path_recorder.rst.txt @@ -33,7 +33,7 @@ Basic Usage Example - Visualize this new topic in rviz by clicking `Add` and then `/odom2 -> Odometry` -- Watch the red arrow advance from where the sub started to where the sub stopped updting approximately 10 times a second. +- Watch the red arrow advance from where the sub started to where the sub stopped updating approximately 10 times a second. Source Files ^^^^^^^^^^^^ diff --git a/docs/_sources/navigator/lessons22.md.txt b/docs/_sources/navigator/lessons22.md.txt index 1c92fc2..2560754 100644 --- a/docs/_sources/navigator/lessons22.md.txt +++ b/docs/_sources/navigator/lessons22.md.txt @@ -62,7 +62,7 @@ future teams to learn from! It is quicker to tell when tools have gone missing (as each tool now has a dedicated spot in the organizer), and which tool is missing. Furthermore, it becomes easier for software members, electrical members, and mentors to find - tools, even if they maybe are not acquianted with a deep knowledge of the + tools, even if they maybe are not acquainted with a deep knowledge of the mechanical team. * **Focus on bringing less and staying more organized.** - At RobotX 2022, we were one of the teams who had brought the most equipment, yet we had a hard diff --git a/docs/_sources/software/adding_documentation.md.txt b/docs/_sources/software/adding_documentation.md.txt index cc1a1fd..d91bf76 100644 --- a/docs/_sources/software/adding_documentation.md.txt +++ b/docs/_sources/software/adding_documentation.md.txt @@ -100,5 +100,5 @@ $ ./scripts/build_docs --scratch ``` ## Contributing changes -Now that you have made and verifed your changes, follow the [contributing guide](contributing) +Now that you have made and verified your changes, follow the [contributing guide](contributing) to add your changes to the repository. diff --git a/docs/_sources/software/getting_started.md.txt b/docs/_sources/software/getting_started.md.txt index 1215b27..a408456 100644 --- a/docs/_sources/software/getting_started.md.txt +++ b/docs/_sources/software/getting_started.md.txt @@ -420,7 +420,7 @@ launches the Gazebo GUI - aka, the thing you will actually interact with! If all goes according to plan, you should see our robot in its own little world! ## Installing developer tools -After you have verified that your Git setup is working appopriately, take a look +After you have verified that your Git setup is working appropriately, take a look at installing some developer tools on the [Developer Tools](/software/devtools) page. diff --git a/docs/_sources/software/help.md.txt b/docs/_sources/software/help.md.txt index 060f837..f8250fa 100644 --- a/docs/_sources/software/help.md.txt +++ b/docs/_sources/software/help.md.txt @@ -63,7 +63,7 @@ for examples of it being used. ## Search the internet If your problem is not MIL-specific (issue with Linux, ROS, C++, etc), -somone has most likely had the same problem and written about it on the internet. +someone has most likely had the same problem and written about it on the internet. You'll be surprised how often you can fix your issue by Googling the error. ## Search Slack diff --git a/docs/_sources/software/noetic_migration.md.txt b/docs/_sources/software/noetic_migration.md.txt index 6a79ec1..6a93a86 100644 --- a/docs/_sources/software/noetic_migration.md.txt +++ b/docs/_sources/software/noetic_migration.md.txt @@ -45,7 +45,7 @@ before you commit. Great, the code is now pretty! :D -If you ran `python-modernize`, it will have suggested some changes to you, indcated +If you ran `python-modernize`, it will have suggested some changes to you, indicated by `+` and `-` signs. It may look something like this: ```diff diff --git a/docs/design/passive_sonar/passive_sonar.html b/docs/design/passive_sonar/passive_sonar.html index f6d1adb..3b53310 100644 --- a/docs/design/passive_sonar/passive_sonar.html +++ b/docs/design/passive_sonar/passive_sonar.html @@ -86,7 +86,7 @@

Table of Contents

  • Configuration
  • @@ -182,8 +182,8 @@
    To view the cross correlations between the hydrophones

    Configuration

    All parameters that are expected to be changed in tuining are ROS Params initialized in passive_sonar.yaml

    -
    -

    To make a custom configation

    +
    +

    To make a custom configuration

    diff --git a/docs/navigator/lessons22.html b/docs/navigator/lessons22.html index ce93e53..db79014 100644 --- a/docs/navigator/lessons22.html +++ b/docs/navigator/lessons22.html @@ -162,7 +162,7 @@

    Mechanical Improvements
  • Focus on bringing less and staying more organized. - At RobotX 2022, we were one of the teams who had brought the most equipment, yet we had a hard diff --git a/docs/reference/axros/api.html b/docs/reference/axros/api.html index b84efb9..f6959d8 100644 --- a/docs/reference/axros/api.html +++ b/docs/reference/axros/api.html @@ -1948,7 +1948,7 @@

    ActionClientwait_for_server

  • -class axros.ActionClient(node_handle: NodeHandle, name: str, action_type: type[types.Action[types.Goal, types.Feedback, types.Result]])[source]
    +class axros.ActionClient(node_handle: NodeHandle, name: str, action_type: type[types.Action])[source]

    Representation of an action client in axros. This works in conjunction with the SimpleActionServer by sending the servers goals to execute. In response, the client receives feedback updates and the final result of the goal, @@ -1989,7 +1989,7 @@

    ActionClient
    -send_goal(goal: Goal) GoalManager[Goal, Feedback, Result][source]
    +send_goal(goal: Goal) GoalManager[source]

    Sends a goal to a goal manager. The goal manager is responsible for the communication between the action client and server; it assists in this process by maintaining individual asyncio.Future objects.

    diff --git a/docs/reference/images.html b/docs/reference/images.html index faa4b93..7e5434d 100644 --- a/docs/reference/images.html +++ b/docs/reference/images.html @@ -552,7 +552,7 @@

    Image_Subscriber
    Type
    -

    rospy.Susbcriber

    +

    rospy.Subscriber

    diff --git a/docs/reference/pathplanning.html b/docs/reference/pathplanning.html index 359ecb0..dd69fab 100644 --- a/docs/reference/pathplanning.html +++ b/docs/reference/pathplanning.html @@ -661,7 +661,7 @@

    Node¶<
    -
    Manages action preempting. Serves as the callback to a Timer operating

    opereating every self.revisit_period seconds.

    +
    Manages action preempting. Serves as the callback to a Timer operating

    operating every self.revisit_period seconds.

    diff --git a/docs/reference/vision.html b/docs/reference/vision.html index 94b857f..a3252a3 100644 --- a/docs/reference/vision.html +++ b/docs/reference/vision.html @@ -331,7 +331,7 @@

    Utility Functions
    Parameters
      -
    • name (str) – Name of the identifed object.

    • +
    • name (str) – Name of the identified object.

    • attributes (str) – Attributes to attach to message, the purpose and value of this attribute will vary by application. Defaults to an empty string.

    • confidence (Optional[float]) – Float between 0 and 1 describing the confidence @@ -691,7 +691,7 @@

      ContourClassifier
      feature_probabilities(features: ndarray) List[float][source]
      -

      Allows child classes to give probabilties for each possible class given +

      Allows child classes to give probabilities for each possible class given a features vector, instead of just one classification. By default, gives 1.0 to classified class and 0.0 to others.

      @@ -1930,7 +1930,7 @@

      RectFinderbool) – If cam is set, set True if corners were found in an already rectified image (image_rect_color topic).

    • -
    • instrinsics (np.ndarray) – Camera intrinisic matrix.

    • +
    • intrinsics (np.ndarray) – Camera intrinisic matrix.

    • dist_coeffs (np.ndarray) – Camera distortion coefficients.

    diff --git a/docs/searchindex.js b/docs/searchindex.js index 98d41a8..4319862 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["branding", "culture", "deprecated", "design/design", "design/odom_estimator/odom_estimator", "design/passive_sonar/passive_sonar", "design/pneumatic_board", "electrical/battery_charger", "electrical/index", "electrical/onboarding", "glossary", "index", "indyav/autonomy_architecture", "indyav/hardware/go_kart/electronics", "indyav/hardware/go_kart/mechanical", "indyav/hardware/go_kart/mechatronics", "indyav/hardware/hardware", "indyav/index", "indyav/onboarding", "indyav/software/control/control", "indyav/software/control/joydrive/joydrive", "indyav/software/localization", "indyav/software/perception", "indyav/software/planning/indyav_path/path", "indyav/software/planning/indyav_path/path_player", "indyav/software/planning/indyav_path/path_recorder", "indyav/software/planning/planning", "indyav/software/simulation/gazebo/gazebo", "indyav/software/simulation/simulation", "indyav/software/software", "infrastructure/ci", "infrastructure/file_server", "infrastructure/index", "infrastructure/network", "infrastructure/network_box", "infrastructure/shipping", "infrastructure/solar_park", "mechanical/index", "mechanical/maintenance", "mechanical/onboarding", "mechanical/resources", "navigator/drone", "navigator/index", "navigator/lessons22", "navigator/lidar", "navigator/networking", "navigator/reference", "navigator/testing_checklist", "navigator/vrx", "reference/actions", "reference/alarms", "reference/axros/api", "reference/axros/errors", "reference/axros/examples", "reference/axros/index", "reference/axros/resources", "reference/battery", "reference/can", "reference/exceptions", "reference/images", "reference/index", "reference/io", "reference/mathematics", "reference/messages", "reference/mission/core", "reference/mission/index", "reference/msghandlers", "reference/passivesonar", "reference/pathplanning", "reference/pcodar", "reference/pneumatic", "reference/poi", "reference/rc", "reference/resources", "reference/rviz", "reference/sabertooth", "reference/serial", "reference/services", "reference/vision", "software/adding_documentation", "software/apple_mseries_ubuntu_setup", "software/asyncio", "software/bash_style", "software/calibrating_cams", "software/contributing", "software/cpp_style", "software/devtools", "software/documentation_syntax", "software/extension_support", "software/gazebo_guide", "software/getting_started", "software/help", "software/index", "software/noetic_migration", "software/python_style", "software/resetubuntupass", "software/rostest", "software/rqt", "software/rtx_2080_drivers", "software/scripts", "software/submodule", "software/zobelisk", "subjugator/cameras", "subjugator/design", "subjugator/electrical", "subjugator/enabling", "subjugator/index", "subjugator/lessons19", "subjugator/lessons22", "subjugator/nav_tube", "subjugator/pid", "subjugator/reference", "subjugator/robosub", "subjugator/simulating", "subjugator/watercooling", "testingprocedures", "welcome"], "filenames": ["branding.rst", "culture.rst", "deprecated.rst", "design/design.rst", "design/odom_estimator/odom_estimator.rst", "design/passive_sonar/passive_sonar.rst", "design/pneumatic_board.md", "electrical/battery_charger.md", "electrical/index.rst", "electrical/onboarding.md", "glossary.rst", "index.rst", "indyav/autonomy_architecture.rst", "indyav/hardware/go_kart/electronics.rst", "indyav/hardware/go_kart/mechanical.rst", "indyav/hardware/go_kart/mechatronics.rst", "indyav/hardware/hardware.rst", "indyav/index.rst", "indyav/onboarding.rst", "indyav/software/control/control.rst", "indyav/software/control/joydrive/joydrive.rst", "indyav/software/localization.rst", "indyav/software/perception.rst", "indyav/software/planning/indyav_path/path.rst", "indyav/software/planning/indyav_path/path_player.rst", "indyav/software/planning/indyav_path/path_recorder.rst", "indyav/software/planning/planning.rst", "indyav/software/simulation/gazebo/gazebo.rst", "indyav/software/simulation/simulation.rst", "indyav/software/software.rst", "infrastructure/ci.md", "infrastructure/file_server.md", "infrastructure/index.rst", "infrastructure/network.md", "infrastructure/network_box.rst", "infrastructure/shipping.md", "infrastructure/solar_park.md", "mechanical/index.rst", "mechanical/maintenance.md", "mechanical/onboarding.md", "mechanical/resources.md", "navigator/drone.md", "navigator/index.rst", "navigator/lessons22.md", "navigator/lidar.md", "navigator/networking.md", "navigator/reference.rst", "navigator/testing_checklist.rst", "navigator/vrx.rst", "reference/actions.rst", "reference/alarms.rst", "reference/axros/api.rst", "reference/axros/errors.rst", "reference/axros/examples.rst", "reference/axros/index.rst", "reference/axros/resources.rst", "reference/battery.rst", "reference/can.rst", "reference/exceptions.rst", "reference/images.rst", "reference/index.rst", "reference/io.rst", "reference/mathematics.rst", "reference/messages.rst", "reference/mission/core.rst", "reference/mission/index.rst", "reference/msghandlers.rst", "reference/passivesonar.rst", "reference/pathplanning.rst", "reference/pcodar.rst", "reference/pneumatic.rst", "reference/poi.rst", "reference/rc.rst", "reference/resources.rst", "reference/rviz.rst", "reference/sabertooth.rst", "reference/serial.rst", "reference/services.rst", "reference/vision.rst", "software/adding_documentation.md", "software/apple_mseries_ubuntu_setup.md", "software/asyncio.md", "software/bash_style.md", "software/calibrating_cams.md", "software/contributing.md", "software/cpp_style.md", "software/devtools.md", "software/documentation_syntax.md", "software/extension_support.md", "software/gazebo_guide.md", "software/getting_started.md", "software/help.md", "software/index.rst", "software/noetic_migration.md", "software/python_style.md", "software/resetubuntupass.md", "software/rostest.md", "software/rqt.md", "software/rtx_2080_drivers.md", "software/scripts.md", "software/submodule.md", "software/zobelisk.md", "subjugator/cameras.md", "subjugator/design.rst", "subjugator/electrical.md", "subjugator/enabling.md", "subjugator/index.rst", "subjugator/lessons19.md", "subjugator/lessons22.md", "subjugator/nav_tube.rst", "subjugator/pid.rst", "subjugator/reference.rst", "subjugator/robosub.md", "subjugator/simulating.rst", "subjugator/watercooling.rst", "testingprocedures.md", "welcome.md"], "titles": ["Branding", "Culture", "Deprecated Projects", "Design", "odom_estimator", "Passive sonar", "MIL\u2019s Pneumatic Board", "Battery Charger", "Electrical", "Electrical Onboarding", "Glossary", "Machine Intelligence Lab", "Autonomy Architecture", "Electronics Documentation", "Mechanical Documentation", "Mechatronics Documentation", "Hardware", "Indy AV", "Getting Started on Indy AV", "Control", "IndyAV Joydrive Utility", "Localization", "Perception", "Path Package", "Path Player", "Path Recorder", "Planning", "IndyAV Gazebo Simulation", "Simulation", "Software", "Continuous Integration", "File Server", "Infrastructure", "MIL Network", "Network Box", "Shipping", "Solar Park", "Mechanical", "Maintenance", "Mechanical Onboarding", "Resources", "Drone Project", "NaviGator", "Lessons from RobotX 2022", "LIDAR", "Networking with Navigator", "Navigator Software Reference", "Testing Checklist", "VRX", "Actions", "ros_alarms - Stateful Alarm System", "API Reference", "Errors and Known Issues", "Examples", "axros - Independent extensions for ROS", "Managing Resources", "Battery Monitor", "mil_usb_to_can - USB to CAN Communication", "Exceptions", "Images", "Software Reference", "User Input/Output", "Mathematics", "Messages", "mil_missions_core - Base mission classes", "mil_missions - Mission System", "Message Handlers", "mil_passive_sonar - Passive Sonar", "lqrrt - Path Planning", "pcodar - Point Cloud Object Detection", "mil_pneumatic_actuator - Pneumatic Actuator Board", "mil_poi - POI Handling", "remote_control_lib - Remote Control", "Resource Management", "rviz", "sabertooth2x12 - Sabertooth 2x12", "Serial", "Services", "Computer Vision", "Updating Documentation", "Installing Ubuntu 18.04 on a Mac with an M-series processor (M1)", "An Introduction to Asyncio", "Bash Style Guide (In Progress)", "Calibrating Cameras", "Contributing Guide", "C++ Style Guide", "Developer Tools", "Documentation Syntax", "Extension Support", "Gazebo Guide", "Getting Started", "Getting Help", "Software", "Noetic Migration", "Python Style Guide", "Ubuntu Password Reset Guide", "Writing Unit Tests with rostest", "Implementing GUI Based Tools Using rqt", "Installing Drivers for RTX 2080", "Scripts", "Working with Git Submodules", "Accessing Zobelisk", "SubjuGator Cameras", "Software Design", "Electrical Design", "Enabling SubjuGator", "SubjuGator", "Lessons from RoboSub 2019", "Lessons from RoboSub 2022", "Nav Tube", "PID Controller", "Subjugator Software Reference", "RoboSub competition", "Simulating SubjuGator", "Watercooling", "SubjuGator Testing Procedures", "Welcome to MIL!"], "terms": {"thi": [0, 4, 5, 6, 8, 9, 10, 12, 18, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 38, 39, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 59, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 105, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116], "page": [0, 7, 8, 9, 10, 37, 39, 48, 79, 84, 87, 90, 91, 93, 96, 97, 105, 106, 116], "contain": [0, 27, 30, 34, 35, 43, 46, 48, 50, 51, 57, 59, 66, 67, 68, 69, 74, 76, 77, 78, 84, 85, 89, 90, 94, 97, 98, 101, 107, 108, 109, 110, 111], "link": [0, 2, 4, 51, 79, 84, 86, 89, 90, 93, 94, 111], "inform": [0, 1, 9, 10, 43, 46, 50, 51, 57, 59, 63, 66, 70, 78, 84, 86, 87, 89, 93, 94, 98, 105, 108, 111, 113, 116], "variou": [0, 3, 6, 30, 32, 50, 64, 85, 86, 87, 89, 90, 92, 93, 97, 102, 103], "standard": [0, 33, 35, 56, 70, 78, 81, 85, 94, 101, 108], "mil": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 17, 18, 31, 32, 34, 35, 37, 39, 42, 43, 46, 48, 57, 60, 71, 78, 79, 81, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 99, 100, 101, 105, 106], "s": [0, 4, 8, 9, 10, 11, 17, 18, 23, 30, 33, 35, 36, 41, 43, 46, 47, 49, 50, 51, 57, 63, 64, 66, 67, 68, 69, 70, 72, 74, 77, 78, 79, 81, 83, 84, 85, 86, 87, 89, 91, 93, 94, 96, 97, 100, 101, 102, 105, 108, 109, 110, 111, 114, 115, 116], "our": [0, 5, 8, 9, 10, 11, 23, 24, 30, 33, 34, 35, 36, 37, 38, 40, 41, 43, 48, 67, 79, 81, 84, 85, 86, 87, 90, 91, 93, 94, 96, 100, 101, 108, 109, 111, 116], "copi": [0, 78, 79, 84, 89, 90, 91, 100, 101], "without": [0, 1, 4, 34, 35, 43, 45, 50, 73, 78, 84, 85, 86, 87, 88, 90, 96, 108], "text": [0, 48, 51, 61, 78, 84, 94], "can": [0, 1, 4, 9, 10, 11, 20, 21, 24, 25, 30, 31, 33, 34, 35, 38, 39, 41, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 60, 61, 63, 64, 67, 68, 69, 70, 71, 74, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 105, 108, 109, 110, 111, 113, 116], "found": [0, 9, 11, 30, 39, 43, 46, 50, 51, 57, 59, 61, 63, 64, 67, 68, 69, 70, 73, 77, 78, 79, 83, 84, 86, 87, 93, 94, 96, 108, 110, 111, 116], "below": [0, 2, 20, 39, 46, 47, 50, 51, 57, 78, 79, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 98, 101, 103, 104, 109, 111, 114], "two": [0, 7, 38, 40, 46, 51, 53, 57, 59, 63, 64, 66, 68, 70, 78, 80, 81, 83, 84, 85, 87, 89, 90, 94, 99, 100, 102, 105, 108, 110, 111], "differ": [0, 9, 25, 50, 57, 64, 68, 77, 78, 81, 83, 85, 87, 89, 90, 93, 94, 97, 116], "format": [0, 20, 46, 51, 59, 61, 63, 64, 67, 71, 76, 77, 78, 84, 86, 87, 90, 93, 97, 108, 111], "ar": [0, 1, 2, 4, 5, 7, 10, 21, 23, 27, 28, 29, 30, 33, 34, 35, 39, 41, 42, 43, 45, 46, 48, 50, 51, 52, 54, 55, 57, 59, 61, 63, 64, 65, 67, 68, 69, 70, 71, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 100, 101, 102, 107, 108, 109, 110, 111, 112, 113, 116], "provid": [0, 6, 10, 12, 22, 30, 34, 41, 44, 45, 46, 48, 50, 51, 54, 57, 64, 66, 67, 68, 69, 71, 78, 81, 84, 86, 89, 90, 93, 94, 96, 97, 106, 110, 111, 116], "an": [0, 1, 4, 7, 9, 10, 11, 18, 21, 24, 30, 33, 34, 35, 38, 39, 41, 43, 45, 46, 49, 50, 51, 52, 55, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 84, 85, 86, 87, 88, 89, 92, 93, 94, 96, 97, 98, 99, 100, 101, 103, 105, 106, 107, 108, 109, 111, 112, 113, 114], "svg": [0, 89], "adob": 0, "illustr": [0, 89], "file": [0, 10, 18, 30, 32, 34, 39, 48, 50, 57, 59, 60, 74, 78, 79, 80, 81, 82, 83, 86, 90, 93, 96, 99, 100, 105, 109, 110, 111], "With": [0, 4, 43, 67, 91, 97, 114], "name": [0, 4, 10, 20, 35, 48, 49, 50, 51, 52, 57, 59, 63, 64, 66, 67, 68, 71, 73, 75, 77, 78, 79, 80, 81, 84, 86, 87, 89, 90, 95, 96, 97, 102, 109, 111, 113], "For": [0, 4, 10, 33, 35, 39, 46, 48, 50, 51, 55, 57, 59, 64, 68, 70, 78, 79, 81, 84, 85, 87, 89, 90, 91, 93, 94, 96, 97, 98, 102, 103, 105, 108, 111, 115, 116], "shirt": 0, "other": [0, 1, 4, 9, 12, 21, 22, 23, 28, 30, 32, 34, 38, 39, 43, 45, 46, 50, 51, 54, 57, 62, 64, 65, 66, 69, 74, 76, 77, 78, 81, 84, 85, 86, 87, 89, 90, 91, 93, 96, 97, 100, 102, 105, 108, 109, 111, 116], "band": [0, 108], "displai": [0, 50, 59, 74, 76, 78, 79, 86, 89, 90], "we": [0, 1, 4, 9, 10, 11, 18, 21, 23, 24, 25, 27, 28, 29, 30, 31, 34, 35, 36, 39, 40, 41, 42, 43, 46, 47, 48, 62, 68, 79, 81, 83, 84, 85, 86, 87, 89, 90, 93, 94, 96, 97, 98, 99, 100, 101, 107, 108, 109, 111, 113, 116], "us": [0, 2, 4, 6, 9, 10, 18, 21, 24, 25, 28, 29, 31, 32, 33, 34, 35, 38, 39, 40, 41, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 82, 83, 84, 86, 87, 88, 91, 92, 93, 94, 95, 96, 99, 100, 102, 105, 107, 108, 109, 110, 111, 113, 114, 115, 116], "serpentin": 0, "commonli": [0, 45, 51, 58, 65, 86], "embrac": 0, "univers": [0, 11, 17, 35, 107, 116], "florida": [0, 11, 17, 108, 115, 116], "detail": [0, 28, 30, 83, 89, 90, 94], "work": [0, 2, 4, 10, 18, 39, 41, 43, 45, 51, 59, 67, 79, 80, 81, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 101, 105, 108, 109, 112, 114, 116], "along": [0, 4, 43, 57, 63, 67, 68, 71, 78, 87, 90, 96, 102, 110], "code": [0, 4, 30, 43, 46, 48, 50, 51, 52, 54, 63, 64, 65, 70, 78, 79, 84, 85, 86, 87, 90, 94, 96, 100, 106, 108, 111, 115], "websit": [0, 11, 40, 43, 79, 83, 86, 87, 98, 116], "The": [1, 4, 5, 6, 7, 9, 10, 11, 12, 17, 19, 28, 30, 31, 33, 34, 35, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 93, 96, 97, 98, 99, 101, 102, 104, 105, 108, 110, 111, 112, 113, 114, 115, 116], "machin": [1, 17, 30, 33, 38, 48, 50, 80, 88, 116], "intellig": [1, 17, 116], "lab": [1, 8, 9, 17, 35, 40, 78, 84, 90, 116], "ha": [1, 4, 10, 11, 23, 26, 28, 31, 33, 35, 40, 41, 43, 45, 46, 49, 50, 51, 52, 56, 57, 59, 63, 64, 67, 68, 69, 73, 74, 77, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 101, 106, 109, 111, 113, 115, 116], "uniqu": [1, 57, 59, 69, 74, 77, 78, 94], "student": [1, 43, 90, 116], "which": [1, 4, 10, 11, 21, 29, 30, 31, 33, 34, 35, 38, 39, 41, 42, 43, 45, 49, 50, 51, 52, 53, 57, 59, 63, 64, 66, 67, 68, 70, 71, 72, 74, 76, 77, 78, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 97, 98, 100, 102, 105, 108, 109, 111, 113, 116], "creat": [1, 4, 6, 18, 39, 40, 42, 44, 46, 51, 57, 59, 64, 66, 67, 69, 70, 72, 74, 75, 78, 79, 81, 83, 85, 90, 94, 96, 100, 111], "synergist": [1, 116], "environ": [1, 5, 10, 32, 33, 34, 44, 51, 53, 67, 86, 89, 90, 96, 101, 113, 114, 116], "dedic": [1, 43, 46, 85, 89, 94, 108, 116], "studi": [1, 116], "develop": [1, 6, 8, 9, 10, 11, 18, 19, 22, 23, 29, 34, 43, 48, 57, 73, 78, 84, 87, 91, 92, 96, 97, 101, 106, 108, 116], "autonom": [1, 10, 11, 12, 17, 40, 42, 46, 72, 85, 90, 91, 96, 106, 112, 116], "robot": [1, 4, 5, 8, 9, 10, 11, 17, 26, 27, 32, 34, 39, 42, 43, 44, 46, 50, 52, 63, 64, 65, 68, 69, 71, 72, 84, 85, 86, 88, 89, 90, 93, 96, 97, 99, 101, 105, 108, 111, 113, 116], "applic": [1, 51, 57, 68, 78, 89, 90, 97, 116], "process": [1, 7, 10, 30, 40, 42, 43, 46, 49, 50, 51, 57, 60, 63, 64, 67, 69, 71, 72, 77, 78, 79, 80, 83, 85, 86, 89, 90, 93, 94, 97, 109, 111, 114, 116], "new": [1, 4, 5, 10, 20, 24, 25, 27, 30, 39, 43, 50, 51, 52, 56, 57, 59, 62, 64, 67, 68, 69, 72, 74, 77, 78, 79, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 101, 102, 103, 108, 109, 111, 112, 113], "member": [1, 6, 10, 35, 39, 40, 43, 50, 57, 67, 69, 78, 81, 84, 85, 86, 87, 90, 93, 94, 102, 108, 109, 111, 116], "encourag": [1, 11, 43, 85, 116], "show": [1, 30, 43, 48, 57, 59, 63, 67, 78, 80, 84, 85, 86, 89, 90, 91, 93, 95, 96, 98, 113], "up": [1, 4, 7, 25, 30, 33, 34, 35, 42, 43, 46, 48, 51, 52, 55, 57, 64, 68, 71, 72, 74, 77, 78, 81, 85, 86, 87, 88, 89, 91, 93, 94, 95, 96, 97, 98, 100, 101, 105, 108, 111, 114, 116], "believ": [1, 52, 91, 101], "learn": [1, 40, 43, 47, 86, 91, 93, 97, 108, 110, 116], "occur": [1, 43, 50, 51, 56, 63, 64, 77, 78, 86, 100, 109, 111], "best": [1, 38, 45, 68, 90, 93, 94, 115, 116], "being": [1, 5, 7, 34, 42, 43, 49, 50, 51, 55, 57, 67, 68, 73, 78, 81, 85, 86, 89, 91, 94, 96, 108, 111], "inquisit": 1, "therefor": [1, 5, 43, 46, 57, 64, 77, 80, 81, 84, 86, 87, 90, 93, 94, 101, 105], "continu": [1, 32, 43, 50, 59, 67, 68, 79, 80, 84, 85, 89, 90, 96, 108, 109, 111, 116], "all": [1, 4, 6, 11, 18, 23, 24, 26, 30, 31, 33, 39, 43, 47, 48, 50, 51, 52, 53, 55, 56, 57, 59, 61, 63, 64, 67, 68, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 98, 100, 101, 107, 108, 109, 111, 113, 115, 116], "ask": [1, 9, 34, 39, 43, 46, 50, 51, 80, 84, 85, 86, 88, 89, 90, 93, 108, 111, 116], "fellow": [1, 85], "miler": [1, 84, 85, 87, 116], "about": [1, 9, 28, 35, 39, 40, 43, 46, 48, 50, 59, 63, 64, 67, 71, 77, 78, 80, 81, 84, 85, 86, 89, 90, 91, 93, 94, 96, 98, 106, 108, 111, 114, 116], "ongo": 1, "project": [1, 10, 11, 18, 77, 78, 85, 86, 88, 90, 96, 101, 111], "task": [1, 10, 39, 43, 46, 48, 51, 53, 64, 72, 84, 90, 96, 97, 99, 102, 107, 108, 112], "order": [1, 8, 24, 30, 35, 39, 44, 46, 50, 51, 55, 57, 63, 67, 72, 78, 90, 91, 94, 101, 108, 109, 110, 111, 116], "subjug": [1, 7, 11, 24, 25, 31, 33, 39, 89, 91, 101, 103, 108, 109, 110, 114], "navig": [1, 10, 11, 31, 39, 40, 43, 44, 47, 48, 56, 79, 87, 90, 95, 97, 107, 112], "As": [1, 9, 35, 38, 39, 51, 57, 81, 89, 94, 96, 108], "spring": [1, 108], "2022": [1, 7, 42, 46, 106, 112], "semest": [1, 43, 108, 116], "each": [1, 4, 5, 7, 30, 35, 38, 43, 50, 51, 56, 57, 59, 61, 63, 64, 67, 68, 69, 76, 78, 79, 81, 83, 85, 87, 89, 93, 94, 96, 107, 108, 110, 111, 112, 116], "team": [1, 8, 9, 17, 37, 39, 42, 43, 46, 86, 92, 101, 107, 108, 116], "its": [1, 4, 11, 29, 44, 49, 50, 51, 52, 54, 62, 63, 64, 66, 67, 68, 69, 76, 78, 81, 85, 86, 87, 89, 90, 94, 96, 97, 100, 101, 105, 110, 111, 112], "own": [1, 45, 79, 84, 86, 89, 90, 91, 94, 100, 101, 105, 108, 116], "schedul": [1, 51, 81, 87, 108], "strategi": 1, "complet": [1, 4, 6, 10, 24, 30, 43, 46, 47, 51, 57, 68, 70, 77, 78, 79, 80, 90, 93, 94, 96, 99, 108, 109, 111, 112], "softwar": [1, 9, 17, 19, 22, 30, 39, 40, 41, 42, 78, 80, 86, 87, 89, 90, 91, 93, 96, 101, 106, 113, 116], "current": [1, 2, 11, 21, 24, 26, 29, 30, 39, 41, 43, 46, 50, 51, 56, 57, 63, 64, 66, 68, 70, 71, 72, 77, 81, 84, 88, 89, 90, 93, 94, 97, 101, 108, 109, 111], "mondai": 1, "fridai": 1, "highli": [1, 81, 84, 86, 90], "come": [1, 9, 45, 50, 57, 63, 78, 85, 86, 90, 91, 93, 94, 102, 105, 108, 114, 116], "In": [1, 4, 6, 12, 20, 24, 25, 33, 39, 48, 50, 51, 57, 62, 67, 80, 81, 85, 86, 87, 89, 90, 91, 94, 96, 97, 100, 107, 113], "exchang": [1, 67], "idea": [1, 4, 43, 84, 85, 93, 94, 113, 116], "help": [1, 9, 10, 11, 30, 35, 39, 40, 41, 42, 43, 44, 47, 48, 50, 51, 57, 79, 84, 85, 86, 88, 90, 92, 93, 94, 96, 97, 99, 100, 101, 102, 105, 108, 114, 116], "get": [1, 8, 10, 11, 17, 33, 36, 37, 38, 40, 41, 43, 46, 48, 50, 51, 52, 53, 61, 63, 64, 67, 68, 69, 71, 73, 74, 77, 78, 79, 80, 86, 87, 92, 94, 95, 96, 98, 100, 105, 108, 109, 110, 111, 115, 116], "set": [1, 5, 7, 10, 33, 42, 43, 44, 45, 46, 48, 49, 50, 51, 59, 63, 64, 67, 68, 69, 70, 71, 72, 75, 76, 77, 78, 81, 82, 83, 86, 88, 89, 93, 94, 96, 97, 101, 108, 111, 114], "who": [1, 6, 9, 35, 43, 51, 57, 64, 79, 85, 91, 97, 108, 109, 116], "abl": [1, 18, 22, 29, 43, 44, 51, 52, 53, 57, 79, 83, 85, 86, 88, 90, 91, 93, 96, 105, 107, 108], "attend": [1, 43], "reach": [1, 31, 68, 84, 101, 114, 116], "out": [1, 10, 31, 34, 38, 39, 43, 47, 48, 50, 51, 57, 59, 78, 79, 81, 84, 85, 86, 87, 89, 90, 91, 96, 99, 100, 105, 108, 109, 111, 114, 116], "ani": [1, 4, 9, 18, 21, 30, 34, 38, 40, 42, 43, 46, 48, 49, 50, 51, 57, 61, 62, 63, 64, 68, 73, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 102, 108, 109, 111, 113, 114, 116], "lead": [1, 9, 38, 43, 47, 78, 91, 96, 101, 108, 109], "what": [1, 10, 11, 22, 27, 30, 43, 48, 49, 51, 57, 64, 72, 77, 78, 79, 81, 84, 85, 86, 87, 91, 93, 94, 96, 105, 108, 112, 113], "wa": [1, 6, 11, 25, 43, 46, 49, 50, 51, 52, 53, 56, 57, 58, 59, 63, 64, 67, 68, 70, 71, 77, 78, 81, 83, 84, 85, 87, 89, 90, 93, 94, 98, 107, 108, 109, 110, 111, 116], "share": [1, 9, 10, 30, 31, 43, 50, 51, 57, 78, 86, 90, 108, 111, 116], "alwai": [1, 47, 50, 51, 57, 68, 78, 81, 84, 85, 89, 90, 91, 93, 94, 108], "been": [1, 10, 28, 31, 43, 46, 50, 51, 52, 57, 59, 63, 68, 69, 78, 80, 84, 86, 89, 93, 100, 101, 108, 109, 111, 115, 116], "strongli": [1, 112], "commit": [1, 30, 48, 85, 90, 91, 93, 100, 116], "document": [2, 4, 8, 11, 17, 18, 26, 37, 41, 42, 43, 51, 57, 64, 70, 78, 81, 85, 89, 91, 92, 94, 96, 97, 105, 108, 109, 111], "longer": [2, 51, 78, 90, 94, 105], "mai": [2, 30, 35, 38, 39, 43, 46, 50, 51, 52, 59, 63, 70, 77, 78, 79, 81, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 100, 105, 108, 109, 110, 111], "futur": [2, 42, 43, 51, 63, 66, 67, 79, 93, 94, 109, 111], "reviv": 2, "similar": [2, 4, 10, 30, 51, 68, 79, 81, 85, 86, 87, 89, 90, 91, 94, 116], "indi": 2, "av": 2, "some": [3, 4, 10, 19, 27, 30, 33, 35, 38, 39, 43, 45, 50, 51, 52, 59, 61, 67, 68, 77, 81, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 99, 100, 105, 108, 111, 116], "technic": [3, 11, 46, 90, 116], "info": [3, 40, 46, 48, 50, 59, 78, 84, 86, 105, 106, 111], "odom_estim": 3, "kalman": [3, 4], "filter": [3, 4, 39, 67, 69, 78, 102, 111], "passiv": [3, 60, 91], "sonar": [3, 60, 88, 91], "pneumat": [3, 60], "actuat": [3, 10, 57, 60, 64, 72, 113], "unscent": 4, "fuse": [4, 10], "acceleromet": [4, 109], "gyroscop": [4, 107, 108, 109], "magnetomet": 4, "dvl": [4, 10, 91, 108, 109, 110, 111], "depth": [4, 89, 108, 111], "sensor": [4, 10, 22, 41, 43, 88, 89, 108, 109, 111, 115], "measur": [4, 10, 19, 21, 50, 56, 78, 109, 111], "estim": [4, 10, 50, 63, 67, 77, 78, 107, 111], "move": [4, 10, 20, 25, 36, 44, 49, 50, 56, 68, 71, 77, 78, 81, 83, 86, 89, 90, 91, 93, 101, 105, 108, 109, 111, 114], "platform": [4, 9, 38, 39, 46, 63, 64, 108, 114, 116], "pose": [4, 10, 49, 51, 66, 68, 77, 78, 89, 111], "If": [4, 7, 9, 22, 25, 30, 34, 38, 39, 40, 41, 43, 46, 48, 49, 50, 51, 52, 57, 59, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 98, 100, 101, 102, 105, 108, 109, 111, 112, 115, 116], "you": [4, 5, 9, 11, 25, 27, 30, 31, 33, 34, 35, 39, 40, 45, 48, 50, 51, 52, 55, 57, 59, 64, 67, 68, 70, 71, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 105, 108, 109, 110, 111, 112, 113, 114, 116], "want": [4, 5, 30, 31, 39, 40, 43, 48, 59, 62, 68, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 91, 93, 94, 97, 98, 100, 105, 109, 116], "understand": [4, 10, 43, 79, 81, 87, 90, 91, 93, 94, 96, 97, 102, 108], "math": [4, 43], "behind": [4, 43, 51, 86, 93, 94, 111], "i": [4, 48, 78, 84, 85, 93, 94, 98, 109, 111], "recommend": [4, 40, 41, 48, 50, 80, 81, 84, 86, 89, 90, 98, 109, 112], "first": [4, 9, 11, 18, 24, 35, 39, 46, 51, 55, 57, 59, 63, 66, 67, 68, 70, 75, 77, 78, 79, 80, 81, 82, 84, 85, 90, 91, 93, 94, 96, 98, 108, 109, 111, 116], "read": [4, 6, 11, 40, 51, 52, 56, 57, 64, 67, 70, 76, 79, 85, 86, 87, 93, 94, 96, 108, 112, 116], "paper": [4, 78], "integr": [4, 19, 32, 43, 57, 73, 84, 85, 86, 97], "gener": [4, 5, 9, 10, 25, 39, 44, 46, 47, 48, 49, 50, 51, 53, 54, 57, 59, 64, 68, 72, 76, 77, 78, 79, 81, 83, 85, 86, 87, 101, 106, 108, 111, 113, 116], "fusion": 4, "algorithm": [4, 21, 28, 29, 63, 67, 78, 94], "sound": [4, 67, 100, 112], "state": [4, 10, 19, 28, 35, 41, 60, 64, 68, 70, 72, 107, 111, 113], "represent": [4, 50, 51, 62, 63, 77, 78], "through": [4, 9, 35, 39, 40, 41, 45, 46, 48, 50, 51, 57, 59, 61, 63, 67, 68, 70, 74, 78, 79, 80, 81, 84, 85, 86, 87, 88, 90, 91, 93, 94, 97, 99, 101, 102, 105, 108, 109, 111, 112], "encapsul": 4, "util": [4, 5, 24, 25, 81, 85, 90, 93], "jason": 4, "gnc": [4, 110], "note": [4, 5, 7, 25, 27, 32, 40, 43, 48, 50, 51, 53, 57, 64, 71, 76, 81, 84, 85, 86, 87, 89, 90, 93, 94, 100, 109], "describ": [4, 50, 60, 64, 66, 71, 77, 78, 84, 87, 89, 90, 91, 94], "specif": [4, 9, 10, 30, 40, 41, 42, 46, 51, 52, 57, 59, 63, 64, 68, 70, 71, 77, 78, 80, 81, 84, 85, 86, 89, 90, 91, 94, 96, 98, 100, 108, 111, 116], "relev": [4, 46, 50, 57, 67, 68, 71, 74, 77, 78, 89, 100, 111], "rel": [4, 22, 63, 77, 78, 84, 94, 108, 111], "direct": [4, 63, 67, 68, 74, 77, 78, 87, 102, 109, 111], "implement": [4, 19, 43, 50, 51, 52, 57, 63, 64, 65, 68, 69, 75, 76, 78, 92, 94, 96, 108, 111], "too": [4, 21, 35, 50, 57, 63, 85, 87, 90, 108, 111, 116], "much": [4, 9, 43, 63, 78, 81, 85, 86, 87, 90, 93, 96, 108], "extra": [4, 40, 78, 85, 86, 109, 111, 114], "boilerpl": 4, "mostli": [4, 10, 39, 96, 108], "thank": [4, 93], "requir": [4, 9, 12, 21, 28, 29, 43, 50, 68, 78, 79, 81, 83, 84, 85, 86, 88, 93, 96, 97, 101, 108, 114, 116], "explicit": [4, 94], "calcul": [4, 50, 57, 62, 70, 78, 94, 96, 111], "huge": [4, 85], "jacobian": [4, 68], "matric": 4, "macro": 4, "metaprogram": 4, "oper": [4, 21, 34, 42, 50, 51, 57, 68, 70, 71, 77, 78, 79, 80, 85, 90, 93, 94, 96, 97, 108, 111], "section": [4, 68, 84, 85, 87, 89, 90, 93, 94, 97, 98], "5": [4, 25, 27, 41, 50, 51, 53, 59, 63, 67, 68, 71, 73, 78, 85, 91, 94, 108, 111, 113, 115], "There": [4, 30, 41, 80, 81, 85, 86, 87, 89, 93, 94, 105, 108, 110, 112, 116], "few": [4, 34, 43, 44, 79, 84, 85, 88, 93, 96, 108, 109, 111], "weird": [4, 85, 94], "surpris": [4, 91], "thing": [4, 23, 26, 34, 38, 48, 52, 68, 79, 84, 85, 86, 87, 90, 91, 93, 96, 99, 101, 108, 116], "veri": [4, 10, 43, 45, 51, 52, 81, 85, 87, 90, 91, 93, 94, 96, 108, 109, 110, 116], "concis": 4, "summari": 4, "kei": [4, 51, 57, 59, 71, 72, 78, 85, 86, 90, 94, 101, 111, 115], "concept": [4, 51], "abov": [4, 43, 49, 50, 57, 63, 78, 81, 85, 87, 90, 91, 93, 100, 108, 111, 116], "central": [4, 97], "space": [4, 61, 63, 68, 78, 80, 82, 85, 90, 111, 113], "local": [4, 22, 29, 30, 33, 57, 68, 69, 73, 79, 80, 84, 86, 88, 90, 94, 112], "look": [4, 5, 19, 46, 68, 71, 77, 81, 84, 85, 87, 89, 90, 93, 94, 96, 105, 116], "like": [4, 5, 9, 11, 25, 30, 35, 39, 43, 45, 50, 51, 59, 63, 67, 69, 71, 76, 77, 78, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 102, 105, 108, 109, 116], "vector": [4, 51, 62, 63, 66, 67, 68, 69, 72, 74, 77, 78, 85, 109, 111], "global": [4, 10, 25, 57, 68, 69, 71, 73, 85, 89, 94], "have": [4, 9, 27, 28, 31, 33, 34, 35, 38, 39, 42, 43, 45, 46, 47, 48, 50, 51, 57, 59, 64, 66, 67, 68, 69, 71, 78, 79, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 101, 102, 107, 108, 109, 110, 111, 113, 114, 116], "more": [4, 9, 10, 29, 30, 38, 39, 43, 50, 51, 52, 55, 57, 59, 67, 68, 71, 77, 78, 81, 83, 84, 85, 86, 87, 90, 91, 93, 94, 96, 100, 105, 108, 109, 113, 114, 116], "complic": [4, 85], "behavior": [4, 12, 24, 49, 50, 52, 57, 64, 65, 67, 68, 76, 78, 79, 85, 89, 94, 97, 108, 113], "around": [4, 10, 30, 41, 43, 50, 63, 67, 71, 74, 77, 78, 79, 83, 84, 85, 86, 87, 91, 101, 108, 111, 114], "infinitesim": 4, "point": [4, 10, 21, 43, 45, 46, 49, 60, 66, 67, 68, 71, 72, 74, 77, 78, 81, 84, 89, 90, 93, 94, 100, 109, 111, 114], "call": [4, 5, 25, 46, 50, 51, 55, 57, 59, 64, 67, 68, 69, 70, 71, 72, 78, 81, 84, 90, 94, 96, 97, 100, 101, 108, 109, 111, 113], "tangent": 4, "dimens": [4, 63, 68, 72, 77, 111], "characterist": [4, 61], "re": [4, 9, 30, 35, 39, 48, 68, 69, 79, 84, 85, 86, 87, 90, 91, 93, 105, 111, 112, 116], "deal": [4, 35, 111], "exampl": [4, 5, 10, 33, 40, 46, 48, 50, 51, 54, 55, 59, 64, 68, 71, 78, 81, 83, 85, 86, 87, 90, 91, 93, 94, 96, 97, 100, 102, 108], "unit": [4, 35, 38, 41, 63, 77, 78, 85, 92, 94, 109], "quaternion": [4, 51, 62, 66, 68, 78], "three": [4, 11, 46, 57, 63, 77, 78, 81, 89, 94, 102, 109, 111, 116], "dimension": [4, 63, 68, 78], "isn": [4, 39, 50, 87, 93, 111], "t": [4, 25, 30, 31, 35, 39, 43, 46, 50, 51, 57, 61, 67, 68, 78, 79, 81, 84, 85, 86, 87, 89, 90, 93, 94, 96, 100, 105, 108, 109, 111], "rotat": [4, 10, 62, 63, 66, 68, 72, 78, 85, 89, 107, 108, 109, 111], "degre": [4, 78, 110, 111], "freedom": [4, 96, 97, 110], "e": [4, 21, 46, 48, 61, 79, 82, 85, 94], "g": [4, 21, 48, 63, 66, 74, 82, 111], "roll": [4, 109, 110, 111, 115], "pitch": [4, 109, 110], "yaw": [4, 68, 109, 110, 111], "euler": [4, 62, 111], "angl": [4, 20, 68, 78, 89, 107, 111], "n": [4, 46, 67, 68, 69, 78, 97, 111], "3": [4, 21, 46, 50, 51, 63, 66, 67, 68, 78, 81, 94, 96, 108, 109, 111], "scalar": [4, 68, 78], "1": [4, 5, 7, 15, 34, 41, 45, 46, 48, 50, 51, 53, 57, 59, 61, 63, 67, 68, 72, 73, 74, 75, 78, 81, 87, 93, 94, 96, 98, 108, 109, 111], "mind": [4, 43, 55, 79, 94], "defin": [4, 51, 57, 67, 68, 78, 89, 97, 111], "abstract": [4, 59, 67, 78, 85], "over": [4, 5, 7, 10, 30, 34, 35, 43, 45, 46, 50, 51, 52, 54, 57, 59, 63, 68, 69, 75, 78, 84, 85, 86, 90, 93, 94, 96, 97, 101, 105, 107, 108, 109, 111], "allow": [4, 6, 8, 29, 30, 33, 43, 45, 46, 50, 51, 52, 57, 64, 68, 69, 70, 72, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 94, 96, 97, 100, 108, 109, 111, 114, 116], "treat": [4, 110], "them": [4, 24, 35, 43, 51, 55, 68, 79, 81, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 97, 99, 101, 105, 107, 108, 111, 112, 116], "given": [4, 10, 28, 30, 33, 34, 46, 50, 51, 52, 64, 66, 68, 69, 70, 71, 73, 75, 78, 111, 115], "find": [4, 35, 38, 39, 40, 43, 45, 46, 51, 59, 62, 63, 67, 68, 69, 71, 77, 78, 79, 80, 83, 85, 86, 87, 89, 90, 91, 93, 94, 108, 109, 111, 116], "d": [4, 30, 39, 46, 57, 61, 78, 79, 84, 85, 86, 90, 93, 94, 101, 111, 116], "box": [4, 32, 33, 35, 36, 38, 42, 43, 47, 68, 78, 87, 97, 105, 107, 108, 115], "plu": [4, 68, 87, 109], "offset": [4, 63], "plane": [4, 26, 35, 43, 63, 77], "manifold_point": 4, "x": [4, 33, 50, 51, 57, 62, 63, 64, 66, 68, 71, 72, 76, 77, 78, 84, 85, 90, 93, 94, 97, 109, 110, 111], "new_manifold_point": 4, "minu": 4, "invers": [4, 51, 111], "write": [4, 57, 61, 70, 74, 75, 76, 81, 85, 87, 89, 90, 91, 92, 93, 94, 108, 111, 115], "handl": [4, 45, 46, 50, 51, 53, 55, 57, 59, 60, 67, 75, 78, 85, 94, 97, 108, 109, 111, 113], "from": [4, 7, 10, 24, 25, 31, 33, 34, 35, 36, 38, 42, 45, 46, 50, 51, 53, 54, 56, 57, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 100, 101, 102, 106, 109, 110, 111, 116], "assum": [4, 33, 50, 57, 67, 78, 94, 111], "suffici": [4, 78, 96], "close": [4, 6, 30, 47, 51, 52, 64, 70, 71, 78, 84, 86, 87, 107, 111, 115], "act": [4, 51, 68, 71], "roughli": [4, 34, 94, 109], "linear": [4, 10, 38, 63, 66, 68, 72, 111], "between": [4, 6, 17, 19, 24, 30, 34, 46, 50, 51, 57, 59, 63, 67, 68, 77, 78, 85, 86, 89, 90, 93, 97, 101, 107, 108, 109, 116], "just": [4, 24, 50, 64, 78, 110, 111], "take": [4, 35, 48, 51, 64, 67, 68, 73, 76, 79, 81, 87, 89, 90, 91, 93, 94, 101, 108, 110, 111], "chang": [4, 20, 29, 30, 34, 46, 48, 50, 52, 64, 71, 75, 77, 78, 85, 86, 89, 90, 91, 92, 95, 96, 97, 101, 108, 109, 111, 115], "addit": [4, 12, 59, 78, 82, 93, 97, 111], "subtract": [4, 51, 68, 94, 96], "valu": [4, 20, 46, 49, 50, 51, 57, 59, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 77, 78, 81, 85, 86, 94, 96, 101, 108, 109, 110, 111], "let": [4, 39, 81, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 101, 114], "perturb": [4, 78], "distribut": [4, 88], "store": [4, 7, 9, 10, 30, 31, 34, 36, 39, 43, 46, 50, 51, 57, 59, 63, 68, 69, 74, 76, 78, 89, 94, 101, 111], "mean": [4, 57, 67, 71, 77, 78, 79, 85, 86, 93, 96, 101, 108, 109, 111], "covari": [4, 63, 66, 77], "dxd": 4, "matrix": [4, 62, 66, 68, 78, 85, 109, 111], "includ": [4, 6, 8, 9, 11, 35, 39, 51, 52, 54, 57, 68, 71, 77, 78, 79, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 108, 111, 116], "h": [4, 33, 46, 59, 67, 68, 85, 111], "cartesian": 4, "product": [4, 28, 41, 62], "give": [4, 55, 67, 68, 71, 78, 84, 88, 89, 90, 93, 94, 96, 105, 109], "sever": [4, 6, 9, 10, 11, 39, 43, 50, 51, 59, 63, 68, 71, 72, 78, 89, 94, 96, 101, 108, 116], "lump": 4, "togeth": [4, 7, 43, 51, 63, 78, 81, 85, 87, 90, 94, 108, 111, 116], "struct": [4, 50, 57, 63, 78, 85], "except": [4, 18, 50, 53, 59, 60, 61, 67, 71, 73, 78, 81, 87, 89, 93, 107], "also": [4, 12, 30, 35, 38, 39, 41, 42, 44, 45, 50, 53, 57, 59, 61, 63, 64, 68, 78, 81, 82, 84, 85, 86, 89, 90, 91, 93, 94, 96, 97, 100, 108, 109, 110, 111, 113, 116], "correspond": [4, 57, 68, 78, 111], "compos": [4, 30, 62], "exist": [4, 21, 50, 51, 52, 53, 59, 63, 68, 73, 79, 85, 86, 94, 97, 102, 109], "ones": [4, 85, 86, 109], "mayb": [4, 43, 87, 90], "even": [4, 35, 38, 43, 68, 79, 81, 84, 86, 91, 93, 94, 96, 108], "build": [4, 43, 48, 79, 84, 87, 90, 91, 93, 96, 101, 115], "repres": [4, 27, 46, 49, 50, 51, 57, 59, 62, 63, 64, 66, 67, 68, 69, 70, 71, 74, 75, 77, 78, 81, 85, 87, 90, 93, 94, 108, 111], "variabl": [4, 33, 49, 51, 57, 67, 68, 94, 101], "try": [4, 34, 48, 50, 52, 53, 78, 81, 84, 85, 86, 87, 90, 91, 93, 94, 101, 105, 109, 111, 113], "These": [4, 31, 43, 45, 50, 54, 57, 60, 64, 76, 78, 81, 85, 86, 87, 88, 89, 93, 94, 96, 100, 102, 105, 108, 109, 114, 116], "transform": [4, 62, 67, 69, 71, 77, 78, 111], "unscented_transform": 4, "certain": [4, 10, 51, 59, 81, 84, 88, 90, 94, 108], "both": [4, 10, 27, 34, 35, 47, 48, 50, 51, 57, 59, 62, 68, 70, 78, 81, 83, 85, 86, 87, 89, 93, 109], "fashion": [4, 51, 94, 108], "due": [4, 35, 50, 51, 68, 84, 86, 108, 111], "previous": [4, 24, 51, 52, 90, 109], "support": [4, 11, 51, 57, 63, 74, 81, 86, 87, 90, 93, 94, 96, 108, 111, 116], "raw": [4, 57, 67, 78, 83, 102], "gp": [4, 10, 34, 41, 109], "intern": [4, 32, 38, 50, 63, 68, 69, 70, 71, 74, 78, 94], "held": [4, 46], "predict": [4, 63], "function": [4, 8, 24, 25, 30, 33, 34, 43, 44, 50, 56, 57, 59, 64, 68, 69, 70, 71, 73, 86, 87, 89, 91, 93, 96, 100, 108, 109, 110], "written": [4, 43, 61, 78, 84, 86, 89, 90, 91, 93, 96, 110], "need": [4, 6, 7, 9, 30, 34, 35, 38, 39, 40, 43, 45, 46, 50, 51, 52, 59, 64, 66, 67, 69, 71, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100, 105, 108, 109, 110, 111], "compens": [4, 109], "fictiti": 4, "forc": [4, 63, 66, 68, 72, 89, 96, 111, 114], "aris": 4, "when": [4, 7, 30, 31, 35, 39, 41, 43, 46, 48, 50, 51, 52, 53, 55, 56, 57, 59, 64, 67, 68, 70, 71, 72, 77, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 105, 108, 109, 111, 113, 114, 116], "refer": [4, 35, 54, 67, 68, 78, 79, 81, 83, 86, 87, 91, 110], "frame": [4, 25, 63, 66, 67, 68, 69, 71, 74, 77, 78, 108, 111], "ecef": [4, 25, 77], "back": [4, 10, 24, 25, 43, 45, 46, 59, 69, 77, 84, 89, 90, 91, 95, 111], "forth": 4, "pretti": [4, 50, 51, 76, 86, 93, 94, 108, 111], "often": [4, 10, 34, 38, 43, 49, 51, 57, 85, 89, 91, 94, 96], "inertial_from_ecef": 4, "howev": [4, 30, 43, 48, 50, 51, 52, 57, 79, 81, 83, 85, 86, 89, 90, 93, 94, 96, 100, 111, 113], "said": [4, 68], "neglig": 4, "detect": [4, 5, 46, 60, 63, 67, 77, 84], "qualiti": [4, 30, 43, 57, 84, 96, 116], "difficult": [4, 83, 91, 96, 108, 109], "were": [4, 43, 64, 70, 77, 78, 81, 84, 94, 108], "rewritten": 4, "would": [4, 9, 21, 39, 43, 67, 80, 81, 85, 94, 100, 108], "probabl": [4, 19, 78, 94], "enu": [4, 63, 71, 77], "clearer": [4, 85, 87], "result": [4, 49, 51, 55, 57, 63, 64, 66, 67, 69, 75, 78, 79, 81, 85, 89, 90, 94, 96, 105, 110, 115, 116], "roslaunch": [5, 20, 24, 25, 27, 48, 52, 89, 90, 101, 109, 110, 113], "subjugator_launch": [5, 89, 90, 101, 109, 110, 113], "passive_sonar": 5, "download": [5, 30, 34, 61, 80, 87, 90, 98], "oof": 5, "bin": [5, 67, 82, 86, 97], "rosrun": [5, 74, 83, 96, 99], "mil_tool": [5, 24, 25, 58, 59, 61, 62, 66, 73, 74, 75, 76, 99], "stream_tcp_dump": 5, "batch_siz": 5, "960000": 5, "advance_on_arrow": 5, "true": [5, 25, 46, 48, 50, 51, 53, 57, 59, 61, 63, 64, 68, 70, 77, 78, 81, 84, 85, 93, 96, 100, 109, 111], "rate": [5, 21, 22, 25, 51, 57, 63, 67, 70, 73, 75, 78], "10": [5, 25, 27, 51, 59, 67, 68, 78, 81, 85, 96, 108, 114], "mil_common": [5, 76], "mil_ros_tool": [5, 59, 66, 74], "plotter": [5, 67, 97], "py": [5, 57, 78, 83, 93, 94, 96, 97, 99], "plot": [5, 59, 67, 68], "batch": [5, 67], "topic": [5, 25, 46, 50, 51, 53, 56, 59, 67, 68, 71, 73, 74, 78, 83, 91, 99, 102, 111, 116], "cv2": [5, 59, 78], "imag": [5, 22, 60, 68, 78, 83, 85, 88, 89, 90, 95, 97, 102, 111, 112, 113], "most": [5, 10, 21, 43, 46, 48, 50, 51, 54, 56, 69, 78, 79, 81, 85, 86, 87, 89, 90, 91, 93, 95, 96, 97, 101, 106, 108, 111], "processiong": 5, "max": [5, 22, 68, 69], "convolut": 5, "gradient": [5, 67], "caus": [5, 30, 34, 51, 52, 68, 81, 85, 90, 93, 94, 96, 107, 108], "recent": [5, 46, 50, 51, 56, 69, 78, 90, 109, 111], "onli": [5, 22, 26, 33, 43, 45, 50, 51, 57, 59, 64, 67, 68, 76, 78, 79, 81, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 105, 108, 109, 111, 113], "0": [5, 27, 33, 46, 48, 50, 51, 53, 57, 59, 62, 63, 68, 69, 71, 73, 74, 78, 81, 85, 87, 89, 91, 93, 94, 96, 98, 111], "trigger_debug": [5, 67], "should": [5, 7, 10, 35, 38, 39, 43, 45, 46, 47, 48, 50, 51, 57, 59, 62, 64, 66, 67, 68, 69, 71, 74, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 98, 101, 105, 107, 108, 109, 111, 113, 114, 115], "someth": [5, 51, 64, 67, 84, 85, 90, 91, 93, 109, 111], "30khz": [5, 67], "sample_at_trigger_debug": 5, "open": [5, 6, 35, 44, 45, 70, 83, 84, 85, 87, 89, 90, 93, 96, 97, 103, 108, 109, 111], "filter_debug": [5, 67], "rviz": [5, 20, 24, 25, 33, 60, 69, 111], "Then": [5, 41, 45, 55, 80, 85, 87, 89, 90, 93, 94, 101, 105, 109], "panel": [5, 20, 24, 25, 27, 34, 48, 71, 90, 113], "rosservic": 5, "filter_debug_trigg": [5, 67], "go": [5, 10, 18, 23, 25, 35, 43, 48, 68, 81, 84, 85, 86, 87, 89, 90, 93, 95, 97, 105, 108, 109, 111, 112, 113, 115, 116], "see": [5, 20, 27, 30, 50, 51, 57, 59, 68, 78, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 101, 103, 105, 109, 111], "crop": 5, "rang": [5, 50, 57, 63, 67, 85, 93, 94, 110, 111], "vertic": [5, 63, 111], "line": [5, 12, 45, 74, 78, 80, 82, 84, 86, 87, 89, 93, 96, 97], "ping_loc": [5, 67], "samples_debug": 5, "where": [5, 9, 10, 25, 30, 36, 39, 40, 45, 46, 48, 51, 61, 64, 67, 68, 69, 74, 77, 78, 79, 81, 86, 87, 89, 90, 91, 93, 94, 96, 100, 105, 108, 109, 111, 113, 116], "channel": [5, 63, 67, 78, 91], "90deg": 5, "right": [5, 7, 20, 59, 67, 68, 77, 78, 84, 85, 86, 87, 90, 93, 96, 97, 102, 109, 111, 116], "delai": [5, 43, 72, 94], "cross_correlation_debug": 5, "neg": [5, 21, 51, 111], "paramet": [5, 27, 46, 50, 51, 53, 56, 57, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 83, 85, 87, 89, 93, 94, 96, 111, 113], "expect": [5, 51, 57, 64, 68, 70, 78, 79, 81, 96], "tuin": 5, "param": [5, 68, 78, 87, 111], "initi": [5, 19, 28, 46, 49, 50, 51, 55, 57, 59, 68, 69, 71, 72, 78, 85, 91, 97, 100, 108, 111, 113], "yaml": [5, 86, 109, 110, 111], "roscd": [5, 99], "cp": 5, "my_passive_sonar": 5, "rose": [5, 24, 25], "whatev": [5, 41, 48, 64, 81, 84, 85, 90, 109], "config_fil": 5, "ie": [5, 48, 51, 57, 70, 77, 81, 85, 87], "rosparam": [5, 57], "target_frequ": 5, "25000": 5, "reset": [5, 45, 67, 68, 69, 72, 76, 91, 92, 111], "servic": [5, 25, 50, 52, 59, 60, 67, 69, 70, 71, 72, 73, 85, 97], "tcp": [5, 46, 54, 67], "dump": [5, 50, 111], "run": [5, 10, 27, 31, 32, 33, 43, 49, 50, 51, 52, 53, 56, 57, 59, 63, 64, 65, 67, 68, 72, 74, 77, 80, 81, 83, 84, 85, 86, 87, 88, 91, 94, 96, 97, 98, 99, 100, 101, 103, 105, 107, 108, 109, 110, 111, 114], "mil_passive_sonar": [5, 59, 60, 63, 91], "sylphase_sonar_ros_bridg": 5, "_port": 5, "10001": 5, "_ip": 5, "127": 5, "either": [5, 38, 50, 51, 52, 55, 57, 59, 63, 67, 68, 78, 79, 81, 84, 85, 86, 87, 94, 95, 108], "stream": [5, 48, 57, 59, 67, 113], "driver": [5, 23, 57, 67, 70, 75, 88, 91, 92, 109], "port": [5, 7, 34, 45, 46, 57, 67, 70, 75, 93, 109], "ip": [5, 33, 45, 46, 63, 67, 101], "On": [5, 34, 51, 86, 98, 116], "sub8": [5, 109, 110], "actual": [5, 25, 43, 44, 48, 49, 52, 57, 63, 64, 71, 72, 77, 79, 81, 84, 85, 88, 90, 96, 97, 100, 108, 113], "cd": [5, 79, 90, 100], "sylphas": [5, 21, 67, 108], "publish": [5, 24, 46, 50, 54, 55, 56, 59, 67, 68, 69, 71, 72, 74, 78, 81, 97, 102, 111], "sure": [5, 9, 18, 34, 38, 39, 43, 48, 68, 79, 83, 84, 85, 87, 89, 90, 91, 93, 97, 108, 109, 111, 114, 115], "rostop": [5, 20, 27, 48, 59, 101, 113], "echo": [5, 20, 48, 57, 61, 101, 113], "respons": [6, 8, 9, 37, 39, 46, 50, 51, 57, 59, 63, 67, 68, 69, 70, 71, 74, 77, 108, 109, 110, 111, 116], "control": [6, 17, 23, 29, 30, 38, 41, 49, 50, 51, 55, 57, 60, 63, 68, 77, 79, 85, 86, 89, 90, 93, 97, 106, 116], "valv": [6, 70, 107, 108, 111], "power": [6, 7, 10, 34, 45, 47, 51, 63, 87, 96, 97, 108, 109, 111, 114, 115], "system": [6, 8, 9, 10, 11, 23, 24, 28, 32, 41, 42, 43, 44, 46, 48, 49, 52, 57, 60, 63, 64, 67, 68, 69, 70, 71, 72, 79, 80, 85, 89, 91, 93, 94, 96, 97, 98, 107, 108, 109, 111, 114, 116], "daniel": [6, 40, 70], "volya": 6, "former": [6, 10, 81], "now": [6, 9, 10, 25, 43, 48, 50, 57, 68, 78, 79, 80, 81, 84, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 100, 101, 105], "hi": 6, "wai": [6, 35, 38, 43, 51, 52, 76, 77, 78, 80, 81, 85, 86, 89, 91, 93, 94, 96, 108, 113], "achiev": [6, 81, 89, 90, 91, 93, 105], "phd": 6, "To": [6, 8, 20, 23, 30, 31, 34, 35, 36, 37, 39, 45, 51, 52, 57, 68, 71, 78, 79, 80, 84, 85, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 105, 109, 113], "send": [6, 41, 46, 50, 51, 57, 64, 67, 70, 71, 75, 76, 110, 111], "byte": [6, 46, 51, 57, 63, 70, 75, 76, 78, 111], "command": [6, 25, 63, 64, 74, 75, 77, 78, 79, 80, 82, 84, 86, 89, 90, 91, 93, 97, 98, 100, 110, 111, 115], "xor": [6, 70], "0xff": [6, 70], "checksum": [6, 46, 70, 75], "receiv": [6, 10, 11, 35, 45, 46, 50, 51, 52, 53, 59, 63, 64, 67, 68, 70, 74, 75, 76, 78, 81, 83, 97, 109, 111], "opcod": 6, "0x10": [6, 70], "ping": [6, 34, 67, 70, 109], "0x20": [6, 70], "air": [6, 38, 43, 107, 111, 114, 116], "flow": [6, 63], "0x30": [6, 70], "disallow": 6, "0x40": [6, 70], "switch": [6, 34, 45, 59, 72, 86, 89, 97, 98, 111], "check": [6, 7, 9, 20, 30, 35, 38, 39, 41, 43, 47, 48, 50, 51, 52, 67, 68, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 94, 96, 99, 108, 109, 111, 115], "repli": [6, 51], "0x11": [6, 70], "number": [6, 43, 45, 46, 50, 51, 57, 59, 61, 63, 67, 68, 69, 70, 72, 73, 76, 77, 78, 79, 81, 85, 89, 90, 94, 96, 101, 109, 111], "ex": [6, 40, 59, 94], "0x04": [6, 57], "4": [6, 50, 53, 56, 57, 62, 63, 66, 67, 68, 74, 78, 84, 85, 94, 108, 111], "0x24": 6, "0x01": [6, 57, 70], "prevent": [6, 7, 43, 48, 73, 81, 90, 96, 108], "0x0b": 6, "11": [6, 57, 74, 85, 89], "0x3b": 6, "0x00": [6, 57, 70], "0x09": 6, "9": [6, 39, 90, 114], "0x49": 6, "press": [6, 7, 25, 45, 61, 72, 77, 80, 86, 89, 95, 111, 113], "2018": [6, 11, 93], "kevin": 6, "allen": [6, 115], "bridg": [6, 59, 78], "class": [6, 46, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 61, 63, 65, 66, 67, 68, 70, 71, 72, 74, 75, 76, 77, 78, 79, 81, 87, 96, 97, 99, 108, 111, 116], "mil_pneumatic_actu": [6, 60], "pnuematicactuatordriv": [6, 70], "method": [6, 38, 43, 46, 50, 51, 52, 56, 57, 59, 61, 64, 66, 67, 68, 70, 71, 72, 74, 75, 76, 78, 81, 85, 86, 87, 93, 96, 97, 105, 107, 109, 111], "test": [7, 10, 11, 24, 25, 28, 30, 33, 34, 42, 43, 46, 50, 51, 53, 57, 73, 78, 80, 81, 85, 86, 89, 92, 94, 100, 105, 108, 109, 110], "charg": [7, 47], "deplet": 7, "sub": [7, 25, 33, 50, 51, 53, 67, 89, 101, 102, 104, 105, 107, 108, 109, 110, 111, 112, 113, 114, 115], "water": [7, 38, 41, 43, 44, 47, 50, 67, 105, 107, 108, 109, 110, 111, 116], "percentag": [7, 72, 108], "hitec": 7, "lipo": [7, 105], "checker": [7, 81, 108], "voltag": [7, 50, 56, 63, 108], "equil": 7, "plug": [7, 20, 34, 38, 86, 90, 105, 111], "devic": [7, 20, 21, 33, 34, 45, 57, 75, 76, 80, 88, 90, 95, 98, 108, 109, 111], "connector": [7, 45, 107, 108, 109, 114, 115], "balanc": [7, 47], "white": [7, 38, 61, 78, 89], "80": [7, 45, 85, 94], "further": [7, 70, 85, 93, 97, 98, 110], "action": [7, 30, 50, 51, 55, 57, 60, 63, 64, 68, 70, 72, 78], "cabl": [7, 10, 34, 45, 105, 108, 109, 114, 115], "wall": [7, 34, 105, 115], "remov": [7, 35, 47, 50, 59, 61, 63, 69, 71, 76, 78, 81, 85, 93, 108, 111, 114], "ch1": 7, "side": [7, 47, 51, 78, 84, 85, 89, 110, 113], "connect": [7, 31, 32, 34, 42, 45, 46, 47, 50, 51, 52, 57, 59, 64, 67, 68, 70, 73, 75, 84, 87, 89, 94, 97, 101, 105, 108, 111, 114, 115], "anderson": 7, "red": [7, 24, 25, 34, 45, 63, 77, 78, 84, 89, 90, 115], "black": [7, 78, 93], "wire": [7, 38, 108], "same": [7, 10, 25, 43, 48, 50, 51, 59, 61, 68, 70, 74, 78, 81, 83, 84, 85, 86, 90, 91, 93, 97, 105, 108, 109, 110, 111, 113], "ch2": 7, "phystart": 7, "center": [7, 17, 63, 77, 78, 85, 108, 111], "dial": 7, "select": [7, 39, 41, 51, 72, 80, 84, 85, 89, 90, 95, 97, 98, 102], "default": [7, 20, 48, 50, 51, 57, 59, 61, 64, 66, 68, 71, 74, 75, 78, 85, 86, 87, 89, 90, 94, 97, 100], "ye": [7, 85], "pop": [7, 47], "icon": [7, 80, 89, 90, 97], "start": [7, 8, 11, 17, 19, 23, 25, 30, 33, 37, 40, 43, 47, 48, 50, 51, 52, 53, 55, 57, 59, 63, 64, 67, 68, 69, 76, 77, 79, 81, 86, 89, 91, 92, 93, 94, 101, 108, 109, 110, 111, 115, 116], "blink": 7, "upper": [7, 67, 78, 85, 93], "corner": [7, 78, 89, 90], "cell": [7, 68], "shown": [7, 20, 46, 57, 59, 63, 79, 84, 87, 90, 114], "configur": [7, 32, 33, 45, 63, 69, 89, 100, 108, 109, 111, 113], "until": [7, 23, 28, 34, 46, 51, 59, 68, 73, 81, 90, 94, 108, 113, 114], "90": 7, "issu": [7, 25, 34, 39, 43, 51, 54, 81, 84, 85, 90, 93, 108], "dure": [7, 29, 43, 50, 64, 68, 84, 96, 107, 108, 110, 114], "robosub": 7, "competit": [7, 10, 11, 28, 29, 34, 35, 42, 43, 44, 46, 48, 65, 93, 106, 108], "ch": 7, "2": [7, 34, 46, 50, 51, 53, 57, 63, 66, 68, 75, 78, 81, 82, 84, 85, 94, 96, 111, 114, 115], "burn": 7, "fix": [7, 25, 43, 52, 71, 77, 84, 85, 87, 91, 93, 96, 100, 108], "do": [7, 10, 11, 21, 23, 26, 30, 34, 35, 38, 39, 43, 48, 51, 52, 55, 57, 64, 67, 68, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 105, 108, 111, 113, 114, 115, 116], "NOT": [7, 78, 115], "manual": [7, 41, 46, 48, 49, 84, 86, 93, 96, 111], "welcom": [8, 9, 11, 17, 37, 39, 42, 85, 90, 93, 94], "regard": [8, 37, 42, 68, 85, 91, 111], "construct": [8, 21, 37, 39, 46, 50, 51, 52, 57, 59, 62, 63, 64, 66, 67, 70, 74, 75, 78, 111, 116], "mainten": [8, 37], "firmwar": [8, 41, 90], "circuitri": [8, 9], "embed": [8, 9, 57], "bot": [8, 68, 108], "highest": [8, 50, 90], "capac": 8, "checkout": [8, 18, 37, 79, 84, 91], "onboard": [8, 11, 37, 43, 108, 116], "batteri": [8, 32, 47, 57, 60, 105, 108, 111, 114, 115], "charger": [8, 47, 115], "here": [9, 11, 26, 34, 39, 40, 78, 79, 80, 84, 86, 89, 90, 93, 94, 96, 97, 98, 100, 109, 111, 116], "special": [9, 34, 35, 45, 51, 57, 67, 81, 111, 113], "hardwar": [9, 17, 28, 50, 56, 83, 90, 109, 114], "visit": [9, 39, 45, 90, 98], "overview": [9, 39, 84, 103, 116], "pleas": [9, 11, 31, 36, 39, 48, 59, 82, 85, 90, 91, 94, 101, 102, 109, 111], "primari": [9, 18, 39, 64, 81, 85, 108, 116], "commun": [9, 33, 34, 39, 41, 51, 54, 60, 69, 70, 85, 96, 111, 116], "workspac": [9, 39, 90, 116], "http": [9, 21, 28, 34, 39, 41, 48, 51, 79, 86, 89, 90, 93, 98, 100, 116], "uf": [9, 18, 31, 36, 39, 40, 48, 79, 90, 116], "com": [9, 28, 39, 41, 48, 63, 79, 86, 90, 93, 98, 100, 109, 116], "someon": [9, 39, 84, 85, 90, 91, 96, 110, 116], "invit": [9, 39, 90, 116], "email": [9, 18, 35, 39, 90, 108, 116], "em": [9, 116], "ufl": [9, 18, 39, 116], "edu": [9, 18, 39, 116], "onc": [9, 34, 39, 48, 55, 59, 68, 73, 79, 83, 84, 86, 89, 90, 93, 97, 98, 101, 108, 109], "post": [9, 39, 47], "import": [9, 33, 39, 43, 50, 51, 53, 57, 59, 64, 73, 79, 81, 84, 85, 89, 96, 97, 100], "updat": [9, 18, 31, 32, 34, 39, 41, 43, 46, 50, 51, 59, 64, 66, 68, 69, 71, 75, 78, 80, 84, 89, 91, 92, 96, 97, 98, 100, 111, 115], "meet": [9, 11, 39, 43, 78, 87, 90, 96, 97, 116], "time": [9, 11, 21, 24, 25, 29, 30, 31, 38, 39, 43, 46, 47, 48, 49, 50, 51, 55, 57, 59, 61, 63, 64, 66, 67, 68, 69, 72, 73, 78, 79, 81, 84, 86, 87, 89, 90, 91, 93, 94, 96, 97, 105, 107, 108, 109, 110, 111, 115, 116], "unlik": [9, 51, 111], "mechan": [9, 11, 16, 21, 40, 42, 87, 116], "repositori": [9, 10, 11, 43, 48, 63, 65, 79, 81, 84, 85, 86, 87, 91, 93, 98, 101], "separ": [9, 30, 35, 46, 48, 56, 85, 90, 96, 101, 109], "resut": 9, "ad": [9, 24, 35, 43, 57, 59, 66, 67, 69, 75, 79, 81, 85, 93, 94, 96, 102, 108], "organ": [9, 10, 39, 43, 85, 89, 90, 116], "ve": [9, 42, 47, 79, 84, 85, 90, 93, 96, 100, 101, 116], "leader": [9, 34, 36, 39, 43, 84, 86, 88, 108, 116], "add": [9, 25, 39, 50, 51, 52, 59, 62, 68, 69, 71, 74, 77, 78, 79, 84, 85, 86, 87, 89, 90, 93, 94, 96, 98, 100, 102, 108, 111], "typic": [9, 45, 51, 81, 85, 90, 105, 116], "one": [9, 20, 30, 31, 33, 34, 35, 40, 43, 48, 49, 50, 51, 56, 57, 59, 63, 64, 68, 77, 78, 79, 81, 83, 84, 85, 86, 87, 89, 90, 93, 94, 96, 100, 105, 107, 108, 109, 111, 113, 115, 116], "repo": [9, 18, 30, 34, 48, 86, 88, 90, 91, 100], "hold": [9, 34, 49, 50, 63, 68, 71, 84, 90, 95, 109, 113], "design": [9, 11, 18, 24, 39, 40, 43, 51, 70, 86, 89, 96, 106, 107, 108, 109, 111, 116], "walk": [9, 86, 93, 97, 105], "gain": [9, 57, 68, 90, 97, 101, 110], "skill": 9, "becom": [9, 28, 41, 43, 50, 51, 55, 68, 78, 81, 85, 86, 96, 111, 116], "wizard": 9, "part": [9, 40, 43, 46, 65, 68, 78, 81, 86, 89, 94, 96, 97, 100, 107, 108, 109, 116], "contact": [9, 38], "list": [10, 20, 32, 33, 39, 40, 43, 46, 47, 49, 50, 51, 56, 59, 62, 63, 64, 66, 67, 68, 71, 74, 77, 78, 80, 84, 85, 86, 89, 90, 93, 94, 97, 108, 111], "common": [10, 36, 40, 57, 81, 85, 86, 87, 90, 93, 94, 96, 97], "word": [10, 33, 62, 63, 84, 91, 94], "acronym": [10, 85], "past": [10, 83, 89, 91, 114], "jargon": 10, "alarm": [10, 46, 56, 60, 77, 111, 115], "boolean": [10, 77], "mani": [10, 35, 42, 43, 53, 55, 57, 60, 73, 84, 86, 89, 93, 94, 96, 108, 113, 116], "node": [10, 33, 46, 50, 51, 52, 53, 54, 55, 56, 57, 59, 63, 67, 71, 72, 73, 74, 78, 89, 96, 97, 99, 103, 111], "kill": [10, 24, 25, 27, 38, 43, 46, 49, 51, 56, 57, 63, 68, 72, 89, 109, 115], "auvsi": [10, 11], "A": [10, 22, 34, 45, 46, 49, 50, 51, 56, 57, 59, 61, 62, 63, 64, 66, 67, 68, 70, 73, 74, 76, 77, 78, 81, 84, 85, 86, 89, 90, 91, 93, 94, 96, 97, 108, 111], "non": [10, 23, 51, 61, 62, 68, 98, 108], "profit": 10, "particip": [10, 48, 106], "bag": [10, 24, 25, 31, 41, 50, 59, 99, 105, 109, 110, 111], "ro": [10, 29, 32, 41, 50, 51, 52, 57, 59, 60, 62, 63, 64, 66, 67, 68, 69, 70, 71, 78, 83, 86, 87, 89, 90, 91, 92, 93, 94, 97, 101, 102, 111, 113], "messag": [10, 24, 25, 46, 49, 50, 51, 52, 53, 56, 57, 58, 59, 60, 61, 62, 64, 67, 68, 69, 70, 71, 73, 74, 78, 81, 84, 85, 97, 98], "interv": [10, 56], "collect": [10, 81, 89, 109], "data": [10, 21, 22, 25, 45, 46, 50, 51, 57, 59, 63, 67, 68, 69, 70, 75, 76, 77, 78, 85, 102, 108, 109, 111, 115], "later": [10, 78, 81, 90, 93, 96, 110], "plai": [10, 24, 25, 79, 90], "debug": [10, 43, 59, 67, 78, 84, 89, 91, 94, 97, 108, 113], "drew": 10, "bagnel": 10, "extern": [10, 50, 85, 96, 114], "usb": [10, 34, 60, 80, 88, 90, 108], "hard": [10, 43, 85, 86, 89, 90, 94, 96, 111, 115], "drive": [10, 27, 38, 49, 80, 90], "after": [10, 27, 35, 38, 43, 45, 50, 51, 53, 55, 57, 59, 61, 64, 68, 69, 78, 79, 81, 84, 85, 86, 90, 93, 94, 96, 101, 105, 108, 109, 110, 111, 115], "legend": [10, 97], "cto": 10, "aurora": 10, "innov": [10, 85, 94, 116], "doppler": 10, "veloc": [10, 20, 63, 67, 68, 94, 109, 111], "log": [10, 30, 34, 50, 59, 73, 75, 94], "Is": [10, 57, 91], "primarili": [10, 50, 54, 102], "underwat": [10, 11, 107, 112, 116], "food": [10, 47, 116], "train": [10, 78, 116], "spontan": 10, "event": [10, 57, 81, 108], "peopl": [10, 84, 91, 96, 108, 113, 114], "somewher": [10, 81, 85, 100], "eat": [10, 116], "indic": [10, 34, 50, 51, 52, 57, 63, 70, 71, 78, 84, 85, 90, 94, 96, 102, 111], "cannot": [10, 51, 68, 74, 78, 88, 90, 109, 114], "larg": [10, 21, 45, 50, 57, 108, 114, 115, 116], "safeti": [10, 50, 84, 113], "featur": [10, 11, 22, 43, 50, 51, 52, 68, 78, 86, 89, 90, 93, 97, 104, 111], "usual": [10, 21, 27, 45, 51, 65, 81, 84, 86, 87, 89, 90, 93, 102, 112, 113], "remot": [10, 60, 63, 84, 101], "mission": [10, 30, 41, 43, 46, 48, 51, 60, 63, 71, 81, 89, 108], "program": [10, 51, 76, 78, 81, 85, 86, 89, 90, 91, 93, 94, 96, 101, 105], "make": [10, 12, 18, 34, 35, 39, 43, 46, 48, 50, 51, 57, 64, 66, 67, 68, 69, 74, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 108, 109, 111, 114, 115], "high": [10, 21, 43, 51, 70, 78, 81, 84, 96, 101, 116], "level": [10, 43, 47, 50, 51, 57, 67, 68, 70, 81, 85, 89, 90, 91, 94, 101, 108], "decis": [10, 12, 96], "waypoint": [10, 12], "percept": [10, 29, 46, 63, 64], "boat": [10, 40, 44, 45, 46, 68], "perform": [10, 62, 64, 81, 83, 89, 90, 93, 94, 101, 107], "purpos": [10, 43, 53, 78, 87, 90, 94, 97, 108, 111], "attempt": [10, 12, 31, 46, 50, 51, 52, 55, 57, 64, 67, 68, 71, 73, 78, 84, 85, 86, 93, 94, 108, 111], "camera": [10, 47, 59, 74, 77, 78, 85, 92, 106, 108, 111, 113], "lidar": [10, 42, 43, 47, 48, 69, 77, 78], "radar": 10, "etc": [10, 31, 34, 43, 64, 68, 78, 80, 81, 84, 85, 86, 89, 90, 91, 94, 108, 109, 111], "poe": [10, 34, 45, 115], "ethernet": [10, 34, 45, 105, 109, 115], "varieti": [10, 60, 63, 78, 84, 87, 94, 96], "protocol": [10, 46, 57, 70, 101], "so": [10, 24, 34, 35, 43, 46, 50, 51, 59, 64, 67, 68, 69, 75, 78, 79, 81, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 100, 101, 102, 105, 107, 108, 109, 110, 111, 113], "transmit": [10, 45, 57], "posit": [10, 21, 43, 46, 57, 63, 66, 67, 68, 71, 74, 77, 78, 85, 89, 94, 97, 108, 109, 111], "world": [10, 21, 48, 68, 90, 111, 116], "orient": [10, 21, 63, 66, 68, 78, 109, 111], "robotx": [10, 11, 42, 44, 46, 48], "compet": [10, 11, 42, 93], "root": [10, 48, 59, 87, 90, 93, 95, 97], "administr": [10, 92], "superus": 10, "account": [10, 18, 31, 39, 78, 80, 90, 101, 111], "linux": [10, 89, 91, 98, 101], "permiss": 10, "anyth": [10, 35, 40, 67, 84, 89, 105, 108, 109, 113], "top": [10, 34, 45, 76, 78, 80, 81, 82, 84, 86, 89, 90, 94, 95, 97, 98, 116], "directori": [10, 26, 31, 61, 78, 87, 89, 90, 96, 97, 100, 109, 110], "entir": [10, 43, 49, 50, 55, 57, 78, 85, 89, 90, 91, 94, 96, 109], "filesystem": [10, 95], "instal": [10, 40, 53, 79, 81, 88, 92, 94, 101], "catkin_w": [10, 48, 90, 91], "src": [10, 48, 78, 90, 91, 96, 97, 100, 111], "shuttl": [10, 30, 98], "comput": [10, 21, 30, 34, 40, 47, 57, 60, 62, 63, 67, 70, 80, 83, 84, 85, 86, 88, 89, 92, 93, 101, 105, 108, 116], "simul": [10, 29, 33, 48, 51, 57, 68, 69, 70, 75, 76, 86, 88, 89, 92, 93, 101, 105, 106, 110], "replac": [10, 41, 50, 51, 63, 87, 89, 93, 95, 108, 109], "zobelisk": [10, 92], "determin": [10, 21, 50, 51, 52, 57, 62, 63, 68, 71, 78, 85, 94, 96, 109, 110], "multipl": [10, 30, 35, 48, 51, 62, 63, 73, 78, 80, 86, 90, 94, 97, 99, 100, 101, 108, 111, 116], "imu": [10, 110], "produc": [10, 21, 38, 46, 57, 61, 67, 78, 83, 93, 102, 111], "vrx": [10, 11, 42, 44, 93], "virtual": [10, 11, 44, 69, 78, 80, 89, 111], "physic": [10, 45, 57, 70, 75, 89, 111, 113], "compon": [10, 34, 39, 44, 45, 50, 51, 63, 66, 68, 89, 93, 96, 97, 109, 110, 111, 113], "travel": [10, 43], "involv": [10, 85, 86, 108, 112, 116], "david": 10, "zobel": 10, "site": [11, 30, 35, 36, 43, 46, 47, 79, 108], "gainesvil": [11, 108], "built": [11, 50, 68, 79, 84, 90, 93, 94], "sinc": [11, 41, 46, 50, 67, 79, 85, 110, 111], "incept": [11, 94], "decad": [11, 81, 116], "ago": 11, "submarin": [11, 37, 40, 90, 105, 106, 108, 111], "vehicl": [11, 21, 22, 29, 33, 34, 41, 42, 68, 85, 92, 112, 116], "champion": 11, "onr": 11, "surfac": [11, 112, 116], "asv": [11, 116], "maritim": 11, "won": [11, 35, 50, 86, 87, 96, 100], "2016": 11, "challeng": [11, 17, 43, 47, 48, 80, 81, 108], "fourth": [11, 63], "extens": [11, 60, 73, 81, 85, 86, 87, 92, 94, 96, 97, 108, 115], "fall": [11, 78, 93, 108, 116], "2021": [11, 116], "season": [11, 46], "record": [11, 23, 24, 43, 63, 67, 94, 105, 109, 110, 116], "introduc": [11, 85, 96], "tour": [11, 116], "It": [11, 29, 30, 34, 36, 38, 43, 51, 52, 56, 68, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 93, 94, 96, 97, 102, 105, 109, 111], "great": [11, 43, 79, 81, 85, 86, 87, 91, 93, 94, 96, 100, 101, 116], "introduct": [11, 87, 92, 116], "watch": [11, 25, 38, 40, 73, 116], "interest": [11, 40, 71, 77, 78, 86, 111, 116], "guid": [11, 33, 48, 68, 79, 80, 86, 87, 91, 92, 93, 97, 98, 105], "electr": [11, 38, 39, 42, 106, 116], "sourc": [11, 44, 46, 50, 51, 56, 57, 58, 59, 61, 62, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 84, 85, 89, 90, 91, 111], "github": [11, 30, 41, 43, 48, 79, 84, 86, 90, 91, 93, 100], "brand": 11, "cultur": 11, "glossari": [11, 91], "practic": [11, 18, 30, 85, 92, 93, 108], "script": [11, 31, 48, 63, 67, 78, 79, 82, 83, 85, 86, 88, 89, 92, 94, 97, 101, 109], "procedur": [11, 108, 111], "deprec": [11, 63, 66, 91], "follow": [12, 18, 20, 31, 33, 42, 46, 47, 48, 51, 52, 53, 57, 60, 68, 71, 79, 81, 82, 83, 85, 89, 90, 91, 92, 93, 94, 95, 97, 102, 108, 109, 111], "optim": [12, 38, 68, 90, 94], "race": 12, "suppli": [12, 45, 51, 52, 57, 59, 63, 68, 78, 94, 96, 105, 111, 114], "aprior": 12, "track": [12, 19, 22, 39, 49, 68, 71, 78, 89, 90, 100, 109], "must": [12, 34, 40, 44, 46, 50, 51, 53, 55, 57, 68, 71, 78, 85, 88, 93, 98, 100, 101, 108, 109, 111, 113, 115], "contend": 12, "racer": [12, 22], "obstacl": [12, 102], "avoid": [12, 50, 51, 59, 81, 85, 102, 108], "todo": [13, 14, 69], "sm2337d": 15, "sylpas": 15, "infix": 15, "gnss": 15, "INS": [15, 21], "velodyn": [15, 44, 63], "puck": 15, "vlp": 15, "16": [15, 57, 63, 115], "see3cam_cu20": 15, "electron": 16, "mechatron": 16, "tbd": 16, "gator": 17, "doubl": [17, 85, 89, 94, 111], "dragon": 17, "collabortaion": 17, "kookmin": 17, "cimar": [17, 18, 40], "laboratori": [17, 116], "nonlinear": [17, 116], "ncr": 17, "autonomi": [17, 78, 112], "architectur": [17, 32, 42, 44, 90, 97, 102], "join": [18, 57, 84, 86, 87, 96], "keep": [18, 38, 39, 41, 43, 48, 51, 52, 64, 68, 71, 78, 79, 84, 85, 86, 94, 96, 100, 107, 108, 110], "valid": [18, 61, 63, 70, 78, 93, 94, 96, 109], "cad": [18, 39, 40, 43], "workbench": 18, "manag": [18, 45, 50, 51, 54, 60, 68, 69, 86, 90, 97], "solidwork": [18, 40], "indyav": [19, 25, 28], "joydriv": 19, "No": [19, 22, 28, 43, 59, 68, 77, 78, 84, 85, 109], "yet": [19, 22, 43, 51, 56, 64, 68, 69, 84, 87, 97], "simpl": [19, 51, 68, 89, 97], "path": [19, 20, 26, 46, 51, 57, 59, 60, 87, 89, 96, 97, 102, 109], "consist": [19, 50, 52, 57, 63, 85, 89, 97, 107, 108, 109], "combin": [19, 57, 63, 78, 85], "proport": [19, 63, 78], "deriv": [19, 50, 59, 68, 71, 74], "error": [19, 21, 49, 50, 51, 54, 57, 58, 63, 64, 67, 68, 70, 77, 79, 81, 84, 85, 86, 87, 91, 94, 96, 97, 108, 110, 111], "delta": [19, 67], "desir": [19, 49, 50, 51, 65, 67, 68, 70, 75, 76, 78, 85, 89, 93, 94, 97, 111, 116], "forward": [19, 25, 48, 51, 72, 108, 111, 113], "mpc": 19, "indyav_launch": [20, 24, 25, 27], "gazebo": [20, 24, 25, 44, 90, 92, 101, 108], "launch": [20, 24, 25, 44, 46, 57, 71, 83, 89, 90, 96, 101, 109, 110, 111], "recogn": [20, 98, 112], "ls": [20, 86, 95], "dev": [20, 48, 57, 115], "input": [20, 60, 72, 74, 77, 78, 85, 94, 110, 111], "output": [20, 30, 60, 63, 64, 68, 78, 79, 89, 94, 96, 108, 109, 111, 115], "id": [20, 25, 46, 49, 51, 57, 63, 68, 69, 74, 77, 78, 81, 90, 101, 111], "event0": 20, "event2": 20, "event4": 20, "event6": 20, "event8": 20, "mouse0": 20, "mouse2": 20, "uinput": 20, "event1": 20, "event3": 20, "event5": 20, "event7": 20, "js0": 20, "mice": 20, "mouse1": 20, "joystick": [20, 72], "jsx": 20, "By": [20, 43, 50, 52, 64, 78, 86, 89, 93, 96, 97], "pass": [20, 30, 50, 51, 53, 57, 59, 61, 64, 67, 68, 72, 73, 78, 81, 84, 85, 86, 94, 96, 97, 108, 111, 112], "js": 20, "argument": [20, 50, 51, 57, 58, 61, 64, 81, 85, 87, 93, 94, 96], "js1": 20, "indyviz": [20, 27], "client": [20, 45, 46, 50, 51, 52, 54, 64, 65, 67, 68, 71, 72, 77, 81, 89], "gazebogui": [20, 27, 89, 90, 113], "left": [20, 22, 43, 59, 68, 77, 78, 90, 93, 111], "steer": [20, 68], "car": [20, 27, 85, 89], "depress": 20, "trigger": [20, 45, 50, 59, 67, 90, 111], "acceler": [20, 72, 90, 111], "releas": [20, 93], "brake": 20, "option": [20, 33, 46, 50, 51, 56, 57, 59, 61, 64, 66, 67, 68, 71, 72, 73, 74, 78, 80, 85, 86, 89, 92, 94, 95, 96, 97, 105], "view": [20, 30, 51, 64, 71, 86, 94, 97, 111], "wheel": [20, 89], "throttl": 20, "investig": 21, "type": [21, 43, 46, 49, 50, 51, 56, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 70, 71, 73, 74, 75, 76, 77, 84, 87, 89, 90, 93, 95, 96, 97, 100, 108, 109], "coupl": 21, "singl": [21, 50, 57, 61, 63, 67, 68, 69, 78, 85, 94, 108], "directli": [21, 34, 59, 68, 79, 81, 90, 94, 111], "yield": [21, 57, 59], "minim": [21, 107], "rtk": 21, "correct": [21, 24, 52, 63, 78, 90, 94, 115], "greatli": [21, 81], "boost": [21, 78, 111], "accuraci": [21, 78], "slow": [21, 90], "10hz": 21, "drift": 21, "reliant": 21, "known": [21, 45, 51, 54, 57, 64, 71, 78, 81, 86, 90, 94, 109], "environment": 21, "condit": [21, 50, 51, 68, 96], "affect": 21, "signal": [21, 46, 67, 70, 94], "definit": [21, 63, 68, 78, 85, 86, 89], "geometr": [21, 22], "compar": [21, 50, 51, 78, 84, 101], "know": [21, 27, 39, 43, 50, 79, 84, 85, 86, 87, 90, 91, 93, 94, 95, 108, 111, 113], "cloud": [21, 60, 63, 66, 78, 111], "plenti": [21, 38], "ndt": 21, "match": [21, 51, 57, 67, 68, 78, 94], "almost": [21, 85], "light": [21, 45, 47, 89, 109], "acquisit": 21, "speed": [21, 29, 52, 66, 68, 72, 75, 81, 85, 90, 94, 111], "spin": [21, 51, 57, 72, 84, 108, 115], "captur": [21, 67], "correctli": [21, 83, 91, 101], "somewhat": [21, 84, 85], "costli": [21, 35], "bad": [21, 34, 51, 94, 109], "anymor": 21, "my": [21, 64, 86, 87, 97], "fast": [21, 48, 51, 52], "movement": [21, 49, 64, 68, 77, 86, 89, 110, 111], "base": [21, 35, 42, 47, 48, 50, 51, 57, 65, 68, 69, 70, 72, 74, 78, 79, 85, 90, 92, 94, 96], "reli": [21, 50, 66, 78, 93], "suchs": 21, "orb": 21, "slam": 21, "webdii": 21, "unizar": 21, "es": [21, 84], "raulmur": 21, "orbslam": 21, "respect": [21, 59, 91, 96, 97, 108, 111], "pre": [21, 85, 90], "map": [21, 22, 50, 69, 78, 111], "cheaper": 21, "than": [21, 30, 35, 43, 50, 51, 52, 55, 57, 59, 68, 69, 75, 82, 85, 86, 87, 90, 91, 93, 94, 111, 114, 116], "100": [21, 38, 59, 72, 85, 94], "fp": 21, "reduc": [21, 41, 43, 97, 101], "effect": [21, 48, 51, 91, 96, 97, 100, 107, 108, 111], "extrem": [21, 108], "usabl": [21, 51, 69], "assumpt": 22, "preconstruct": 22, "perceiv": 22, "potenti": [22, 86], "accur": [22, 46], "Not": [22, 48, 57, 87, 94, 108, 111], "rich": 22, "20hz": 22, "lot": [22, 43, 64, 81, 85, 86, 89, 90, 93, 94, 96, 99, 100, 108], "research": [22, 38, 41, 78, 97, 116], "previou": [22, 50, 57, 69, 84, 97, 101, 111], "experi": [22, 90, 108, 110], "plan": [23, 24, 29, 43, 49, 55, 60, 81, 88, 90, 102, 108, 112], "human": [23, 25, 85, 94, 116], "confid": [23, 63, 78, 93, 96, 108], "player": 23, "earlier": [24, 80, 84, 90, 93, 97], "relat": [24, 32, 42, 46, 50, 51, 52, 59, 60, 70, 78, 79, 84, 90, 92, 101, 111], "instanc": [24, 50, 51, 52, 55, 57, 68, 78, 90, 94], "topicrecord": [24, 25], "Its": 24, "sequenti": [24, 67], "inherit": [24, 25, 50, 51, 54, 57, 64, 70, 76, 94, 97, 111], "overridden": [24, 50, 57, 64, 78], "clear": [24, 25, 50, 51, 68, 69, 72, 78, 94, 97, 99, 111], "path_play": 24, "visual": [24, 25, 48, 68, 69, 78, 89, 97, 111, 113], "wit": 24, "arrow": [24, 25, 89], "trace": 24, "indyav_path": [24, 25], "pathplay": 24, "cpp": [24, 25, 48, 85, 100], "topicplay": 24, "header": [24, 25, 27, 49, 51, 57, 59, 66, 68, 72, 74, 77, 85, 87, 109, 111], "topic_play": 24, "hpp": [24, 25, 85, 91], "save": [25, 78, 84, 86, 89, 90, 97, 111], "overrid": [25, 64, 68, 69, 76], "callback": [25, 50, 51, 52, 56, 59, 64, 67, 68, 71, 74, 78, 111], "odometri": [25, 46, 50, 66, 68, 101, 111, 115], "bring": [25, 43, 86, 89, 94, 108], "subviz": [25, 113], "odom": [25, 46, 48, 50, 66, 68, 101, 110, 111, 113], "path_record": 25, "record_top": 25, "spew": 25, "warn": [25, 50, 68, 73, 86, 87, 93, 108], "safe": [25, 40, 43, 51, 57, 78, 90, 101, 113], "ignor": [25, 46, 51, 68, 77, 78, 93], "enabl": [25, 50, 51, 59, 67, 71, 78, 86, 89, 90, 106], "submov": [25, 113], "f": [25, 50, 53, 79, 84, 85, 87, 94, 97], "5m": [25, 48, 113], "window": [25, 59, 78, 80, 97, 103, 109], "stop": [25, 50, 51, 52, 53, 63, 67, 85, 86, 90, 111], "doesn": [25, 30, 61, 67, 84, 94, 96, 108, 111], "matter": [25, 80, 84, 85, 111], "fals": [25, 48, 50, 51, 57, 59, 67, 68, 70, 71, 75, 77, 78, 87, 93, 110, 111], "termin": [25, 33, 48, 51, 68, 82, 86, 89, 90, 94, 97, 98, 101, 109, 113], "ctrl": [25, 27, 61, 90, 109], "c": [25, 46, 51, 61, 68, 73, 89, 91, 92, 94, 96, 97, 98, 109, 111, 113], "normal": [25, 48, 50, 61, 62, 63, 67, 76, 77, 78, 96, 100, 111], "rosbag": [25, 59, 109], "odom2": 25, "l": 25, "click": [25, 30, 34, 39, 74, 80, 83, 86, 89, 90, 93, 97, 116], "advanc": [25, 90], "updt": 25, "approxim": [25, 78], "second": [25, 46, 50, 51, 53, 56, 57, 59, 63, 64, 67, 68, 70, 73, 75, 77, 78, 81, 82, 90, 94, 111], "pathrecord": 25, "topic_record": 25, "docker": [27, 30, 48, 90], "ground": [27, 35, 41, 47, 69, 102, 108, 113], "truth": [27, 69, 113], "done": [27, 33, 35, 38, 43, 44, 45, 51, 55, 64, 67, 68, 81, 84, 85, 90, 93, 94, 98, 108, 109, 111, 115], "isrequir": 27, "custom": [27, 41, 43, 49, 63, 76, 79, 88, 89, 113], "alia": [27, 51, 69, 90, 113], "setup": [27, 30, 32, 33, 40, 45, 51, 53, 55, 64, 71, 80, 81, 84, 86, 91, 93, 96, 113, 115], "pub": [27, 59, 67, 74, 81], "indyav_control": 27, "steeringstamp": 27, "r": [27, 46, 62, 63, 66, 68, 74, 78, 79, 86, 87, 111], "seq": [27, 63, 78], "stamp": [27, 50, 51, 63, 66, 68, 72, 74, 77, 78], "sec": 27, "nsec": 27, "frame_id": [27, 63, 66, 111], "steering_angl": 27, "revsstamp": 27, "radians_per_second": 27, "30": [27, 94], "000": [27, 96], "circl": [27, 63, 77, 78, 84, 111], "offici": [28, 46, 48, 84, 85, 89, 97], "avail": [28, 33, 40, 43, 48, 50, 57, 64, 68, 78, 84, 86, 87, 89, 90, 97, 109, 113], "www": [28, 98], "interfac": [28, 41, 45, 50, 51, 57, 64, 69, 70, 75, 78, 80, 84, 86, 96, 97, 98, 109, 111, 116], "eas": [29, 108], "prototyp": [29, 85], "earli": [29, 108], "possibl": [29, 34, 43, 57, 78, 84, 90, 94, 108, 109], "cours": [29, 40, 50, 108], "real": [29, 48, 51, 57, 64, 68, 84, 89, 93, 97, 105, 116], "encount": [29, 50, 52, 58, 64, 67, 81, 91], "becaus": [29, 30, 41, 43, 44, 50, 51, 52, 57, 64, 79, 81, 85, 86, 87, 89, 90, 93, 94, 100, 107, 108, 109, 111], "engin": [30, 89], "ensur": [30, 35, 38, 43, 45, 47, 51, 52, 56, 64, 72, 78, 79, 83, 84, 85, 89, 93, 96, 97, 108, 109, 115], "long": [30, 45, 73, 78, 81, 85, 86, 90, 93, 94, 96, 101, 108], "period": [30, 50, 52, 111], "your": [30, 31, 33, 34, 39, 45, 48, 57, 68, 78, 79, 80, 81, 83, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 100, 105, 109, 116], "newli": [30, 62, 69, 87], "problem": [30, 41, 50, 63, 67, 85, 91, 93, 96, 107], "fail": [30, 49, 50, 51, 64, 68, 71, 77, 78, 82, 84, 89, 90, 93, 96, 108, 109, 111], "merg": [30, 43, 86, 100], "master": [30, 43, 51, 52, 79, 84, 91, 100, 108], "branch": [30, 43, 48, 79, 91, 100], "quick": [30, 38, 43, 79, 86, 90, 93, 94, 98, 108], "marker": [30, 69, 71, 74, 90, 111, 112], "unlimit": 30, "resourc": [30, 37, 39, 51, 52, 54, 60, 64, 81, 85, 90, 96], "host": [30, 48, 68, 90, 106], "quickli": [30, 43, 52, 85, 86, 90, 91, 96, 99, 108], "insid": [30, 34, 38, 41, 45, 54, 57, 63, 69, 85, 86, 87, 89, 94, 99, 100, 108, 109, 114], "piec": [30, 63, 70, 81, 85, 86, 90, 93, 94, 96], "largest": [30, 86], "sum": [30, 85, 94], "spun": 30, "15": [30, 57], "dockerfil": 30, "specifi": [30, 46, 50, 51, 57, 61, 64, 67, 68, 69, 72, 78, 81, 86, 89, 94, 96, 97, 108, 111, 112], "python": [30, 48, 51, 57, 68, 79, 81, 90, 92, 97, 109], "compil": [30, 48, 85, 87, 88, 90, 96], "packag": [30, 35, 43, 47, 50, 54, 57, 67, 78, 79, 80, 85, 88, 91, 93, 94, 96, 98, 99, 108], "associ": [30, 36, 50, 51, 57, 58, 63, 66, 68, 77, 78, 85, 101, 111, 116], "graph": [30, 97, 103], "relationship": [30, 42, 51, 89], "depend": [30, 46, 52, 70, 78, 79, 90, 93, 95, 96, 97, 105], "well": [30, 39, 57, 78, 83, 86, 87, 89, 90, 91, 93, 94, 108, 111, 116], "why": [30, 35, 71, 77, 78, 85, 86, 91, 93, 113], "might": [30, 41, 43, 64, 78, 84, 85, 86, 87, 89, 90, 91, 94, 96, 107, 108], "aim": [30, 43, 45, 108, 116], "automat": [30, 33, 34, 51, 61, 86, 87, 96, 98, 105], "fulfil": [30, 69], "push": [30, 48, 74, 85, 90, 91, 100], "sometim": [30, 43, 84, 85, 87, 88, 94, 100], "tab": [30, 84, 90, 97], "next": [30, 33, 41, 51, 67, 68, 69, 80, 84, 93, 95, 96, 97, 98, 101, 109, 111, 116], "statu": [30, 46, 49, 50, 51, 56, 57, 72, 73, 99, 111], "exactli": [30, 90, 91, 93, 113], "execut": [30, 50, 51, 57, 59, 64, 72, 73, 78, 81, 82, 85, 89, 94, 96], "restart": [30, 52, 90, 109], "button": [30, 34, 86, 89, 90, 97, 105], "stuck": [30, 91], "cancel": [30, 51, 53, 64, 72, 81], "befor": [30, 43, 45, 46, 47, 48, 50, 51, 52, 57, 59, 64, 68, 69, 71, 72, 73, 78, 80, 81, 84, 85, 86, 87, 90, 91, 93, 94, 96, 97, 100, 107, 108, 111, 114], "workflow": [30, 48], "whenev": [30, 35, 50, 57, 81, 94, 97, 100, 105, 113], "head": [30, 67, 68, 71, 77, 84, 90, 111, 115, 116], "how": [30, 41, 43, 51, 52, 53, 55, 57, 64, 68, 71, 73, 78, 81, 84, 85, 86, 87, 90, 91, 93, 94, 97, 98, 100, 103, 108, 109, 111], "video": [31, 40, 43, 98, 110], "fileserv": 31, "access": [31, 34, 36, 39, 43, 45, 50, 52, 68, 79, 80, 84, 88, 89, 90, 92, 102, 108, 109], "anywher": [31, 86, 114], "network": [31, 32, 42, 43, 47, 50, 57, 74, 92, 101, 105, 115, 116], "doc": [31, 32, 41, 79, 87], "consider": 31, "amount": [31, 43, 49, 50, 51, 57, 59, 64, 67, 68, 73, 76, 81, 87, 90, 94, 105, 108, 111, 114, 116], "caution": [31, 34, 114], "mount_fileserv": 31, "usernam": [31, 39, 80, 90, 95, 101], "activ": [31, 34, 51, 56, 63, 64, 72, 78, 86], "slack": [31, 39, 84, 90], "don": [31, 35, 79, 84, 85, 86, 87, 89, 90, 93, 94, 105, 109, 111], "chose": 31, "unmount": 31, "umount_fileserv": 31, "server": [32, 33, 34, 46, 48, 50, 51, 52, 63, 64, 71, 77, 80, 81, 92, 96, 101], "lan": [32, 34], "dhcp": [32, 34], "usag": [32, 59, 78, 101], "io": [32, 41, 78], "backup": [32, 45, 84], "restor": [32, 97], "wan": 32, "terminolog": 32, "runner": [32, 64, 96], "job": [32, 85, 93, 96], "step": [32, 35, 41, 63, 79, 80, 86, 89, 90, 91, 95, 96, 101, 114, 116], "ci": [32, 84, 85, 86, 90, 96], "mount": [32, 95, 109], "ubuntu": [32, 86, 89, 92, 98, 101], "solar": [32, 108], "park": [32, 108], "ship": [32, 36, 42, 96, 114], "pack": [32, 42, 43, 57, 68, 75, 108], "materi": [32, 36, 43, 101, 107, 108], "infrastruct": 33, "room": 33, "duplic": [33, 34], "field": [33, 50, 63, 77, 97, 109], "subnet": [33, 34], "192": [33, 34, 45, 101, 109], "168": [33, 34, 45, 101, 109], "37": [33, 34, 45, 101, 109], "mask": [33, 78, 94, 111], "255": [33, 57, 63, 68, 78], "ipv4": [33, 51], "address": [33, 45, 46, 51, 63, 75, 76, 101, 111], "form": [33, 57, 59, 62, 78, 87, 90, 93, 96, 108], "assign": [33, 39, 57, 69, 84, 85, 90, 101], "static": [33, 57, 75, 78], "unus": [33, 90], "pool": [33, 108, 109, 110, 115], "within": [33, 34, 50, 59, 63, 64, 68, 77, 78, 81, 87, 89, 99], "150": [33, 59], "249": 33, "talk": [33, 36, 40, 51, 108], "anoth": [33, 44, 57, 59, 64, 67, 68, 78, 79, 80, 83, 84, 85, 86, 89, 93, 94, 100, 108], "ros_connect": 33, "date": [33, 46, 81, 87, 93, 116], "children": [33, 64], "tmux": [33, 101, 115], "session": [33, 43, 51, 86, 101, 115], "pelican": [34, 35, 36, 43, 108], "case": [34, 35, 36, 43, 50, 52, 67, 84, 85, 87, 88, 90, 91, 94, 108], "while": [34, 43, 44, 45, 51, 52, 53, 58, 64, 73, 78, 81, 84, 85, 86, 87, 89, 90, 93, 94, 96, 97, 100, 105, 108, 110, 111, 113, 114], "intend": [34, 76, 84, 85, 111], "seamless": [34, 97], "portabl": 34, "hour": [34, 84, 91], "outlet": [34, 114], "turn": [34, 41, 48, 66, 84, 89, 90, 109, 113], "down": [34, 47, 51, 55, 64, 71, 72, 85, 93, 95, 97, 102, 108, 111, 114], "ON": [34, 115], "hear": [34, 39, 50, 111], "beep": 34, "led": 34, "laptop": [34, 41, 115], "via": [34, 57, 59, 108], "besid": 34, "label": [34, 39, 45, 69, 78, 93, 97, 108, 109], "Be": [34, 68, 84, 87, 91, 108, 109], "doe": [34, 43, 45, 48, 50, 51, 52, 53, 57, 64, 67, 68, 70, 73, 76, 78, 79, 80, 81, 84, 85, 86, 87, 90, 93, 94, 96, 100, 101, 108, 109, 111, 112, 113, 116], "rj45": 34, "adapt": [34, 51, 67, 68, 78, 108, 110], "ubiquitii": 34, "antenna": [34, 42, 47, 109], "wait": [34, 50, 51, 53, 59, 64, 67, 71, 73, 76, 78, 81, 87, 90, 93, 108], "minut": [34, 81, 108, 109], "report": [34, 46, 50, 53, 63, 99, 108, 111], "verifi": [34, 57, 68, 70, 75, 79, 83, 90, 94, 96, 108, 115], "config": [34, 69, 86, 89, 100, 110, 111], "7": [34, 57, 63, 94, 96, 109, 111, 115], "outsid": [34, 69, 77, 78, 94, 116], "ubiqu": [34, 47], "injector": [34, 45], "ubuiqu": 34, "pfsens": 34, "router": 34, "wifi": [34, 47], "antena": 34, "off": [34, 35, 43, 63, 79, 84, 107, 108], "trednet": 34, "ti": [34, 108, 111, 115], "g80": 34, "8": [34, 39, 59, 63, 78, 85, 87, 90, 105, 108, 109, 110, 114], "gigabit": [34, 45], "xtreme": 34, "j60": 34, "oe350": 34, "ac": [34, 42, 43, 105], "protectli": 34, "fw10408": 34, "12v": 34, "5a": 34, "dc": 34, "splice": 34, "a240": 34, "050g": 34, "amazon": 34, "basic": [34, 43, 59, 86, 89, 96, 101, 108], "velcrow": 34, "lid": 34, "break": [34, 43, 84, 85, 93, 94, 96, 105, 108, 114], "proce": [34, 90], "internet": [34, 81, 84, 108], "web": [34, 45, 79, 86], "accept": [34, 50, 51, 59, 74, 78, 81, 84, 85, 87, 93, 94, 96], "invalid": [34, 51, 57, 63, 70, 77], "certif": 34, "login": [34, 101], "credenti": [34, 45], "xml": [34, 57, 96], "diag_backup": 34, "php": 34, "seriou": 34, "At": [34, 43, 50, 51, 79, 89, 96, 99, 108, 109], "eventu": [35, 51, 53, 100, 105], "locat": [35, 45, 59, 61, 67, 69, 71, 72, 78, 87, 89, 108, 109, 110, 111], "thei": [35, 43, 46, 51, 57, 64, 68, 69, 79, 81, 85, 87, 88, 90, 93, 94, 96, 100, 103, 107, 108, 116], "big": [35, 63, 68, 108, 111], "carri": [35, 43, 70, 108], "everyth": [35, 53, 84, 86, 87, 91, 93, 96, 108], "miss": [35, 43, 51, 108, 111], "item": [35, 43, 46, 93, 94, 108], "annoi": [35, 100], "absolut": [35, 67, 111], "alreadi": [35, 46, 49, 50, 51, 59, 70, 71, 78, 79, 81, 84, 85, 86, 90, 91, 93, 96, 98, 102, 111], "wonder": [35, 43, 85, 90, 96], "referenc": [35, 64, 74], "didn": [35, 90, 108], "accident": [35, 84, 94, 96, 108], "freight": [35, 108], "shipper": 35, "massiv": 35, "heavi": [35, 90, 113], "meant": [35, 50, 51, 67, 85, 90, 94, 111], "carrier": [35, 108, 109], "offer": [35, 85, 89], "dr": [35, 94, 108, 116], "schwartz": [35, 94, 108, 116], "One": [35, 43, 44, 45, 68, 78, 81, 85, 86, 87, 96, 108, 109], "problemat": [35, 108], "lithium": [35, 38], "ion": 35, "precaut": 35, "review": [35, 43], "easier": [35, 43, 50, 81, 86, 89, 90, 93, 94, 96, 97, 108, 110, 114], "bui": [35, 43], "rather": [35, 43, 50, 51, 57, 65, 75, 79, 82, 85, 87, 91, 93, 94, 108, 111], "sent": [35, 46, 50, 51, 57, 59, 61, 67, 70, 77, 97, 108, 111], "sender": [35, 57], "pictur": [35, 114], "receipt": 35, "storag": [36, 90], "wam": 36, "v": [36, 62, 93, 94], "facil": [36, 40], "structur": [37, 50, 57, 89, 94, 96], "clean": [38, 55, 86, 90, 94, 96], "dust": 38, "compress": 38, "blow": [38, 114], "brush": 38, "tool": [38, 43, 44, 45, 84, 85, 92, 93, 96, 101, 108], "could": [38, 41, 43, 50, 51, 61, 68, 71, 77, 78, 84, 85, 87, 90, 91, 93, 94, 96, 108, 111], "electrostat": 38, "screw": [38, 84, 115], "rail": 38, "lube": 38, "weekli": [38, 108], "hg50": 38, "bear": [38, 41], "provis": 38, "conduct": [38, 85, 116], "preserv": [38, 93, 111], "life": [38, 48, 86], "frequenc": [38, 63, 67, 73, 77], "decreas": [38, 96], "coolant": 38, "legit": 38, "spindl": 38, "antifreez": 38, "mixtur": 38, "bacteria": 38, "least": [38, 43, 46, 50, 51, 68, 77, 84, 90, 96, 108, 109, 114, 115], "better": [38, 57, 67, 91, 96, 110], "cool": [38, 64, 84, 85, 86], "properti": [38, 50, 57, 59, 67, 76, 77, 78, 89, 111], "buildup": 38, "slimi": 38, "altern": [38, 39, 68, 86, 87, 109], "distil": [38, 114], "block": [38, 51, 59, 73, 77, 79, 81, 85, 86, 93, 94], "sediment": 38, "tube": [38, 106, 107, 108, 114, 115], "isopropyl": 38, "hand": [38, 43, 84], "aluminum": 38, "ballscrew": 38, "sprai": 38, "good": [38, 39, 43, 78, 84, 86, 87, 90, 93, 94], "far": [38, 107], "knowledg": [38, 43, 84, 108], "goe": [38, 64, 84, 86, 90, 108], "excit": [39, 63, 93, 116], "engag": 39, "andrespulido": 39, "contribut": [39, 43, 86, 90, 92, 96], "notic": [39, 81, 84, 91, 93], "super": [39, 43, 57, 64, 76, 84, 85, 86, 97], "unless": [39, 50, 84, 90, 94, 105], "those": [39, 57, 78, 79, 84, 90, 91, 94], "dropdown": 39, "choos": [39, 64, 68, 84, 86, 93, 97, 116], "did": [39, 43, 51, 79, 85, 96, 108], "yourself": [39, 55, 85, 86, 91, 100, 111], "ui": [39, 45, 89], "righthand": 39, "sidebar": 39, "assigne": 39, "wip": 39, "drone": [39, 42], "killer": 40, "aid": 40, "manufactur": 40, "3d": [40, 44, 62, 74, 77, 78, 83, 89, 107, 111], "model": [40, 43, 44, 59, 74, 78, 83, 98, 111, 116], "assembl": [40, 43, 47, 57, 69, 78], "webpag": 40, "prof": 40, "crane": 40, "advisor": 40, "he": [40, 41, 108], "teach": [40, 91], "dml": 40, "ton": [40, 85], "feel": [40, 79, 84, 85, 86, 87, 90, 93, 94, 116], "free": [40, 79, 85, 86, 87, 90, 94, 98], "dfm": 40, "senior": 40, "present": [40, 43, 94], "machineri": 40, "cnc": 40, "made": [40, 43, 46, 50, 51, 52, 67, 68, 79, 81, 84, 91, 93, 94, 100, 108], "prestridg": 40, "os": [41, 51, 53, 76, 87, 90, 108], "confirm": [41, 80], "autopilot": 41, "telemetri": 41, "ardupilot": 41, "jarrod": 41, "sander": 41, "volunt": 41, "familiar": [41, 81, 90], "But": [41, 93, 100], "user": [41, 45, 50, 51, 57, 60, 64, 69, 78, 80, 85, 88, 94, 95, 97, 100, 101, 111], "lai": 41, "mention": [41, 52, 87, 97], "ar2": 41, "bit": [41, 57, 111], "outdat": [41, 43, 91], "pixhawk": 41, "awai": [41, 77, 78, 107], "properli": [41, 59, 64, 68, 78, 100, 109, 110], "corros": 41, "expand": [41, 85, 89], "teflon": 41, "semiperm": 41, "enclosur": [41, 108], "exposur": 41, "motor": [41, 56, 75, 111], "resist": 41, "consid": [41, 43, 59, 64, 78, 85, 89, 94], "rubber": 41, "gasket": 41, "planner": 41, "rmackay9": 41, "irlock": 41, "readm": [41, 86], "ir": 41, "lock": [41, 57, 73, 77, 108, 109], "precis": [41, 89, 91, 96, 107], "land": [41, 116], "kit": 41, "restrict": 42, "particular": [42, 50, 51, 52, 57, 61, 64, 70, 78, 84, 85, 86, 87, 91, 94, 111], "instead": [42, 43, 46, 50, 51, 57, 68, 78, 85, 87, 90, 93, 94, 96, 100, 101, 108, 111], "simpli": [42, 48, 64, 76], "prepar": [42, 43, 65], "novemb": 42, "sydnei": 42, "australia": [42, 43, 46], "am": [42, 46, 94, 100], "dai": [42, 84, 108, 115], "checklist": [42, 107], "rocket": 42, "station": [42, 46, 47, 48], "throughout": [42, 43, 63, 78, 85, 93, 94, 116], "overal": [42, 63, 73, 96, 111], "improv": [42, 81, 96, 97, 100, 108, 109], "april": 42, "had": [43, 49, 50, 57, 59, 64, 91, 93, 107, 108], "fun": [43, 94], "accomplish": [43, 69], "met": [43, 50, 51], "friend": [43, 69, 84], "everi": [43, 50, 56, 57, 59, 68, 84, 85, 91, 94, 96, 100, 102, 107, 108, 111, 115], "finish": [43, 46, 51, 59, 64, 68, 81, 84, 90, 94, 101], "month": 43, "unfortun": [43, 84, 85, 90], "necessarili": 43, "perfect": [43, 78, 105, 111], "readi": [43, 46, 59, 64, 67, 84, 85, 93, 108, 114], "got": [43, 108], "discuss": [43, 78, 85, 86], "enough": [43, 51, 77, 87, 90, 100, 109], "sustain": 43, "progress": [43, 46, 51, 59, 78, 84, 89, 116], "becam": 43, "confus": [43, 85, 91, 94, 100, 102], "lost": [43, 50, 51, 108, 111], "sync": [43, 57, 59, 111], "regular": [43, 56, 89], "toward": [43, 45, 67, 68, 77, 112], "goal": [43, 49, 63, 64, 68, 72, 85, 96, 112], "mentor": [43, 108], "catch": [43, 51, 61, 81, 85, 86, 94, 96], "flaw": 43, "quicker": [43, 90, 108], "frequent": [43, 46, 70, 78, 93, 102, 105, 111, 116], "cost": [43, 68, 90, 108], "ourselv": 43, "hastl": 43, "subject": [43, 85], "ons": 43, "luggag": 43, "furthermor": [43, 45, 54, 55, 85, 86, 87, 90, 96], "less": [43, 68, 78, 85, 90, 94], "shorten": [43, 94], "manifest": [43, 108], "equip": [43, 108, 109], "toss": 43, "signific": [43, 50, 85, 94], "cautious": [43, 85], "damag": [43, 108], "failur": [43, 51, 63, 64, 73, 85, 96, 108], "critic": [43, 45, 107], "broke": 43, "layer": [43, 63], "bubbl": [43, 107, 114, 115], "wrap": [43, 50, 51, 57, 63, 85, 93, 94], "place": [43, 50, 67, 68, 69, 78, 85, 86, 87, 94, 102, 107, 108, 115, 116], "shipment": [43, 108], "destroi": 43, "breakag": 43, "taken": [43, 68, 78, 91, 95, 108, 114], "weren": [43, 108], "whether": [43, 46, 50, 51, 56, 57, 59, 63, 67, 68, 70, 71, 73, 75, 77, 78, 87, 93, 94, 96, 111], "brought": [43, 86, 91, 108], "everyon": [43, 84, 85, 108], "saniti": [43, 48, 108], "bai": [43, 77], "tell": [43, 48, 85, 87, 93, 96], "gone": [43, 83, 84, 93], "spot": [43, 114], "acquiant": 43, "deep": 43, "focu": [43, 49, 54, 68], "stai": [43, 56, 72, 116], "compactli": 43, "distinct": [43, 46, 94], "miscellan": 43, "fulli": [43, 68, 72, 85, 90, 97, 108], "identifi": [43, 46, 57, 63, 69, 96, 111], "individu": [43, 50, 51, 52, 57, 64, 66, 67, 77, 83, 94, 108, 116], "toolbox": 43, "disassembl": 43, "toolset": 43, "return": [43, 46, 50, 51, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 81, 85, 87, 93, 94, 108, 111], "refil": 43, "stress": 43, "readili": 43, "taught": 43, "tutori": [43, 48, 85, 86, 97], "cover": [43, 47, 84, 90, 93, 96, 107, 114, 116], "altium": 43, "circuit": [43, 63, 108], "pcb": [43, 109], "barrier": 43, "alright": 43, "lengthi": [43, 85], "pdf": 43, "random": [43, 51, 57, 59, 68, 94, 111], "interact": [43, 50, 51, 67, 69, 71, 89, 90, 97, 103, 108], "reader": [43, 85, 94], "youtub": 43, "streamlin": [43, 97], "drop": [43, 91, 97, 108, 112], "suggest": [43, 57, 85, 86, 90, 94], "frustrat": 43, "soon": [43, 108], "end": [43, 45, 50, 51, 56, 57, 65, 67, 71, 75, 78, 81, 85, 86, 87, 93, 94, 105, 108], "diverg": 43, "significantli": [43, 97], "transpar": 43, "redund": [43, 108], "solut": [43, 85, 90, 101], "took": 43, "shortcut": [43, 86], "skimp": 43, "approach": [43, 52, 97, 110], "broken": [43, 55, 93, 96], "older": 43, "core": [43, 64, 68, 84, 90, 96], "librari": [43, 50, 64, 68, 79, 81, 93, 96, 97], "wrong": [43, 49, 51, 64, 77, 78, 81, 84, 90], "nede": 43, "intens": [43, 63], "logic": [43, 63, 85, 94], "necessari": [44, 46, 47, 67, 70, 78, 87, 89, 90], "instrument": [44, 89], "pointcloud": [44, 69, 77, 78, 111], "surround": [44, 78, 94], "area": [44, 85, 96, 111, 112], "pioneer": 44, "foundat": 44, "plugin": [44, 86, 108, 113], "beam": 44, "shore": [45, 63, 114], "reliabl": [45, 51, 52, 57, 77], "extend": [45, 51, 58, 64, 68, 72, 76, 97, 111], "suit": [45, 51, 89, 90, 96, 97], "middl": [45, 108, 111], "row": [45, 63, 78, 85], "ll": [45, 81, 84, 85, 86, 87, 90, 91, 93, 100, 105], "notabl": [45, 57, 81, 108, 116], "rare": [45, 81, 85], "touch": [45, 93], "html": [45, 61, 79, 87, 93, 96], "pin": 45, "disrupt": [45, 70], "infrastructur": 45, "stand": [45, 63, 94, 108], "although": [45, 63, 90, 91], "perfectli": [45, 78], "straight": 45, "airo": 45, "xxx": 45, "20": [45, 59, 67, 78, 90, 94, 96, 106], "81": 45, "browser": [45, 79], "attribut": [46, 49, 50, 51, 56, 57, 58, 59, 63, 64, 67, 68, 69, 70, 71, 74, 75, 76, 77, 78, 85, 94, 111], "ams_statu": 46, "color": [46, 61, 63, 66, 74, 77, 78, 79, 83, 97], "navigator_msg": [46, 49, 63, 77], "srv": [46, 50, 71, 77, 111], "messagedetectdockrequest": 46, "request": [46, 50, 51, 57, 64, 67, 69, 70, 71, 77, 78, 85, 96, 111], "shape": [46, 59, 63, 67, 68, 77, 78, 111], "str": [46, 49, 50, 51, 57, 58, 59, 61, 63, 64, 66, 68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 87, 93, 94, 111], "int": [46, 49, 50, 51, 57, 59, 61, 63, 64, 67, 68, 70, 72, 74, 75, 76, 77, 78, 81, 85, 94, 111], "messagedetectdockrespons": 46, "entrance_g": 46, "exit_g": 46, "messageentranceexitgaterequest": 46, "entranc": 46, "gate": [46, 63, 77, 112], "exit": [46, 50, 51, 78, 87, 89, 90, 95, 101], "messageentranceexitgaterespons": 46, "messagefindflingrequest": 46, "scan": [46, 63], "fling": 46, "messagefindflingrespons": 46, "messagefollowpathrequest": 46, "bool": [46, 49, 50, 51, 56, 57, 59, 61, 63, 67, 68, 69, 70, 71, 73, 75, 77, 78, 85, 87, 93, 94, 111], "sai": [46, 84, 85, 91, 94, 108], "messagefollowpathrespons": 46, "animal_arrai": 46, "messagereactreportrequest": 46, "anim": [46, 77, 89], "p": [46, 51, 62, 76, 78, 85, 90, 111], "platypu": 46, "turtl": [46, 77], "croc": 46, "string": [46, 49, 50, 51, 57, 59, 61, 63, 64, 66, 69, 76, 77, 78, 85, 91, 93, 96, 97, 111], "messagereactreportrespons": 46, "item_statu": 46, "uav_statu": 46, "messageuavreplenishmentrequest": 46, "uav": 46, "stow": [46, 47], "deploi": [46, 47, 72, 115], "fault": [46, 63, 94, 96], "pick": [46, 78, 84, 89, 108], "deliv": [46, 57, 63], "messageuavreplenishmentrespons": 46, "object1": 46, "object1_e_w": 46, "object1_latitud": 46, "object1_longitud": 46, "object1_n_": 46, "object2": 46, "object2_e_w": 46, "object2_latitud": 46, "object2_longitud": 46, "object2_n_": 46, "messageuavsearchreportrequest": 46, "object": [46, 49, 50, 51, 57, 59, 60, 63, 64, 66, 67, 70, 71, 76, 77, 78, 81, 85, 89, 93, 94, 102, 107, 112], "latitud": [46, 77], "float64": [46, 63], "longitud": [46, 77], "w": [46, 59, 62, 63, 66, 87, 114], "messageuavsearchreportrespons": 46, "scanthecodemissionrequest": 46, "perceptionobject": [46, 69, 77], "observ": [46, 77, 78, 82, 83], "scanthecodemissionrespons": 46, "buoi": [46, 63, 89], "outlin": [46, 87], "message_id": 46, "def": [46, 50, 51, 53, 56, 57, 59, 61, 64, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 81, 87, 93, 94, 96, 97, 111], "from_str": 46, "to_str": 46, "navigator_robotx_comm": 46, "pertain": 46, "edit": [46, 48, 79, 87, 93, 101], "delim": 46, "tupl": [46, 50, 51, 57, 59, 66, 68, 70, 71, 74, 78, 111], "delimit": 46, "split": [46, 85, 87, 94, 97, 116], "encod": [46, 57, 59, 63, 78], "team_id": 46, "aedt_date_tim": 46, "use_test_data": 46, "accord": [46, 50, 51, 67, 90, 111], "convert": [46, 50, 57, 59, 61, 62, 63, 66, 67, 68, 77, 78, 93], "aedt": 46, "dock": [46, 48, 63, 77], "heartbeat": [46, 50, 74, 87, 91, 111], "rxhrb": 46, "comma": [46, 94], "element": [46, 47, 63, 68, 77, 78, 85, 94, 97], "gps_arrai": 46, "system_mod": 46, "presum": [46, 78], "datetim": [46, 94], "none": [46, 50, 51, 56, 57, 59, 61, 64, 66, 67, 68, 71, 72, 73, 74, 75, 76, 78, 87, 94, 108, 111], "empti": [46, 50, 51, 57, 63, 64, 76, 78, 85, 89, 96], "zero": [46, 50, 51, 62, 67, 68, 72, 78, 81, 111], "mode": [46, 63, 72, 90], "sampl": [46, 63, 67, 68, 83], "react": 46, "equal": [46, 49, 50, 51, 57, 63, 67, 68, 70, 71, 77, 78, 111], "rxcod": 46, "color_pattern": 46, "pattern": [46, 63, 67, 68, 91, 94, 100], "replenish": 46, "wav": 46, "search": [46, 51, 68, 69, 86, 89, 90, 94, 111], "robotx_cli": 46, "wrench": [46, 47, 66, 68, 72, 110, 111, 115], "get_aedt_date_tim": 46, "gps_coord_callback": 46, "gps_odom_callback": 46, "handle_detect_dock_messag": 46, "handle_entrance_exit_gate_messag": 46, "handle_find_fling_messag": 46, "handle_follow_path_messag": 46, "handle_heartbeat_messag": 46, "handle_react_report_messag": 46, "handle_scan_code_messag": 46, "handle_uav_replenishment_messag": 46, "handle_uav_search_report_messag": 46, "kill_callback": 46, "scan_the_code_callback": 46, "system_mode_callback": 46, "uav_status_callback": 46, "update_system_mod": 46, "wrench_callback": 46, "robotx_comms_cli": 46, "subscrib": [46, 50, 53, 54, 59, 64, 67, 68, 73, 74, 78, 81, 111], "facilit": [46, 50, 51], "transmiss": [46, 57], "director": [46, 116], "m": [46, 51, 67, 78, 84, 90, 92, 111], "y": [46, 51, 62, 63, 66, 68, 71, 72, 77, 78, 85, 94, 97, 110, 111], "self": [46, 50, 51, 57, 59, 64, 68, 81, 94, 96, 97, 108, 111], "lla": [46, 77], "pointstamp": [46, 67, 68, 71, 74, 77, 81], "_": [46, 53, 56, 57, 68, 87, 94, 111], "timer": [46, 57, 68, 111], "rais": [46, 50, 51, 55, 56, 57, 59, 61, 63, 64, 67, 68, 70, 73, 78, 81, 87, 94, 99, 111], "scan_the_cod": [46, 63], "scanthecod": 46, "auv": [46, 112, 116], "experienc": [46, 50, 63, 64, 70, 71, 108, 111], "socket_connect": 46, "tcp_port": 46, "tcp_ip": 46, "allot": [46, 68, 80, 90], "intact": 46, "socket": [46, 67], "establish": [46, 50, 70, 87, 96], "sleep": [46, 51, 53, 57, 81, 108], "retri": 46, "leav": [47, 51, 68, 73, 74, 78, 85], "again": [47, 50, 51, 67, 68, 84, 85, 89, 90, 91, 93, 111], "radio": 47, "handset": 47, "ga": 47, "funnel": [47, 114], "prep": [47, 107], "attach": [47, 50, 51, 66, 68, 72, 78, 114], "rf": 47, "strap": 47, "main": [47, 51, 53, 63, 78, 81, 86, 87, 89, 90, 93, 96, 97, 108, 109, 114], "pontoon": 47, "gatorad": 47, "snack": 47, "spare": [47, 108, 109], "multimet": [47, 115], "bolt": [47, 85], "lanyard": 47, "fuel": 47, "unstrap": 47, "disconnect": [47, 111], "chock": 47, "cooler": 47, "chair": [47, 114, 115], "ic": 47, "drink": 47, "under": [48, 50, 51, 56, 79, 87, 89, 90, 93, 96, 98, 101, 102, 106, 108], "navigator_launch": [48, 83], "screen": [48, 61, 85, 89], "vrxviz": 48, "nmove": 48, "content": [48, 50, 51, 61, 74, 76, 78, 79, 80, 85, 87, 91, 97, 113], "isol": [48, 68, 101], "cheat": 48, "run_task": 48, "worldfil": 48, "vrx_gazebo": 48, "stationkeeping_task": 48, "scenario": [48, 50, 85, 96], "wish": [48, 64, 84], "example_cours": 48, "flag": [48, 57, 68, 78, 79, 84, 93, 111], "immedi": [48, 50, 51, 67, 81, 96, 111], "submit": [48, 84, 85], "run_development_contain": 48, "ever": [48, 51, 84, 89, 108], "editor": [48, 81, 84, 86, 90, 94, 111], "bulk": 48, "stage": [48, 63], "satisfi": 48, "against": [48, 70, 86, 96], "evalu": [48, 94, 110], "osrf": 48, "trial": 48, "git": [48, 79, 86, 91, 115], "hub": 48, "my_branch": 48, "me": 48, "build_vrx_trial_contain": 48, "run_vrx_trial_contain": 48, "instruct": [48, 71, 83, 90], "bitbucket": 48, "org": [48, 51, 78, 89, 98], "vrx_log": 48, "download_log": 48, "bash": [48, 90, 92, 101], "play_log": 48, "year": [48, 90, 106, 108, 109, 112], "download_video": 48, "mplayer": 48, "vrx_2019_video": 48, "mp4": 48, "dock1": 48, "mil_repo": [48, 86], "action_feedback": 49, "action_go": 49, "action_result": 49, "navigator_path_plann": [49, 68], "msg": [49, 50, 51, 53, 56, 59, 63, 64, 67, 68, 71, 73, 81, 97, 111], "feedback": [49, 51, 56, 64, 68, 71, 96, 111], "goalstatu": [49, 51, 64], "goal_id": 49, "goalid": 49, "distanc": [49, 69, 77, 78, 94, 107, 111], "time_till_next_branch": 49, "tree_siz": 49, "descript": [49, 50, 51, 57, 63, 77, 78, 84, 85, 87, 94, 97, 108], "size": [49, 57, 59, 63, 74, 78, 94, 97, 111], "lqrrt": [49, 60], "tree": [49, 87], "float": [49, 50, 51, 56, 57, 59, 62, 63, 64, 66, 67, 68, 71, 72, 73, 74, 75, 77, 78, 94, 111], "bypass": 49, "drive_smooth": 49, "skid": 49, "spiral": [49, 68], "blind": [49, 96], "initial_plan_tim": 49, "move_typ": [49, 68], "speed_factor": 49, "constant": [49, 57, 63, 69, 77, 85, 94], "smooth": [49, 97, 105], "focal": [49, 90], "failure_reason": 49, "reason": [49, 51, 78, 85, 86, 94, 108, 111], "time_remain": 49, "remain": [49, 50, 51, 68], "rospi": [49, 50, 52, 56, 57, 59, 66, 67, 68, 73, 74, 78, 97], "durat": [49, 50, 51, 68, 78, 87], "shooterdo": 49, "public": [49, 50, 67, 69, 77, 78, 85, 94, 111], "already_loada": 49, "already_run": 49, "manual_control_us": 49, "not_load": 49, "success": [49, 50, 57, 67, 68, 71, 77, 83, 84, 111], "enumer": [49, 50, 63, 64, 77, 78, 85, 94, 108], "load": [49, 57, 61, 72, 78, 80, 87, 89, 90, 108], "went": [49, 51, 64, 77], "live": [50, 63, 78, 85, 86, 94], "aliv": 50, "maintain": [50, 51, 85, 96, 99], "serv": [50, 51, 56, 57, 59, 67, 68, 70, 74, 78, 85, 86, 94, 97, 111], "lifecycl": 50, "regist": [50, 51, 57, 84, 90, 96], "broadcast": 50, "listen": [50, 51, 53, 57, 67, 74, 87, 112], "overwrit": [50, 111], "alarm_serv": 50, "print": [50, 51, 53, 57, 61, 64, 68, 73, 76, 78, 93, 94, 101, 107, 111], "alarm_nam": [50, 63, 77], "add_callback": 50, "call_when_rais": 50, "raise_alarm": 50, "cleared_cb": 50, "node_nam": [50, 63, 73], "problem_descript": [50, 63], "raised_cb": 50, "cl": [50, 51, 57, 64, 78, 111], "blank": [50, 89], "from_msg": 50, "as_msg": [50, 69], "as_srv_resp": 50, "unknown": [50, 63, 64, 108], "dict": [50, 51, 57, 64, 74, 78, 93, 94, 111], "exclud": [50, 85], "seri": [50, 57, 70, 90, 92, 93, 94, 97], "equival": [50, 51, 71, 76, 78], "repr": [50, 51, 76, 111], "json": [50, 63, 64, 78], "otherwis": [50, 51, 57, 64, 78, 94, 105, 111], "callabl": [50, 51, 59, 61, 64, 67, 68, 94], "funct": 50, "call_when_clear": 50, "severity_requir": 50, "similarli": [50, 85], "ran": [50, 90, 91, 93, 96], "swallow": 50, "statement": [50, 78, 85, 94], "minimum": [50, 67, 68, 78, 94, 111], "maximum": [50, 59, 67, 68, 69, 78], "alarmmsg": 50, "alarmgetrespons": [50, 77], "alarmget": 50, "classmethod": [50, 51, 57, 64, 78, 111], "low": [50, 51, 78, 108, 111, 114], "alarmset": 50, "handler": [50, 51, 57, 60, 67, 94, 111], "meta_alarm": 50, "make_tagged_alarm": 50, "set_alarm": 50, "appropri": [50, 51, 57, 85, 87, 90, 91, 111, 115], "meta": [50, 57, 89], "union": [50, 51, 57, 64, 67, 68, 74, 78, 94, 111], "succeed": [50, 51, 63, 77], "clear_alarm": 50, "wait_for_serv": [50, 51], "nowarn": 50, "disabl": [50, 59, 67, 78, 85, 89, 90, 110], "kwarg": [50, 51, 57, 59, 61, 70, 72, 74, 75, 76, 94, 111], "keyword": [50, 51, 61, 81, 85, 91, 94], "dumpabl": 50, "dictionari": [50, 51, 57, 74, 78, 111], "integ": [50, 51, 57, 59, 64, 68, 69, 70, 75, 78, 85, 94], "successfulli": [50, 51, 53, 57, 64, 68, 77, 96, 101, 109], "timeout": [50, 51, 59, 64, 70, 73, 78, 87], "forev": [50, 67, 87, 96], "fetch": [50, 84, 91, 100], "clear_callback": 50, "get_alarm": 50, "is_clear": 50, "is_rais": 50, "callback_funct": 50, "worth": [50, 81, 85, 86, 111], "cach": [50, 67, 79, 84, 111], "topic_nam": [50, 59, 78, 111], "msg_class": 50, "prd": 50, "predic": 50, "current_alarm": 50, "meta_pred": 50, "on_set": 50, "comment": [50, 84, 85, 87, 93], "deni": [50, 85], "_alarm": 50, "child": [50, 57, 63, 64, 78, 89], "itself": [50, 51, 78, 81, 85, 87, 94], "new_alarm": 50, "notifi": 50, "reject": [50, 96], "defer": [50, 51, 81], "json_paramet": 50, "func": [50, 67, 69, 78, 111], "proper": [50, 78, 85, 86, 108, 109], "inlin": [50, 63, 78], "constructor": [50, 51, 59, 61, 67, 78, 96], "std": [50, 69, 78, 85, 111], "this_nod": 50, "ros_alarms_msg": [50, 63, 77], "proxi": [50, 51, 54], "full": [50, 57, 63, 68, 69, 72, 85, 108, 109], "const": [50, 67, 69, 78, 87, 111], "readabl": [50, 85, 94], "overload": [50, 64, 78], "getalarm": 50, "updatesever": 50, "nodehandl": [50, 52, 53, 54, 55, 59, 67, 69, 71, 78, 81, 96, 111], "nh": [50, 51, 53, 59, 64, 67, 69, 71, 78, 81, 96, 111], "nullptr": [50, 69], "void": [50, 67, 69, 78, 85, 111], "sev": 50, "alongsid": [50, 90, 111], "modifi": [50, 57, 64, 68, 69, 71, 76, 79, 84, 89, 93, 96, 97, 110], "reprocuss": 50, "addcb": 50, "addclearcb": 50, "addraisecb": 50, "clearcallback": 50, "getcachedalarm": 50, "getlastupdatetim": 50, "getnumconnect": 50, "gettimesinceupd": 50, "isclear": 50, "israis": 50, "ok": [50, 78, 90, 97], "queryclear": 50, "queryrais": 50, "waitforconnect": [50, 87], "waitforupd": 50, "templat": [50, 67, 78, 85, 111], "typenam": [50, 78, 111], "callable_t": 50, "never": [50, 51, 52, 73, 78, 84, 85, 93, 94], "async": [50, 51, 53, 64, 71, 81, 96, 111], "spinner": 50, "queri": [50, 69, 77, 78], "cb": [50, 67], "invok": [50, 94], "severity_lo": 50, "severity_hi": 50, "lowest": [50, 67], "last": [50, 51, 59, 67, 68, 78, 79, 93, 105, 108], "length": [50, 51, 57, 63, 66, 67, 68, 74, 76, 78, 109], "call_scenario": 50, "cb_func": 50, "severity_check": 50, "regul": 50, "enum": [50, 51, 57, 78, 111], "callscenario": 50, "alarm_handl": 50, "monitor": [50, 57, 60, 64, 74, 99], "bu": [50, 57], "noth": [50, 51, 57, 73, 76, 78], "height": [50, 59, 63, 78, 111], "rise": 50, "limit": [50, 63, 68, 81, 96], "obtain": [50, 51, 61, 74, 78, 87, 89, 94], "dynam": [50, 52, 57, 68, 69, 89, 90], "reconfigur": [50, 52, 57, 69], "2hz": 50, "bottom": [50, 78, 79, 90], "hw": [50, 111], "hardware_kill_grace_period_second": 50, "bagger_dump": 50, "set_mobo_kil": [50, 111], "thread": [50, 57, 59, 81, 94], "motherboard": [50, 57, 108, 111], "reinstat": 50, "6": [50, 53, 63, 68, 85, 93, 108, 110, 111], "unset": [50, 111], "deactiv": 50, "arg": [50, 51, 57, 68, 70, 72, 75, 87, 93, 94, 111], "serviceexcept": 50, "hm": 50, "loss": [50, 81, 108], "grace_period": 50, "launch_tim": 50, "max_jump": 50, "ab": 50, "check_continu": 50, "clear_kil": [50, 72], "need_kil": 50, "Will": [50, 51, 78], "discontinu": 50, "disappear": 50, "meter": [50, 68, 74, 78, 111, 113], "jump": [50, 101], "grace": [50, 111], "new_odom_msg": 50, "old": [50, 51, 69, 78, 87, 89, 93, 102, 108, 109], "impos": 50, "update_layout": 50, "thruster": [50, 56, 72, 108, 115], "layout": [50, 79, 80, 90], "offlin": 50, "axrosexcept": 51, "notsetup": 51, "alreadysetup": 51, "xmlrpcexcept": 51, "rosmastererror": 51, "rosmasterfailur": 51, "serviceerror": 51, "toopasterror": 51, "node_handl": 51, "axro": [51, 52, 53, 55, 60, 63, 71, 96], "txro": [51, 67], "shutdown": [51, 55, 64, 71, 81, 96, 111], "solv": [51, 67, 68, 91, 96, 108], "request_bodi": 51, "xmlrpc": 51, "caught": [51, 59], "bodi": [51, 64, 66, 84, 85, 96, 105, 111, 116], "ros_messag": 51, "explain": [51, 64, 79, 84, 85, 93, 94], "outgo": 51, "visibl": [51, 83], "histori": [51, 78, 84, 94, 110, 116], "buffer": [51, 57, 59, 68, 69, 76, 78], "wrap_timeout": 51, "fut": [51, 81], "await": [51, 53, 64, 81, 96, 111], "genpi": [51, 59, 63, 66, 72, 78], "asyncio": [51, 53, 67, 92], "wrap_time_notic": 51, "coroutin": 51, "timeouterror": 51, "wall_sleep": 51, "xmlrpclegaltyp": 51, "master_proxi": 51, "master_uri": 51, "shutdown_callback": 51, "tcpros_handl": 51, "xmlrpc_handler": 51, "xmlrpc_server_uri": 51, "from_argv": [51, 53, 81, 96], "from_argv_with_remain": 51, "advertis": [51, 53, 81], "advertise_servic": 51, "delete_param": [51, 53], "get_nam": [51, 53, 96], "get_param": [51, 53, 67], "get_param_nam": 51, "get_service_cli": 51, "get_tim": [51, 53], "has_param": 51, "is_run": 51, "is_shutdown": 51, "resolve_nam": 51, "resolve_name_without_remap": 51, "search_param": 51, "set_param": [51, 53], "sleep_until": 51, "namespac": [51, 69, 74, 78], "addr": 51, "remap": 51, "asynchron": [51, 54, 96], "helper": [51, 57, 59, 72, 75, 78, 81, 93, 94, 111], "constructe": 51, "upon": [51, 57, 59, 67, 71, 74, 76, 78, 83, 90, 111], "context": [51, 94, 97], "spawn": [51, 55, 64, 71, 81], "initiail": 51, "enter": [51, 80, 89, 90, 95, 108], "uri": [51, 52], "incom": [51, 52, 57, 69], "tcpro": 51, "rout": [51, 57, 78], "tcprosprotocol": 51, "put": [51, 75, 78, 84, 85, 86, 89, 91, 94, 107, 108, 113], "nsexampl": 51, "append": [51, 56, 69, 76], "localhost": [51, 53], "message_typ": 51, "latch": [51, 53], "service_messag": 51, "servicemessag": 51, "delet": [51, 57, 69, 71, 77, 78, 84, 86, 94], "typeerror": [51, 94], "default_nam": 51, "argv": 51, "anonym": [51, 53], "always_default_nam": [51, 96], "constructionf": 51, "complex": [51, 78, 85, 89, 94, 108], "stronger": 51, "retriev": [51, 78, 94], "rosmasterexcept": [51, 53], "service_typ": 51, "conjunct": [51, 109], "opposit": 51, "resolv": [51, 73], "term": [51, 85, 94, 101, 111, 113], "wiki": [51, 86, 96, 97], "assertionerror": [51, 78], "shutdown_serv": 51, "shut": [51, 55, 64, 71, 97], "loop": [51, 81, 94, 108], "els": [51, 57, 84, 85, 93, 94, 96, 105, 108], "resourcewarn": 51, "emit": 51, "valueerror": [51, 68], "future_tim": 51, "from_sec": 51, "lambda": 51, "get_connect": 51, "get_last_messag": 51, "get_last_message_tim": 51, "get_next_messag": [51, 52, 53], "recently_read": [51, 52], "callerid": 51, "caller": [51, 94], "overhead": [51, 94], "queu": 51, "still": [51, 52, 63, 68, 84, 85, 87, 90, 93, 94, 96, 100], "claim": [51, 94, 96], "onto": [51, 57, 62, 78, 84, 90, 97, 109, 111, 114], "serial": [51, 57, 60, 63, 70, 75, 111], "parent": [51, 64, 81, 89, 94], "aspect": [51, 85, 89, 94, 116], "servicetyp": 51, "wait_for_servic": [51, 73], "request_class": 51, "appear": [51, 52, 78, 83, 84, 85, 89, 90, 93, 94, 97, 98, 100], "per": [51, 63, 64, 67, 68, 83, 108], "transport": [51, 108], "iter": [51, 68, 69, 78, 85, 93], "aiohttp": 51, "clientsess": 51, "asynciotransport": 51, "ros_master_uri": [51, 53, 101, 108], "caller_id": 51, "discret": 51, "contract": [51, 96], "__getattr__": 51, "master_api": 51, "behalf": 51, "outbound": 51, "hasparam": 51, "always_tru": 51, "attr": 51, "multitud": [51, 86], "status_msg": 51, "goal_msg": 51, "actiongo": 51, "status_text": 51, "actionlib_msg": [51, 63, 64], "origin": [51, 62, 64, 68, 74, 76, 78, 84, 89, 91, 93, 100, 109, 111], "uint8": [51, 63], "forget": [51, 108], "get_feedback": 51, "get_result": 51, "action_cli": 51, "instanti": [51, 59], "actionfeedback": 51, "actionresult": 51, "is_act": 51, "is_cancel_request": 51, "is_new_goal_avail": 51, "is_preempt_request": 51, "publish_feedback": 51, "set_abort": 51, "set_preempt": 51, "set_succeed": 51, "action_typ": 51, "goal_cb": 51, "preempt_cb": 51, "simplifi": [51, 96, 97, 100], "arriv": [51, 78, 108], "greater": [51, 68, 69, 96, 111], "timestamp": [51, 59, 66, 68, 78, 97, 111], "bump": [51, 108], "test_act": 51, "turtle_actionlib": 51, "shapeact": 51, "accept_new_go": 51, "shapefeedback": 51, "preempt": [51, 63, 68], "wahoo": 51, "shaperesult": 51, "apothem": 51, "shortli": 51, "independ": [51, 57, 60, 100], "abort": [51, 64], "cancel_all_go": 51, "cancel_goals_at_and_before_tim": 51, "send_goal": 51, "final": [51, 57, 62, 64, 71, 83, 89, 93, 94], "assist": [51, 59, 72, 86], "from_pose_messag": 51, "from_transform_messag": 51, "ident": [51, 78], "q": [51, 62], "tf": [51, 77, 111], "multipli": [51, 62, 63, 94], "geometry_msg": [51, 63, 66, 78, 81, 111], "z": [51, 62, 63, 66, 68, 72, 77, 78, 86, 110, 111], "coordin": [51, 68, 69, 74, 77, 111, 116], "send_transform": 51, "broadast": 51, "transformstamp": 51, "history_length": [51, 94], "10000000000": 51, "modul": [52, 54, 57, 65, 68, 93, 96, 100, 108, 109], "understood": [52, 94], "roscor": 52, "rosmasterproxi": 52, "incorrectli": [52, 94], "improperli": 52, "respond": [52, 77], "modern": [52, 93], "effici": [52, 108], "poll": [52, 73], "latter": 52, "sublish": 53, "rosgraph_msg": 53, "clock": 53, "uvloop": 53, "subsub": 53, "count": [53, 63, 76, 78], "recv": 53, "heard": 53, "clock2": 53, "gather": [53, 81], "subsub_task": 53, "create_task": [53, 81], "__name__": [53, 64, 81, 96], "__main__": [53, 81, 96], "special_nod": 53, "special_param": 53, "std_msg": [53, 63, 78, 97], "int32": [53, 63], "running_tim": 53, "cancellederror": 53, "across": [54, 56, 71, 78, 116], "neighbor": [54, 69], "api": [54, 96], "improp": [55, 94], "runtimeerror": 55, "hw_kill_rais": 56, "pub_voltag": 56, "supply_voltag": [56, 63], "add_voltag": 56, "hw_kill_cb": 56, "publish_voltag": 56, "navigator_battery_monitor": 56, "batterymonitor": 56, "averag": [56, 63, 78], "battery_monitor": 56, "four": [56, 66, 75, 78, 85], "1000": [56, 59, 101], "entri": [56, 78, 94], "battery_voltag": 56, "float32": [56, 63, 97], "voltage_check": 56, "board": [57, 60, 67, 108, 109], "sub8_driv": 57, "addition": [57, 59, 85, 87, 89, 93, 94, 97, 109], "pkg": [57, 96], "usb_to_can_driv": 57, "tty0": 57, "ftdi_ft232r_usb_uart_a800ghcf": 57, "if00": 57, "port0": 57, "baudrat": [57, 75], "115200": 57, "can_id": [57, 76, 111], "device_handl": 57, "18": [57, 92, 98], "sub8_thrust_and_kill_board": [57, 111], "thrusterandkillboard": 57, "83": [57, 111], "sub8_actuator_board": 57, "actuatorboard": 57, "simulated_devic": 57, "thrusterandkillboardsimul": 57, "actuatorboardsimul": 57, "is_simul": 57, "wherea": 57, "0xc0": 57, "payload": [57, 111], "tabl": [57, 87, 91, 94, 98, 115], "0xc1": 57, "binari": [57, 78, 85], "slightli": [57, 90], "formula": [57, 85], "modulo": 57, "applicationpacketwrongidentifierexcept": 57, "usb2canexcept": 57, "checksumexcept": 57, "payloadtoolargeexcept": 57, "invalidflagexcept": 57, "invalidstartflagexcept": 57, "invalidendflagexcept": 57, "thrown": [57, 94], "usb2can": 57, "cantousb": 57, "can2usb": 57, "sof": 57, "eof": [57, 61], "from_byt": 57, "sendalettermessag": 57, "0xaa": 57, "struct_format": 57, "b": [57, 62, 63, 66, 68, 73, 74, 78, 79, 81, 84, 91, 94, 108, 111], "__init__": [57, 94, 97], "letter": [57, 85], "ord": 57, "unpack": [57, 68], "suitabl": [57, 77], "expected_identifi": 57, "arrai": [57, 59, 62, 63, 66, 67, 68, 69, 71, 74, 78, 94, 111], "ser": 57, "read_packet": 57, "send_data": 57, "baud": [57, 70, 75], "9600": [57, 70, 75], "wrapper": [57, 94], "ttyusb0": 57, "succefulli": 57, "device_id": 57, "larger": [57, 78], "on_data": [57, 111], "exampleechodevicehandl": 57, "last_sent": 57, "send_new_str": 57, "to_sec": [57, 97], "choic": [57, 68, 90], "ascii_lett": 57, "parse_module_dictionari": 57, "process_in_buff": 57, "runtim": [57, 68, 85], "pars": [57, 58, 111], "sim_board": 57, "send_to_bu": 57, "whole": [57, 78, 84, 109], "from_mobo": 57, "mark": [57, 68, 80, 81, 85, 94, 111], "begin": [57, 64, 68, 69, 78, 81, 85, 86, 90, 93, 94, 96, 111], "partial": 57, "charact": [57, 61, 85, 94], "create_receive_packet": 57, "strip": [57, 115], "filter_id": 57, "is_rec": 57, "length_byt": 57, "create_request_packet": 57, "create_send_packet": [57, 76], "receive_length": 57, "0x37": 57, "famili": [57, 85], "belong": [57, 63, 78], "subclass": [57, 69, 111], "65535": 57, "fletcher": 57, "thrust": 57, "heartbeatpacket": 57, "bf": 57, "thrustsetpacket": 57, "0x02": 57, "killsetpacket": 57, "0x03": 57, "killreceivepacket": 57, "sub9_thrust_and_kill_board": [57, 111], "heartbeatsetpacket": 57, "heartbeatreceivepacket": 57, "sub8_battery_monitor_board": 57, "batterypollrequestpacket": 57, "ffff": 57, "batterypollresponsepacket": 57, "bb": 57, "sub_actuator_board": [57, 111], "actuatorsetpacket": 57, "actuatorpollrequestpacket": 57, "actuatorpollresponsepacket": 57, "0x05": 57, "sub9_system_status_board": 57, "setledrequestpacket": 57, "guarante": 57, "incomplet": [57, 78], "inbound_packet": 57, "simulatedusbtocanstream": 57, "decor": [57, 78, 81], "dataclass": 57, "annot": [57, 87, 93, 94], "rest": [57, 85, 86, 87, 90, 108], "examplepacket": 57, "msg_id": 57, "subclass_id": 57, "payload_format": 57, "bhhf": 57, "example_char": 57, "example_short": 57, "example_short_two": 57, "example_float": 57, "acknowledg": 57, "argumentparserexcept": 58, "throwingargumentpars": 58, "bag_path": 59, "image_info_top": 59, "image_top": 59, "crawl": 59, "opencv": [59, 78, 83, 93], "compat": [59, 87, 88, 90, 93, 109], "sensor_msg": [59, 63, 66, 69, 78, 111], "is_imag": 59, "max_msg": 59, "inf": 59, "tqdm": 59, "bar": [59, 78, 89, 90, 91, 113], "camerainfo": [59, 78], "cam": [59, 78], "hor_num": 59, "max_height": 59, "max_width": 59, "total": [59, 68, 73, 85, 90, 93, 94, 108, 111], "width": [59, 63, 67, 78, 111], "win_nam": 59, "add_imag": 59, "800": 59, "gui": [59, 64, 78, 80, 83, 86, 89, 90, 92, 113], "smaller": [59, 78, 85, 87, 108], "img": [59, 68, 78], "33": [59, 78], "imshow": [59, 78], "im_pub": 59, "bgr8": [59, 78], "queue_siz": [59, 78], "mat": [59, 78, 111], "convers": [59, 78], "cvbridg": [59, 78], "creation": 59, "queue": [59, 78], "cv_imag": 59, "ndarrai": [59, 62, 66, 67, 68, 71, 74, 78, 111], "cvbridgeerror": 59, "camera_info": 59, "im_sub": 59, "info_sub": 59, "last_image_head": 59, "last_image_tim": 59, "info_cb": 59, "wait_for_camera_info": 59, "wait_for_camera_model": 59, "behav": 59, "convent": [59, 111], "susbcrib": 59, "unregist": [59, 97], "pinholecameramodel": [59, 74, 78, 111], "camera_info_left": 59, "camera_info_right": 59, "last_image_left": 59, "last_image_left_tim": 59, "last_image_right": 59, "last_image_right_tim": 59, "left_image_top": 59, "right_image_top": 59, "slop": 59, "synchron": [59, 81], "numpi": [59, 62, 66, 67, 71, 78, 94, 111], "front": [59, 83, 94, 102, 108], "image_rect_color": [59, 78], "signatur": [59, 85, 93, 94], "foo": 59, "left_img": 59, "right_img": 59, "pair": [59, 66, 85, 94, 108], "latest": [59, 80, 84, 91, 93, 98, 111], "exact": [59, 68, 91], "throw": [59, 64, 85, 94], "unsubscrib": [59, 97], "enable_dis": 59, "is_go": 59, "publish_plot": 59, "dpi": 59, "2d": [59, 63, 78, 97, 111], "np": [59, 62, 66, 67, 68, 71, 74, 78, 94, 111], "init_nod": 59, "my_nod": 59, "my_plott": 59, "my_plotter_top": 59, "titl": [59, 61, 84, 85], "sin": 59, "wave": 59, "data_s": 59, "y1": [59, 85], "rand": [59, 94], "x1": [59, 85], "arang": 59, "x2": [59, 85], "linspac": 59, "y2": [59, 85], "vstack": 59, "req": [59, 67, 69, 71, 111], "setboolrequest": [59, 67, 77, 111], "setboolrespons": [59, 67, 77, 111], "v_line": 59, "subsystem": [60, 90, 109], "mathemat": 60, "sanit": 60, "mil_miss": [60, 64], "pcodar": 60, "remote_control_lib": 60, "ros_alarm": [60, 77, 99], "mil_usb_to_can": 60, "vision": [60, 63, 77, 102, 108, 116], "mil_poi": [60, 77], "poi": 60, "sabertooth2x12": 60, "sabertooth": 60, "2x12": 60, "get_ch": 61, "stdin": 61, "keyboardinterrupt": 61, "eoferror": 61, "characetr": 61, "fprint": 61, "msg_color": 61, "auto_bold": 61, "newlin": [61, 85], "factori": 61, "printer": 61, "bold": 61, "url": [61, 85, 87, 90, 94, 100], "output_filenam": 61, "filenam": [61, 75, 78], "download_and_unzip": [61, 87], "output_dir": [61, 87], "zip": [61, 87, 115], "unzip": [61, 87], "ioerror": [61, 87], "slugifi": 61, "lowercas": 61, "alpha": [61, 63], "hyphen": 61, "rotate_vect_by_quat": 62, "quaterion": 62, "vq": 62, "skew_symmetric_cross": 62, "skew": 62, "symmetr": 62, "cross": [62, 63, 68, 77], "deskew": 62, "dtype": [62, 78], "scalartyp": 62, "revers": [62, 72, 78, 108], "divid": [62, 68, 94], "norm": 62, "arraylik": [62, 78], "compose_transform": 62, "translat": [62, 63, 78, 111], "make_rot": 62, "vector_a": 62, "vector_b": 62, "align": [62, 85, 89, 108], "dot": [62, 90], "quat_to_rotvec": 62, "quat": [62, 85], "euler_to_quat": 62, "rotvec": 62, "pend": 63, "simpleactioncli": [63, 64], "truli": 63, "third": [63, 77, 81, 98, 111], "theta": [63, 66, 78], "36": [63, 101], "child_frame_id": 63, "angular": [63, 66, 68, 111], "torqu": [63, 66, 68, 72, 111], "mil_msg": [63, 69, 78, 111], "nav_msg": 63, "pa": 63, "pf": 63, "remote_conn": 63, "sa": 63, "sf": 63, "induc": 63, "acoustic_ping": 63, "buoy_field": 63, "coral_survei": 63, "detect_deliver_platform": 63, "empty_spac": 63, "fake_identify_and_dock": 63, "fake_scan_the_cod": 63, "fake_shoot": 63, "find_the_break": 63, "gate1": 63, "gate2": 63, "gate3": 63, "identify_and_dock": 63, "start_gate_buoi": 63, "totem": 63, "pclinlier": 63, "shooter": [63, 70, 72, 77], "start_gat": [63, 71], "fake": 63, "gate_1": 63, "gate_2": 63, "gate_3": 63, "buoyfield": 63, "findbreak": 63, "coralsurvei": 63, "acoust": [63, 77], "pinger": [63, 67, 77, 112], "acousticping": 63, "emptyspac": 63, "point32": 63, "pcl": [63, 69, 78, 93, 111], "fit": [63, 78, 94], "hostnam": 63, "group": [63, 89], "nav": [63, 106, 108, 115], "wamv": [63, 74], "ubnt": 63, "vlp16": 63, "sick": 63, "lms111": 63, "sample_r": [63, 67], "hydrophon": [63, 67, 107], "h0": 63, "h1": 63, "h2": 63, "h3": 63, "hydrophone_sampl": 63, "amplitud": 63, "freq": [63, 67], "trigger_tim": 63, "sequenc": [63, 68, 78, 111], "consecut": 63, "increas": [63, 78, 86, 94, 96], "rostim": [63, 66, 72], "rgb": 63, "green": [63, 77, 84, 89, 90, 94, 109, 113], "blue": [63, 77, 78, 109], "is_bigendian": 63, "endian": 63, "int16": 63, "int8": 63, "uint16": 63, "uint32": 63, "datatyp": 63, "is_dens": 63, "point_step": 63, "row_step": 63, "unord": 63, "channel_temperatur": 63, "commanded_veloc": 63, "measured_posit": 63, "measured_veloc": 63, "motor_curr": 63, "motor_pow": 63, "motor_temperatur": 63, "supply_curr": 63, "roboteq_msg": 63, "parti": [63, 98], "rad": [63, 111], "6m": 63, "volt": 63, "amp": 63, "temperatur": 63, "celsiu": 63, "fet": 63, "fault_emergency_stop": 63, "fault_mosfet_failur": 63, "fault_overheat": 63, "fault_overvoltag": 63, "fault_sepex_excitation_fault": 63, "fault_short_circuit": 63, "fault_startup_config_fault": 63, "fault_undervoltag": 63, "status_analog_mod": 63, "status_at_limit": 63, "status_microbasic_script_run": 63, "status_power_stage_off": 63, "status_pulse_mod": 63, "status_serial_mod": 63, "status_stall_detect": 63, "adc_voltag": 63, "ic_temperatur": 63, "internal_voltag": 63, "overh": 63, "littl": [63, 81, 83, 85, 86, 87, 90, 94, 109, 110], "short": [63, 84, 85, 94], "emerg": [63, 72], "32": [63, 67, 115], "mosfet": 63, "64": 63, "startup": 63, "128": [63, 75], "puls": [63, 70], "analog": [63, 109], "stall": 63, "microbas": 63, "chip": 63, "digit": 63, "centerx": 63, "centeri": 63, "triangl": [63, 77], "color_confid": 63, "shape_confid": 63, "presenc": [63, 108], "string_pattern": 63, "decode_paramet": 64, "get_miss": 64, "has_miss": 64, "setup_bas": 64, "shutdown_bas": 64, "run_submiss": 64, "send_feedback": 64, "send_feedback_child": 64, "submiss": 64, "decod": [64, 87], "parametersexcept": 64, "cli": 64, "mycoolmiss": 64, "moment": [64, 78, 84], "unrecogn": 64, "prefix": [64, 93], "movementmiss": 64, "myfancyrobotmiss": 64, "my_sub": 64, "my_top": 64, "mymessag": 64, "mission_runn": 64, "missionrunn": 64, "makechainwithtimeout": 64, "reus": 64, "missionexcept": 64, "timeoutexcept": 64, "explanatori": 64, "inconsist": [64, 108], "submissionexcept": 64, "available_miss": 64, "cancel_miss": 64, "run_miss": 64, "bootstrap": [64, 78], "done_cb": 64, "active_cb": 64, "feedback_cb": 64, "_goalstatu": 64, "transit": [64, 93], "orchestr": [65, 111], "mil_missions_cor": 65, "pose_to_numpi": 66, "rosmsg_to_numpi": 66, "twist_to_numpi": 66, "twist": [66, 111], "posetwist_to_numpi": 66, "posetwist": [66, 111], "odometry_to_numpi": 66, "wrench_to_numpi": 66, "numpy_to_point": 66, "numpy_to_point2d": 66, "point2d": [66, 78, 111], "numpy_to_quaternion": 66, "np_quaternion": 66, "numpy_to_twist": 66, "linear_vel": 66, "angular_vel": 66, "numpy_to_wrench": 66, "forcetorqu": 66, "numpy_matrix_to_quaternion": 66, "np_matrix": 66, "3x3": [66, 78, 109, 111], "numpy_pair_to_pos": 66, "np_translat": 66, "np_rotation_matrix": 66, "numpy_quat_pair_to_pos": 66, "numpy_to_polygon": 66, "polygon": [66, 69, 78], "numpy_to_vector3": 66, "vec": [66, 78], "vector3": [66, 77], "numpy_to_pose2d": 66, "pose2d": 66, "numpy_to_colorrgba": 66, "colorrgba": [66, 74], "numpy_to_pointcloud2": 66, "pointcloud2": [66, 111], "make_head": 66, "make_wrench_stamp": 66, "wrenchstamp": [66, 68], "make_pose_stamp": 66, "posestamp": [66, 68, 77], "v_sound": 67, "dist_h": 67, "dist_h4": 67, "tradit": [67, 85, 94], "fresh": [67, 71, 101], "1497": 67, "zero_mean": 67, "rescap": 67, "li": [67, 96], "compute_freq": 67, "freq_rang": 67, "solid": 67, "bin_to_freq": 67, "fft_length": 67, "freq_to_bin": 67, "preprocess": 67, "desired_sample_r": 67, "upsampl": 67, "approx": [67, 78], "bandpass": 67, "appli": [67, 78, 85, 90, 110, 111], "fir": 67, "compute_delta": 67, "max_delai": 67, "template_dur": 67, "subsequ": [67, 79], "make_templ": 67, "25": [67, 78], "lower": [67, 68, 78, 108], "match_templ": 67, "calculate_error": 67, "slide": 67, "find_minimum": 67, "quadrat": 67, "interpol": [67, 68, 94], "compute_pos_4hyd": 67, "declin": 67, "sph_dist": 67, "bunch": [67, 81, 86, 116], "trig": 67, "phrase": [67, 85], "nllsq": 67, "dir_callback": 67, "get_direct": 67, "get_last_posit": 67, "get_posit": 67, "heading_cb": 67, "set_callback": 67, "asycio": 67, "heading_msg": 67, "vector3stamp": [67, 74], "trans_width": 67, "convolv": 67, "is_ready_to_make_filt": 67, "make_filt": 67, "streamed_bandpass": 67, "care": [67, 81, 85, 87, 109, 111], "overlap": 67, "bound": [67, 69, 78], "magic": [67, 85, 105], "higher": [67, 78, 89, 90, 96, 108], "slower": 67, "remez": 67, "general_low": 67, "general_upp": 67, "window_tim": 67, "filter_respons": 67, "hydrophones_cb": 67, "happen": [67, 84, 96], "target": [67, 71, 77, 78, 85, 108, 111, 112], "khz": 67, "hydrophonesamplesstamp": 67, "triggerrequest": 67, "triggerrespons": 67, "meth": 67, "ping_cb": 67, "samples_per_second": 67, "private_nh": 67, "privat": [67, 69, 78, 85], "hydrophonesampl": 67, "tri": [67, 68, 91, 110], "size_t": [67, 69, 78, 111], "2e6": 67, "set_buff": 68, "set_feasibility_funct": 68, "nstate": 68, "ncontrol": 68, "goal_buff": 68, "is_feas": 68, "effort": [68, 91, 111], "half": [68, 90, 113], "edg": [68, 78], "region": [68, 77, 78], "feasibl": [68, 107], "kill_upd": 68, "set_goal": 68, "set_resolut": 68, "set_runtim": 68, "set_system": 68, "unkil": [68, 89, 111, 113], "update_plan": 68, "lqr": 68, "horizon": 68, "dt": [68, 111], "05": [68, 111], "fpr": 68, "error_tol": 68, "erf": 68, "ufunc": 68, "min_tim": 68, "max_tim": 68, "max_nod": 68, "100000": 68, "goal0": 68, "sys_tim": 68, "u": [68, 84], "timestep": 68, "That": [68, 79, 85, 86, 93, 96, 105, 109, 116], "xnext": 68, "polici": 68, "k": [68, 78, 93, 94, 111, 113], "riccati": 68, "equat": [68, 111], "min": [68, 69], "heurist": 68, "retent": 68, "factor": [68, 78], "grown": 68, "infeas": 68, "fraction": 68, "retain": 68, "converg": 68, "xgoal": 68, "grow": [68, 94], "plan_reached_go": 68, "closest": [68, 77, 78], "stuff": [68, 94], "abrupt": 68, "routin": 68, "resolut": [68, 78, 111], "vi": 68, "versa": 68, "mistak": [68, 81, 84, 96, 108], "x0": 68, "sample_spac": 68, "goal_bia": 68, "xrand_gen": 68, "prune": 68, "finish_on_go": 68, "specific_tim": 68, "seed": 68, "get_stat": 68, "get_effort": 68, "motiv": [68, 108], "uniform": 68, "min1": 68, "max1": 68, "min2": 68, "max2": 68, "arbitrari": [68, 78], "Or": [68, 84, 94], "fastest": 68, "breach": 68, "nearest": [68, 69], "growth": 68, "nonholonom": 68, "hault": 68, "exce": 68, "dx": 68, "dy": [68, 114], "highlight": [68, 79], "trajectori": [68, 72, 110], "index": [68, 78, 94, 96], "add_nod": 68, "climb": 68, "seed_stat": 68, "seed_lqr": 68, "pid": [68, 106], "x_seq": 68, "u_seq": 68, "destin": 68, "x_seq_ful": 68, "u_seq_ful": 68, "node_seq": 68, "path_pub": 68, "ref_pub": 68, "revisit_period": 68, "tree_pub": 68, "unreach": 68, "action_check": 68, "angle_diff": 68, "boundary_analysi": 68, "move_cb": 68, "odom_cb": 68, "ogrid_cb": 68, "pack_odom": 68, "pack_pointstamp": 68, "pack_pos": 68, "pack_posestamp": 68, "pack_wrenchstamp": 68, "publish_expl": 68, "publish_path": 68, "publish_ref": 68, "publish_tre": 68, "reevaluate_plan": 68, "rotation_mov": 68, "select_behavior": 68, "select_explor": 68, "spiral_mov": 68, "tree_chain": 68, "unpack_odom": 68, "unpack_pos": 68, "path_plann": 68, "lqrrt_node": 68, "odom_top": 68, "ref_top": 68, "move_top": 68, "path_top": 68, "tree_top": 68, "goal_top": 68, "focus_top": 68, "effort_top": 68, "ogrid_top": 68, "ogrid_threshold": 68, "ogrid": [68, 69], "occupancygrid": 68, "refresh": [68, 90, 97], "posearrai": 68, "moveact": 68, "threshold": [68, 111], "simpleactionserv": 68, "occup": [68, 111], "grid": [68, 78, 111], "fill": [68, 78, 90, 111], "timerev": [68, 111], "angle_go": 68, "so2": 68, "grab": [68, 84], "boundari": 68, "contour": [68, 78, 111], "intup": 68, "pixel": [68, 74, 77, 78], "occupi": 68, "goal_stat": 68, "reevalu": 68, "polygonstamp": 68, "ref": [68, 115], "newest": 68, "escap": [68, 86], "tol": 68, "toler": [68, 77], "moduletyp": 68, "bia": [68, 109], "direc": 68, "mpr": 68, "revolut": 68, "axi": [68, 89, 97, 110], "expans": [68, 111], "radian": [68, 78, 111], "chain": 68, "databas": [69, 77, 89], "point_cloud_object_detection_and_recognit": 69, "pcodarconfig": 69, "point_t": 69, "pointxyz": [69, 78], "point_cloud": 69, "point_cloud_ptr": 69, "ptr": [69, 111], "pointer": [69, 78], "point_cloud_const_ptr": 69, "constptr": [69, 78, 111], "kdtree": 69, "kdtreeptr": 69, "cluster_t": 69, "pointindic": [69, 111], "cluster": [69, 111], "clusters_t": 69, "set_bound": 69, "set_robot_footprint": 69, "set_robot_pos": 69, "footprint": 69, "pc": [69, 111], "vertici": 69, "eigen": [69, 78, 111], "vector4f": 69, "affine3d": [69, 111], "update_mark": 69, "classif": [69, 78], "shared_ptr": [69, 78, 111], "objects_": 69, "publishedj": 69, "update_config": 69, "persist": [69, 78], "prev_object": 69, "get_clust": 69, "nearbi": [69, 114], "get_cent": 69, "get_point": 69, "get_points_ptr": 69, "get_search_tre": 69, "set_classif": 69, "set_id": 69, "update_point": 69, "metadata": [69, 78], "uint": 69, "search_tre": 69, "mil_gazebo": 69, "pcodargazebo": 69, "highest_id_": 69, "just_removed_": 69, "databasequeri": 69, "add_object": 69, "erase_object": 69, "to_msg": 69, "decltyp": 69, "perceptionobjectarrai": [69, 111], "objectdbqueri": [69, 111], "eras": [69, 111], "unordered_map": 69, "draw_boundari": 69, "update_ogrid": 69, "updateobject": 69, "processes": 69, "pcodar_gazebo": 69, "velodyne_cb": 69, "pointcloud2constptr": 69, "pcloud": 69, "add_point_cloud": 69, "get_point_cloud": 69, "accumul": [69, 83], "oldest": [69, 78, 94, 111], "pnuematicactuatordrivererror": 70, "pnuematicactuatordriverchecksumerror": 70, "checksum_i": 70, "checksum_should_b": 70, "pnuematicactuatordriverresponseerror": 70, "pnuematicactuatortimeouterror": 70, "close_port": 70, "get_port": 70, "open_port": 70, "set_port": 70, "dropper": 70, "grabber": 70, "nname": 70, "malfunct": [70, 109], "hexadecim": 70, "close_respons": 70, "open_respons": 70, "do_open": 70, "anywai": [70, 85, 86], "checksum_cod": 70, "close_request_bas": 70, "open_request_bas": 70, "ping_request": 70, "ping_respons": 70, "read_request_bas": 70, "create_checksum": 70, "deserialize_packet": 70, "serialize_packet": 70, "verify_checksum": 70, "deseri": 70, "packet": [70, 75, 111], "landscap": 71, "headstart": 71, "poi_serv": 71, "addpoirequest": [71, 77], "addpoirespons": [71, 77], "deletepoirequest": [71, 77], "deletepoirespons": [71, 77], "movepoirequest": [71, 77], "movepoirespons": [71, 77], "points_of_interest": 71, "visualization_msg": 71, "interactivemarkerupd": 71, "update_top": 71, "sphere": [71, 74], "ax": [71, 97], "submerg": 71, "global_fram": 71, "initial_poi": 71, "marker_scal": 71, "add_poi_cb": 71, "delete_poi_cb": 71, "move_poi_cb": 71, "process_feedback": 71, "transform_posit": 71, "radiu": [71, 111], "addpoi": 71, "deletepoi": 71, "remove_poi": 71, "movepoi": 71, "interactivemarkerfeedback": 71, "ps": 71, "only_fresh": 71, "3x1": 71, "deconstruct": 71, "clear_wrench": 72, "deploy_thrust": 72, "publish_wrench": 72, "retract_thrust": 72, "select_autonomous_control": 72, "select_emergency_control": 72, "select_keyboard_control": 72, "select_next_control": 72, "select_rc_control": 72, "set_disc_spe": 72, "shooter_cancel": 72, "shooter_fir": 72, "shooter_linear_extend": 72, "shooter_linear_retract": 72, "shooter_load": 72, "shooter_reset": 72, "station_hold": 72, "toggle_kil": 72, "remotecontrol": 72, "controller_nam": 72, "wrench_pub": 72, "regardless": 72, "retract": 72, "keyboard": [72, 77, 80, 86, 90], "teleoper": [72, 116], "xbox": 72, "disc": 72, "scale": [72, 74, 78, 89, 109], "fire": [72, 105], "6s": 72, "toggl": 72, "toggle_kill_button": 72, "thread_lock": 73, "allocate_lock": 73, "decortor": 73, "my_funct": 73, "wait_for_param": 73, "param_nam": 73, "poll_rat": 73, "intention": 73, "duti": 73, "hz": 73, "came": [73, 108], "wait_for_subscrib": 73, "subscript": [73, 78], "estalish": 73, "warn_tim": 73, "warn_msg": 73, "fanci": 73, "logwarn": 73, "draw_spher": 74, "m_id": 74, "base_link": 74, "draw": [74, 78, 97, 99, 108], "draw_ray_3d": 74, "pix_coord": 74, "camera_model": [74, 78, 111], "stereo_front": 74, "35": 74, "rai": 74, "stereo_font": 74, "make_rai": 74, "infinit": 74, "lifetim": 74, "vector_to_mark": 74, "vector_top": 74, "marker_top": 74, "fact": [74, 96], "argpars": 74, "point_cb": 74, "point_to_dict": 74, "write_fil": 74, "clicked_point_record": 74, "csv": [74, 78, 97], "network_broadcast": 74, "recur": [74, 96, 111], "make_packet": 75, "sim": [75, 108], "send_packet": 75, "set_motor1": 75, "set_motor2": 75, "regen": 75, "unsign": [75, 78], "simulatedseri": 75, "hexifi": 76, "buff": 76, "hex": 76, "commandpacket": 76, "p_byte": 76, "to_byt": 76, "c0": 76, "14": 76, "09": 76, "48": 76, "45": 76, "4c": 76, "4f": 76, "c1": [76, 78], "in_wait": 76, "reset_input_buff": 76, "candid": 76, "inspect": [76, 96], "acousticbeaconrequest": 77, "settabl": 77, "beacon_posit": 77, "setvalu": 77, "acousticbeaconrespons": 77, "beacon": 77, "circle_direct": 77, "target_anim": 77, "chooseanimalrequest": 77, "platyu": 77, "crocodil": 77, "clockwis": 77, "anti": 77, "movement_complet": 77, "chooseanimalrespons": 77, "colorrequestrequest": 77, "colorrequestrespons": 77, "findpingerrequest": 77, "num_sampl": 77, "pinger_posit": 77, "findpingerrespons": 77, "getdockbaysrequest": 77, "getdockbaysrespons": 77, "getdockshaperequest": 77, "invalid_request": 77, "node_dis": 77, "shape_not_found": 77, "too_small_sampl": 77, "symbol": [77, 94], "getdockshaperespons": 77, "dockshap": 77, "viabl": [77, 90], "getdockshapesrequest": 77, "getdockshapesrespons": 77, "explan": [77, 93, 94], "feeder": 77, "shootermanualrequest": 77, "shootermanualrespons": 77, "startgaterequest": 77, "startgaterespons": 77, "alarmgetrequest": 77, "alarmsetrequest": 77, "succe": 77, "alarmsetrespons": 77, "cameradbqueryrequest": 77, "cameradbqueryrespons": 77, "target_p": 77, "movetowaypointrequest": 77, "movetowaypointrespons": 77, "cmd": 77, "objectdbqueryrequest": 77, "yyi": 77, "objectdbqueryrespons": 77, "setfrequencyrequest": 77, "setfrequencyrespons": 77, "roi": [77, 78], "setroirequest": 77, "regionofinterest": 77, "outside_of_fram": 77, "setroirespons": 77, "detection_switch": 77, "model_param": 77, "num_point": 77, "processing_typ": 77, "stereoshapedetectorrequest": 77, "detector": 77, "stereoshapedetectorrespons": 77, "target_nam": [77, 111], "visionrequestrequest": 77, "covariance_diagon": 77, "visionrequestrespons": 77, "std_srv": [77, 111], "cameratolidartransformrequest": 77, "seen": [77, 78, 94, 108], "cloud_not_found": 77, "no_point": 77, "cameratolidartransformrespons": 77, "to_fram": 77, "coordinateconversionrequest": 77, "altitud": 77, "east": [77, 111], "north": [77, 111], "earth": 77, "coordinateconversionrespons": 77, "keycod": 77, "uuid": 77, "keyboardcontrolrequest": 77, "generated_uuid": 77, "is_lock": 77, "keyboardcontrolrespons": 77, "mil_vision_tool": 78, "auto_canni": 78, "sigma": 78, "median": 78, "canni": 78, "tune": 78, "grayscal": 78, "aggress": 78, "nois": 78, "contour_centroid": 78, "centroid": 78, "recalcul": [78, 94], "contour_mask": 78, "img_shap": 78, "column": 78, "puttext_ul": 78, "fontfac": 78, "fontscal": 78, "thick": 78, "linetyp": 78, "bottomleftorigin": 78, "puttext": 78, "shift": [78, 89, 90, 95, 109, 110, 113], "font": [78, 97], "font_hershey_complex_smal": 78, "points_in_imag": 78, "mx2": 78, "camera_mod": 78, "nx3": 78, "roi_enclosing_point": 78, "border": 78, "slice": [78, 94], "enclos": 78, "easili": [78, 96], "object_point": 78, "img_object": 78, "pinhol": 78, "ymin": 78, "ymax": 78, "xmin": 78, "xmax": 78, "rect_from_roi": 78, "rectangl": 78, "style": [78, 87, 92, 93, 97, 108], "tuple_from_slic": 78, "quaternion_from_rvec": 78, "rvec": 78, "solvepnp": 78, "create_object_msg": 78, "rect": 78, "objectinimag": 78, "identif": 78, "vari": [78, 79, 90], "nx1x2": 78, "nx2": 78, "wide": [78, 86, 94, 108], "boundingrect": 78, "mil_vis": [78, 111], "larger_contour": 78, "c2": 78, "cv": [78, 111], "matnd": 78, "smooth_histogram": 78, "histogram": 78, "filter_kernel_s": 78, "generate_gaussian_kernel_1d": 78, "kernel_s": 78, "find_local_maxima": 78, "thresh_multipli": 78, "find_local_minima": 78, "select_hist_mod": 78, "histogram_mod": 78, "range_from_param": 78, "param_root": 78, "inparamrang": 78, "dest": [78, 111], "rotatekernel": 78, "kernel": 78, "deg": 78, "no_expand": 78, "version": [78, 86, 89, 90, 91, 98, 108], "counterclockwis": 78, "canva": 78, "makerotinvari": 78, "rotation": [78, 111], "invari": 78, "uniformli": 78, "spread": [78, 108], "angularli": 78, "getradialsymmetryangl": 78, "ang_r": 78, "radia": 78, "pcd": 78, "pcdptr": 78, "sptrvector": 78, "uptrvector": 78, "unique_ptr": [78, 111], "vector3d": [78, 111], "kanatani_triangul": 78, "pt1": [78, 111], "pt2": [78, 111], "matrix3d": 78, "essenti": [78, 90, 97, 109], "triangul": [78, 111], "kanatani": 78, "stereo": [78, 111], "horizont": 78, "codebas": [78, 86, 93, 94], "calcaul": 78, "statistical_image_segment": 78, "debug_img": 78, "hist_siz": 78, "image_nam": 78, "unnam": 78, "ret_dbg_img": 78, "low_thresh_gain": 78, "high_thresh_gain": 78, "triangulate_linear_l": [78, 111], "mat_p_l": 78, "mat_p_r": 78, "undistorted_l": 78, "undistorted_r": 78, "lindstrom_triangul": 78, "image_dir": 78, "labelfil": 78, "training_fil": 78, "class_to_str": 78, "classifi": 78, "classify_featur": 78, "extract_label": 78, "feature_prob": 78, "get_featur": 78, "read_from_csv": 78, "save_csv": 78, "score": 78, "string_to_class": 78, "train_from_csv": 78, "gaussiancolorclassifi": 78, "concret": 78, "red_mean": 78, "blue_mean": 78, "green_mean": 78, "numer": 78, "probab": 78, "extract": [78, 114], "labelbox": 78, "probabilti": 78, "_supportsarrai": 78, "_nestedsequ": 78, "npt": 78, "n_sampl": 78, "m_featur": 78, "correct_classifici": 78, "len": [78, 93, 94], "conversion_cod": 78, "in_spac": 78, "thresh_spac": 78, "from_dict": [78, 111], "from_param": 78, "create_trackbar": 78, "bgr": 78, "colorpac": 78, "180": [78, 96], "50": [78, 90], "190": 78, "200": 78, "hsv": 78, "colorspac": 78, "color_rgb2grai": 78, "attributeerror": 78, "trackbar": 78, "adjust": [78, 89, 90, 110, 111], "66": 78, "border_color": 78, "border_thick": 78, "keep_ratio": 78, "pane_s": 78, "text_color": 78, "text_font": 78, "text_scal": 78, "text_thick": 78, "get_imag": 78, "set_imag": 78, "480": 78, "640": 78, "customiz": [78, 100], "squar": 78, "image_mnux": 78, "pane": [78, 86], "col": [78, 85], "stretch": 78, "insert": [78, 80, 90, 98, 105, 107], "resiz": 78, "color_encod": 78, "mono": 78, "rect_color": 78, "mono8": 78, "rectifi": [78, 83], "image_proc": 78, "processor": [78, 90], "debay": 78, "bitmask": 78, "raw_msg": 78, "intic": 78, "imagecolor": 78, "ag": 78, "created_at": 78, "expiration_second": 78, "max_dist": 78, "max_id": 78, "add_observ": 78, "clear_expir": 78, "get_persistent_object": 78, "disanc": 78, "metric": 78, "finicki": 78, "kept": [78, 85, 111], "THe": 78, "amongst": [78, 86, 116], "increment": [78, 96], "longest": 78, "expir": 78, "min_observ": 78, "min_ag": 78, "criteria": 78, "model_3d": 78, "sort_corn": 78, "from_polygon": 78, "draw_model": 78, "get_corn": 78, "get_pose_2d": 78, "get_pose_3d": 78, "to_polygon": 78, "verify_contour": 78, "shorter": [78, 90, 94], "500": 78, "drawn": 78, "whichev": [78, 87], "debug_imag": 78, "epsilon_rang": 78, "01": [78, 98], "epsilon_step": 78, "quadrilater": 78, "sort": [78, 84, 94], "epsilon": 78, "arclength": 78, "4x2": 78, "intrins": 78, "dist_coeff": 78, "instrins": 78, "intrinis": 78, "distort": [78, 83, 107], "coeffici": [78, 111], "rodrigu": 78, "comparison": [78, 94], "find_object": 78, "abc": [78, 81], "unifi": 78, "applyperturb": 78, "validatecurv": 78, "point2i": 78, "curv": 78, "compris": [78, 108], "uint8_t": 78, "idx": 78, "getcameramodelptr": 78, "get_color_observ": 78, "pcd_in_top": 78, "cam_top": 78, "image_geometri": [78, 111], "vecimg": 78, "xyz": 78, "mat_": 78, "var": 78, "_color_pcd": 78, "_transform_to_cam": 78, "input_pcd_top": 78, "output_pcd_top": 78, "rgb_cam_top": 78, "rgb_cam_fram": 78, "in_pcd_top": 78, "asid": 78, "_8uc1": 78, "_8sc1": 78, "_16uc1": 78, "_16sc1": 78, "_32sc1": 78, "_32fc1": 78, "_64fc1": 78, "_8uc2": 78, "_8sc2": 78, "_16uc2": 78, "_16sc2": 78, "_32sc2": 78, "_32fc2": 78, "_64fc2": 78, "_8uc3": 78, "_8sc3": 78, "_16uc3": 78, "_16sc3": 78, "_32sc3": 78, "_32fc3": 78, "_64fc3": 78, "_8uc4": 78, "_8sc4": 78, "_16uc4": 78, "_16sc4": 78, "_32sc4": 78, "_32fc4": 78, "_64fc4": 78, "_unknown": 78, "copyimgto": 78, "getimagescal": 78, "iscamerageometryknown": 78, "cam_model_ptr_t": 78, "img_scalar_t": 78, "time_t_": 78, "float_t": 78, "imageconstptr": [78, 111], "image_msg_ptr": 78, "cam_model_ptr": 78, "is_rectifi": 78, "store_at_scal": 78, "geometri": 78, "camrea": 78, "disort": 78, "rectif": 78, "image_tim": [78, 111], "info_msg_ptr": 78, "camerainfoconstptr": [78, 111], "_image_msg_ptr": 78, "_info_msg_ptr": 78, "history_s": 78, "frames_avail": 78, "get_frame_histori": 78, "image_callback": [78, 111], "portion": 78, "img_top": 78, "image_msg": 78, "info_msg": [78, 111], "frames_request": 78, "getframefromtim": 78, "isgeometryconst": 78, "camfram": 78, "camframeptr": 78, "camframeconstptr": 78, "camframesequ": 78, "circularbuff": 78, "circular_buff": 78, "forbidden": 78, "nth": 78, "frame_sequ": 78, "init": [78, 91, 100], "buffer_s": 78, "camera_top": 78, "desired_tim": 78, "switchactiv": 78, "output_t": 78, "input_t": 78, "boiler": 78, "plate": 78, "image_arg": 78, "getlastimagetim": 78, "imagecallbackcopi": 78, "imagecallbackrefer": 78, "infocallback": 78, "waitforcamerainfo": 78, "waitforcameramodel": 78, "valuabl": [78, 97], "gracefulli": 78, "use_copi": 78, "unsur": 78, "pinhole_camera": 78, "pineholecameramodel": 78, "fantast": [79, 85], "countless": [79, 91], "rememb": [79, 85, 93, 94], "flexibl": [79, 86, 87, 96, 116], "lite": 79, "preview": 79, "clone": 79, "j8": [79, 90], "recurs": [79, 90, 91, 100], "submodul": [79, 90, 91, 92], "collabor": 79, "pip3": [79, 86], "txt": [79, 85, 86, 96], "css": 79, "codeblock": 79, "haven": [79, 96, 100], "scratch": 79, "pygment": 79, "uf_mil_pyg": 79, "folder": [79, 84, 87, 89, 94, 96, 100], "pip": [79, 86], "docstr": [79, 93], "reflect": [79, 111], "syntax": [79, 81, 85, 92, 93, 108], "build_doc": [79, 93], "aren": [79, 84, 93, 94, 96], "sphinx": [79, 87], "ideal": [79, 81, 87], "verif": [79, 98], "permit": 80, "dual": 80, "boot": [80, 95, 105], "armv8": 80, "parallel": 80, "desktop": [80, 90, 101], "vm": [80, 90, 95], "iso": [80, 85, 90], "prompt": [80, 84, 86, 88, 95], "languag": [80, 81, 86, 90, 93], "english": [80, 94], "menu": [80, 90, 95, 97], "proceed": 80, "textual": 80, "partit": [80, 90], "disk": [80, 90], "dn": 80, "sudo": [80, 86, 90, 97, 98, 109], "apt": [80, 86, 90, 97, 98], "upgrad": [80, 86, 90, 98], "tasksel": 80, "reboot": [80, 91, 98], "sign": [80, 90, 93, 101, 108], "password": [80, 88, 90, 92], "concurr": 81, "predecessor": 81, "heavili": 81, "nearli": [81, 109], "shouldn": [81, 84], "figur": [81, 91, 96, 97, 109], "cancellableinlinecallback": 81, "inlinecallback": 81, "some_sleep_help": 81, "other_coroutin": 81, "returnvalu": 81, "other_exampl": 81, "enhanc": [81, 97], "nest": [81, 85, 89, 94, 100], "nice": [81, 85, 86, 87, 105], "abil": [81, 94, 97], "popul": 81, "paus": [81, 86, 89, 97], "reres": 81, "wait_for": 81, "manner": 81, "shield": 81, "weari": 81, "providd": 81, "entrypoint": 81, "hog": 81, "uh_oh": 81, "simplest": 81, "gimme_a_test": 81, "set_result": 81, "my_special_nod": 81, "special_point": 81, "faster": [81, 90, 91, 96], "euo": 82, "pipefail": 82, "my_script": 82, "rule": [82, 85, 94, 102], "indent": [82, 90], "reconstruct": 83, "scene": 83, "camera_calibr": 83, "cameracalibr": 83, "sturdi": 83, "checkerboard": 83, "curvi": 83, "misalign": 83, "scari": 84, "though": [84, 85, 87, 94], "person": [84, 86, 108, 115], "realli": [84, 86, 111, 113], "hurt": 84, "anyon": [84, 94], "mess": [84, 93], "sweet": [84, 93], "protect": [84, 85, 94], "approv": 84, "pressur": [84, 85, 94, 109, 114, 115], "okai": [84, 85, 90, 93], "spell": [84, 86], "trail": [84, 85], "whitespac": [84, 86], "chanc": [84, 86, 90, 108], "unfamiliar": 84, "think": [84, 85, 91, 96, 108], "branchnam": 84, "dash": [84, 94], "diff": 84, "unstag": 84, "sensit": [84, 108], "unrel": 84, "homework": 84, "aka": [84, 90], "dialog": 84, "pr": 84, "yellow": 84, "friendli": [84, 85, 97], "checkmark": 84, "prime": 84, "bright": 84, "bug": [84, 91, 93, 96], "strive": 84, "24": 84, "prodigi": 84, "lazi": 84, "hopefulli": [84, 108, 109], "tediou": 84, "rebas": [84, 100], "conflict": 84, "briefli": [85, 94], "crazi": [85, 94], "de": 85, "facto": 85, "question": [85, 91, 98], "propos": 85, "googl": [85, 91, 94], "complement": 85, "loos": [85, 108], "guidelin": [85, 94], "philosoph": 85, "pull": [85, 90, 91, 96, 111, 115], "noetic": [85, 86, 92, 97], "alabast": 85, "clang": 85, "plethora": 85, "compli": 85, "nut": 85, "brief": [85, 94, 116], "autom": [85, 96, 108], "innovt": 85, "p1": 85, "cryptic": 85, "specialobjectfind": 85, "getlocationfirstimag": 85, "oh": [85, 86, 87], "slim": 85, "cmakelist": [85, 96], "underscor": [85, 94], "guess": [85, 87], "cc": 85, "cxx": 85, "drschwartz": 85, "gcpuimplement": 85, "camel": 85, "capit": 85, "undotransform": 85, "exampleclass": 85, "constructfrommessag": 85, "accessor": 85, "mutat": 85, "set_spe": 85, "woah": 85, "setter": 85, "get_spe": 85, "speed_": 85, "snake": 85, "thisisnotgood": 85, "this_is_good": 85, "examplefunct": 85, "argon": 85, "awesomephras": 85, "arg_on": 85, "awesome_phras": 85, "needlessli": [85, 94], "suppos": [85, 93], "wsy": 85, "was_seen_yesterdai": 85, "ah": 85, "speed_of_light": 85, "internal_attribute_": 85, "prepend": [85, 94], "g_": 85, "g_global_attribut": 85, "qualifi": 85, "lookup": 85, "large_hadron_collid": 85, "120": 85, "prefer": [85, 86, 90, 94, 97, 109, 114], "guard": 85, "declar": [85, 87], "complain": 85, "radix": 85, "exponenti": 85, "notat": 85, "nope": 85, "ld": 85, "5l": 85, "0f": 85, "awesom": [85, 86, 93, 96], "f2": [85, 89], "1254e4": 85, "huge_again": 85, "1254": 85, "0e4": 85, "excess": [85, 105], "funnyfunct": 85, "huge_argument_number_one_oh_my_this_is_long": 85, "argument_two": 85, "argument_thre": 85, "arugmnet": 85, "weirdmathfunct": 85, "sqrt": 85, "scientist": 85, "createmagicsquar": 85, "x3": 85, "y3": 85, "z1": 85, "z2": 85, "z3": 85, "example_term": 85, "simple_test": 85, "simplecal": 85, "this_works_too": 85, "condition_is_tru": 85, "claus": 85, "parenthes": [85, 93, 94], "likewis": [85, 91, 94], "this_is_perfect": 85, "wow_you_did_it": 85, "fallthrough": 85, "exclus": 85, "17": 85, "tire": 85, "drinkcoffe": 85, "spin_forev": 85, "misread": 85, "char": 85, "charclass": 85, "sad": 85, "face": [85, 108, 109], "fine": [85, 86, 90, 114], "examin": 85, "test_condit": 85, "lets_go_crazi": 85, "startcrazymod": 85, "endif": [85, 96], "cleanup": [85, 96], "baseclass": 85, "somefunct": 85, "some_var_": 85, "special_char_": 85, "cook": 85, "pan": 85, "pourcupcak": 85, "cupcak": 85, "retrievecupcak": 85, "cupcakes_": 85, "semicolon": 85, "colon": [85, 94], "tradition": 85, "unari": 85, "thought": 85, "scope": 85, "troubl": [85, 86], "unfriendli": 85, "smile": 85, "hope": [85, 86, 96, 116], "pollut": 85, "love": [85, 116], "judici": [85, 94], "wherev": [85, 90], "viral": 85, "ros_assert": 85, "consol": 85, "rosconsol": 85, "ros_deprec": 85, "cardcount": 85, "myclass": 85, "specialfunct": 85, "stick": [86, 115], "polietli": 86, "lint": 86, "unneed": 86, "And": [86, 87, 91], "hook": [86, 108], "skip": [86, 111], "popular": [86, 90, 94], "diagnost": [86, 105], "vscode": [86, 94], "pycharm": 86, "clion": 86, "coordinta": 86, "book": 86, "game": [86, 89], "fork": [86, 90], "modif": 86, "painless": [86, 90], "spacevim": 86, "lunarvim": 86, "spf13": 86, "nvchad": 86, "inclin": 86, "walkthrough": 86, "jk": 86, "lsp": 86, "nvim": 86, "lspconfig": 86, "formatt": 86, "null": 86, "beauti": [86, 93, 94], "colorschem": 86, "vimawesom": 86, "famou": 86, "multiplex": 86, "sheet": 86, "tmuxcheatsheet": 86, "exteremli": 86, "consum": 86, "tx": 86, "tmuxinatorconfig": 86, "shell": [86, 90, 94, 101], "explor": 86, "sh": [86, 90], "shebang": [86, 93], "bashrc": 86, "alias": 86, "theme": [86, 112], "mainstream": 86, "zshrc": 86, "powerlevel10k": 86, "rst": 87, "render": [87, 113], "primer": 87, "parser": [87, 94], "md": 87, "evid": 87, "danger": 87, "alon": 87, "gosh": 87, "grasp": 87, "concaten": 87, "hint": 87, "fake_fil": 87, "stringio": 87, "zip_": 87, "zipfil": 87, "file_path": 87, "namelist": 87, "file_nam": 87, "file_lik": 87, "utf": 87, "wow": 87, "autofunct": 87, "autoclass": 87, "consult": 87, "javadoc": 87, "pois": 87, "sens": [87, 91, 94], "restructuredtext": 87, "focus": [87, 97], "subdirectori": 87, "deem": 87, "toctre": 87, "maxdepth": 87, "my_articl": 87, "meeting_schedul": 87, "hidden": [87, 89, 94], "toc": 87, "peek_a_boo": 87, "sdk": 88, "blueview": 88, "install_bvtsdk": 88, "pointgrei": 88, "flycaptur": 88, "install_flycap": 88, "encrypt": [88, 90], "x64": 88, "arm": [88, 90], "install_udev_rul": 88, "manipul": 89, "uniti": 89, "fidel": 89, "classic": 89, "app": [89, 90], "alt": 89, "fn": 89, "graphic": [89, 97, 98, 109, 114], "amonitor": [89, 113], "startgate2022": 89, "greet": 89, "drag": [89, 97, 110, 111], "hide": [89, 94], "mandatori": [89, 107, 108], "sdf": 89, "tag": [89, 96], "visual_0": 89, "mobil": 89, "cursor": 89, "diagram": [89, 90], "trackpad": 89, "dae": 89, "stl": 89, "mesh": 89, "slight": 89, "hierarchi": 89, "model1": 89, "model_1": 89, "collada": 89, "wavefront": 89, "obj": 89, "w3c": 89, "blender": 89, "gazebosim": 89, "finer": 89, "inspector": 89, "collis": 89, "constrain": 89, "motion": 89, "chassi": 89, "constraint": 89, "sky": 89, "ambient": 89, "crucial": 89, "grate": 89, "creator": 89, "computation": 90, "expens": 90, "especi": [90, 91, 96, 97, 109], "4gb": 90, "8gb": 90, "ram": 90, "cpu": [90, 114], "04": [90, 92, 98], "lt": 90, "alloc": 90, "tap": 90, "mac": 90, "intel": 90, "insight": [90, 97, 116], "amd64": 90, "arm64": 90, "appl": [90, 92], "silicon": 90, "subsect": 90, "bootabl": 90, "bitlock": 90, "secur": [90, 101], "secret": 90, "spy": 90, "uefi": 90, "troubleshoot": 90, "bio": 90, "shrink": 90, "volum": [90, 111], "50000": 90, "mb": 90, "gb": 90, "nine": 90, "poorer": 90, "strain": 90, "virtualbox": 90, "memori": 90, "tick": 90, "8192": 90, "vdi": 90, "50gb": 90, "certainli": 90, "30gb": 90, "optic": [90, 107], "stellar": 90, "bundl": 90, "39": 90, "99": 90, "purchas": [90, 109], "homebrew": 90, "brew": 90, "cask": 90, "22": 90, "dvd": 90, "16gb": 90, "quad": 90, "opengl": 90, "logo": 90, "retina": 90, "versu": 90, "ms": 90, "fat32": 90, "suffic": [90, 94], "regularli": 90, "lightweight": 90, "home": [90, 95], "emul": 90, "dollar": 90, "repl": 90, "upload": [90, 111], "upstream": 90, "catkin": 90, "mkdir": 90, "curiou": 90, "exec": [90, 94], "zsh": 90, "catkin_mak": [90, 96, 97], "cm": [90, 109, 115], "unabl": 90, "authent": 90, "store_git": 90, "appopri": 90, "congratul": [90, 97], "dive": [90, 94, 115], "harder": [91, 94, 108], "peer": 91, "fish": 91, "late": [91, 116], "blindli": 91, "txhydrophonescli": 91, "perhap": 91, "programm": 91, "sub8_rdi_dvl": 91, "rdi_explorer_dvl": 91, "ros_error_throttl": 91, "exc": 91, "somon": 91, "decent": [91, 114], "circumst": 91, "discov": 91, "offic": 91, "rqt": 92, "rostest": 92, "migrat": [92, 108], "nvidia": 92, "rtx": 92, "2080": 92, "calibr": 92, "melod": 93, "2020": 93, "major": [93, 109], "greatest": 93, "easi": [93, 94, 96, 111], "peasi": 93, "skim": [93, 94], "memor": [93, 109], "2to3": 93, "chosen": 93, "indcat": 93, "refactoringtool": 93, "refactor": [93, 96], "__future__": 93, "print_funct": 93, "tip": [93, 94], "fixer": 93, "iteritem": [93, 94], "python3": [93, 109], "prop": 93, "crutch": 93, "handi": [93, 94], "multi": 93, "stackoverflow": [93, 95, 98], "11832677": 93, "postal_valid": 93, "no_spac": 93, "isdigit": 93, "isalpha": 93, "postal": 93, "instantli": 93, "opportun": [93, 108], "interlock": 93, "jenga": 93, "tower": 93, "simlul": 93, "relax": 94, "snazzi": 94, "excel": 94, "perman": 94, "nor": 94, "smarter": 94, "willing": 94, "bend": 94, "advantag": 94, "lower_with_und": 94, "_lower_with_und": 94, "capword": 94, "_capword": 94, "caps_with_und": 94, "_caps_with_und": 94, "__double_underscore_names__": 94, "reserv": [94, 111], "offens": 94, "meaningless": 94, "cool_const": 94, "fun_vari": 94, "pi": 94, "vd": 94, "role": 94, "dateutil": 94, "super_long_subpackage_nam": 94, "super_long": 94, "subfold": 94, "mod2": 94, "mitig": 94, "indirectli": 94, "quietli": 94, "comprehens": [94, 108], "yai": 94, "noooo": 94, "mini": 94, "sparingli": [94, 105], "really_long": 94, "evaluating_funct": 94, "really_long_variable_nam": 94, "other_really_long_var_nam": 94, "really_long_variable_name_on": 94, "this_iz_cool_func": 94, "cat": 94, "sneaki": 94, "benefit": 94, "complexion": 94, "do_someth": 94, "explicitli": 94, "implicitli": 94, "craft": 94, "cute": 94, "ecor": 94, "anger": 94, "sorta": 94, "recov": 94, "vim": [94, 100, 108], "colorcolumn": 94, "dr_seuss": 94, "egg": 94, "ham": 94, "sam": 94, "backslash": 94, "greenspac": 94, "redspac": 94, "rainbowspac": 94, "bracket": 94, "brace": 94, "quot": 94, "curli": 94, "ultimate_answ": 94, "42": 94, "ultim": 94, "answer": [94, 96], "grep": 94, "small": [94, 96, 100, 108, 114, 115], "demonstr": [94, 97, 112], "get_weath": 94, "set_weath": 94, "crazy_func": 94, "heck": 94, "overli": 94, "doctor": 94, "medic": 94, "profession": 94, "kid": 94, "narr": 94, "literari": 94, "sentenc": 94, "calc": 94, "subtract_mani": 94, "elabor": 94, "calculatorhistori": 94, "beyond": 94, "statist": [94, 116], "oldest_entri": 94, "retrieve_entri": 94, "history_fil": 94, "entries_index": 94, "return_only_sinc": 94, "historyentri": 94, "retrieve_rang": 94, "indexerror": 94, "esc": [95, 114], "grub": 95, "2nd": 95, "recoveri": 95, "hit": 95, "remount": 95, "o": [95, 109, 115], "rw": 95, "passwd": 95, "resum": [95, 97], "middlewar": 96, "gtest": 96, "seem": 96, "hundr": 96, "interdepend": 96, "anticip": 96, "fear": 96, "underli": 96, "framework": [96, 97], "regress": 96, "determinist": 96, "reproduc": 96, "patch": 96, "reintroduc": 96, "whoever": 96, "convinc": 96, "blame": 96, "violat": 96, "thu": 96, "contributor": 96, "driven": 96, "guesswork": 96, "har": 96, "workload": 96, "win": [96, 116], "matur": 96, "slowli": 96, "decid": 96, "amplifi": 96, "evolut": 96, "incorpor": 96, "principl": 96, "strong": [96, 116], "purposefulli": 96, "fizz": 96, "crash": 96, "unexpectedli": 96, "mutmut": 96, "package_nam": 96, "package_test": 96, "dir": 96, "tester": 96, "xdg": 96, "brows": 96, "calculator_packag": 96, "numtest": 96, "testcas": 96, "test_add": 96, "assertequ": 96, "test_sub": 96, "teardown": 96, "test_basic_oper": 96, "test_": 96, "assertx": 96, "assert": [96, 111], "asserttru": 96, "assertin": 96, "basicnodehandletest": 96, "isolatedasynciotestcas": 96, "asyncsetup": 96, "test_nam": 96, "asyncteardown": 96, "test_basic_nodehandl": 96, "analyz": [96, 97], "importantli": 96, "recognit": 96, "catkin_enable_test": 96, "find_packag": 96, "add_rostest": 96, "run_test": 96, "qt": 97, "tailor": 97, "capabl": [97, 101, 108], "tightli": 97, "toolbar": 97, "scheme": 97, "rearrang": 97, "perspect": 97, "rqt_gui_pi": 97, "rqt_gui_cpp": 97, "catkin_create_pkg": 97, "my_rqt_plugin": 97, "usr": 97, "env": 97, "python_qt_bind": 97, "qtwidget": 97, "qlabel": 97, "qvboxlayout": 97, "qwidget": 97, "myrqtplugin": 97, "setobjectnam": 97, "widget": 97, "_widget": 97, "setlayout": 97, "_label": 97, "addwidget": 97, "current_tim": 97, "_update_tim": 97, "add_widget": 97, "settext": 97, "shutdown_plugin": 97, "save_set": 97, "plugin_set": 97, "instance_set": 97, "restore_set": 97, "base_class_typ": 97, "qtgui": 97, "statustip": 97, "sophist": 97, "ros_data_plott": 97, "matplotlib": 97, "qcombobox": 97, "backend": 97, "backend_qt5agg": 97, "figurecanvasqtagg": 97, "figurecanva": 97, "rosdataplott": 97, "combo": 97, "_topic_field_selector": 97, "currentindexchang": 97, "_update_plot": 97, "_figur": 97, "_canva": 97, "add_subplot": 97, "111": 97, "selected_topic_field": 97, "currenttext": 97, "_plot_data": 97, "x_data": 97, "y_data": 97, "getattr": 97, "analysi": [97, 110], "versatil": 97, "georgiatech": 97, "robojacket": 97, "leverag": [97, 101, 107], "geforc": 98, "gtx": 98, "970": 98, "ppa": 98, "card": [98, 109, 114], "sy": 98, "pci0000": 98, "00": 98, "0000": 98, "modalia": 98, "pci": 98, "v000010ded000013c2sv00003842sd00002976bc03sc00i00": 98, "vendor": 98, "corpor": 98, "gm204": 98, "430": 98, "390": 98, "435": 98, "distro": 98, "440": 98, "410": 98, "415": 98, "xserver": 98, "xorg": 98, "nouveau": 98, "builtin": 98, "autoinstal": 98, "smi": 98, "linuxconfig": 98, "bionic": 98, "beaver": 98, "cyberc": 98, "biz": 98, "faq": 98, "proprietari": 98, "31731535": 98, "cuda": 98, "ogrid_draw": 99, "online_bagg": 99, "keyboardcli": 99, "keyboardserv": 99, "navigator_keyboard_control": 99, "formal": 100, "themselv": [100, 112, 116], "essenc": 100, "chaconinc": 100, "dbconnector": 100, "gitmodul": 100, "repeatedli": [100, 108], "thankfulli": 100, "stabl": [100, 108], "OR": 100, "demand": 100, "ssh": [101, 115], "176": 101, "container": 101, "thoroughli": 101, "sshzobelisk": 101, "openssh": 101, "detach": 101, "export": 101, "began": 101, "pipelin": 102, "image_raw": [102, 111], "organiz": 102, "theori": [105, 116], "background": 105, "uninterrupt": 105, "grai": 105, "metal": [105, 114], "fan": 105, "24v": 105, "compart": 105, "misus": 105, "puffi": 105, "tether": [105, 108, 115], "annual": 106, "watercool": 106, "lesson": 106, "2019": [106, 112], "rub": 107, "dish": 107, "soap": 107, "pocket": 107, "vessel": [107, 108, 109, 114, 115], "biggest": 107, "molykot": [107, 115], "44": [107, 115], "medium": [107, 108], "hole": 107, "femal": 107, "robosub19": 107, "forgot": [107, 108], "flood": 107, "semifin": 107, "survei": 107, "3rd": 107, "arizona": 107, "prior": 108, "summer": 108, "biweekli": 108, "serious": 108, "bust": 108, "logist": 108, "assur": 108, "bystand": 108, "setback": 108, "unrespons": 108, "techniqu": 108, "night": [108, 116], "asleep": 108, "2am": 108, "6am": 108, "lack": 108, "chase": 108, "social": 108, "media": 108, "recruit": 108, "outreach": 108, "sponsorship": 108, "instagram": 108, "mysteri": 108, "slot": 108, "woke": 108, "radiat": 108, "rush": 108, "fedex": 108, "pain": 108, "arrang": 108, "week": 108, "wasn": 108, "catalog": 108, "catalogu": 108, "pickup": 108, "express": 108, "truck": 108, "couldn": 108, "takeawai": 108, "trip": [108, 116], "crunch": 108, "foam": [108, 115], "tired": 108, "paperwork": 108, "recip": 108, "benefici": 108, "bill": 108, "bom": 108, "cut": 108, "forrest": 108, "moistur": 108, "desicc": 108, "satur": 108, "misbehav": 108, "addr15": 108, "micro": [108, 116], "needless": 108, "janki": 108, "swap": 108, "weight": [108, 110], "detriment": 108, "litter": 108, "round": 108, "wooden": [108, 114], "diamet": 108, "rod": 108, "apart": 108, "rope": 108, "mass": [108, 111], "oppos": 108, "crouch": 108, "shoulder": 108, "lift": [108, 113], "kind": 108, "pad": 108, "stabil": 108, "villag": 108, "situat": 108, "prebuilt": 108, "orbit": 108, "dead": 108, "exacerb": 108, "churn": 108, "overhaul": 109, "gumstix": 109, "overo": 109, "teledyn": 109, "dopper": 109, "logger": 109, "inerti": 109, "newer": 109, "61": 109, "subconn": 109, "netplan": 109, "ifconfig": 109, "enpxs0": 109, "unplug": 109, "replug": 109, "AND": 109, "vigil": 109, "adis16405": 109, "obsolet": 109, "strength": 109, "magnet": [109, 111], "hardsoft": 109, "mag_raw": 109, "nav_box": 109, "substitut": 109, "frank": 109, "penelop": 109, "magnetic_compens": 109, "sub8_magnetic_hardsoft_compens": 109, "generate_config": 109, "fit_ellipsoid": 109, "colinear": 109, "thorough": 109, "adaptive_control": 110, "swim": 110, "elimin": 110, "rm": 110, "ki": 110, "kd": 110, "pd": 110, "use_learn": 110, "scp": 110, "screenshot": 110, "photo": 110, "bag_debugging_control": 110, "prefix_nam": 110, "my_prefix": 110, "pose_error": 110, "twist_error": 110, "dist": 110, "data_raw": 110, "wors": 110, "subjugator_control": 110, "debug_bag": 110, "andr": 110, "pulido": 110, "hyperlink": 111, "thruster_command": 111, "subjugator_msg": 111, "setvalverequest": 111, "setvalverespons": 111, "depict": 111, "set_valv": 111, "candevicehandl": 111, "ackpacket": 111, "cast": 111, "on_command": 111, "on_hw_kil": 111, "send_heartbeat": 111, "update_hw_kil": 111, "unassert": 111, "hall": 111, "soft": [111, 115], "unpress": 111, "statusmessag": 111, "is_assert": 111, "is_command": 111, "is_hard": 111, "is_respons": 111, "is_soft": 111, "is_unassert": 111, "create_kill_messag": 111, "applicationpacket": 111, "ordin": 111, "75": 111, "67": 111, "82": 111, "72": 111, "65": 111, "85": 111, "asserte": 111, "thruster_id": 111, "create_thrust_packet": 111, "pwm": 111, "84": 111, "hard_kill_mobo": 111, "hard_kill_plug_pul": 111, "hard_kil": 111, "heartbeat_timedout": 111, "soft_kill_mobo": 111, "soft_kill_plug_pul": 111, "soft_kil": 111, "send_upd": 111, "set_hard_kil": 111, "set_soft_kil": 111, "simulatedcandevic": 111, "simulate_hard_kil": 111, "simluat": 111, "simulate_soft_kil": 111, "backward_calibr": 111, "forward_calibr": 111, "effort_from_thrust": 111, "calib": 111, "backward": 111, "flh": 111, "frh": 111, "flv": 111, "frv": 111, "blh": 111, "brh": 111, "blv": 111, "brv": 111, "battery_low": 111, "board_heartbeat_lost": 111, "kill_switch": 111, "mobo_heartbeat_lost": 111, "software_request": 111, "buoy_radiu": 111, "cam_model": 111, "color_rang": 111, "compute_tim": 111, "current_cloud": 111, "data_sub": 111, "got_cloud": 111, "got_imag": 111, "image_pub": 111, "image_sub": 111, "image_transport": 111, "last_bump_target": 111, "last_cloud_tim": 111, "last_draw_imag": 111, "last_image_msg": 111, "line_ad": 111, "need_new_cloud": 111, "service_2d": 111, "service_3d": 111, "viewer": 111, "vp1": 111, "vp2": 111, "cloud_callback": 111, "compute_loop": 111, "determine_buoy_posit": 111, "get_last_imag": 111, "request_buoy_posit": 111, "request_buoy_position_2d": 111, "segment_buoi": 111, "last_imag": 111, "target_color": 111, "pointcloudt": 111, "point_cloud_raw": 111, "vector3f": 111, "input_imag": 111, "output_contour": 111, "visionrequest2d": 111, "resp": 111, "visionrequest": 111, "pclvisual": 111, "serviceserv": 111, "camerasubscrib": 111, "imagetransport": 111, "get_2d_feature_point": 111, "pure": 111, "segment": 111, "get_3d_feature_point": 111, "roscamerastream": 111, "rosimagestream": 111, "diffusion_tim": 111, "feature_block_s": 111, "feature_min_dist": 111, "image_proc_scal": 111, "left_corn": 111, "left_most_rec": 111, "max_featur": 111, "right_corn": 111, "right_most_rec": 111, "imagewithcamerainfo": 111, "matx34d": 111, "proj_l": 111, "proj_r": 111, "corners_l": 111, "corners_r": 111, "residu": 111, "pointt": 111, "voxel_filt": 111, "input_cloud": 111, "output_cloud": 111, "leaf_siz": 111, "statistical_outlier_filt": 111, "mean_k": 111, "std_dev_mul_thresh": 111, "closest_point_index_rayomp": 111, "direction_pr": 111, "line_pt": 111, "distance_to_rai": 111, "closest_point_index_rai": 111, "closest_point_rai": 111, "project_uv_to_cloud_index": 111, "image_point": 111, "project_uv_to_cloud": 111, "point_to_eigen": 111, "pcl_point": 111, "compute_norm": 111, "pointcloudnt": 111, "normal_radiu": 111, "segment_rgb_region_grow": 111, "target_cloud": 111, "colored_cloud": 111, "segment_box": 111, "edge_length": 111, "anisotropic_diffus": 111, "t_max": 111, "best_plane_from_combin": 111, "point_list": 111, "distance_threshold": 111, "result_coeff": 111, "calc_plane_coeff": 111, "pt3": 111, "plane_coeff": 111, "point_to_plane_dist": 111, "pt": 111, "roscamerastream_vec3": 111, "vec3b": 111, "typedef": 111, "pointnorm": 111, "pointnt": 111, "pointxyzrgb": 111, "pointxyzt": 111, "pointcloudcolorhandlercustom": 111, "colorhandlert": 111, "get_3d_pos": 111, "is_stereo_coher": 111, "sync_thresh_": 111, "max_z": 111, "intins": 111, "feature_pts_3d": 111, "z_vector_min": 111, "best_fit_plane_standard": 111, "rviz_pub": 111, "visualize_buoi": 111, "visualize_torpedo_board": 111, "rviz_top": 111, "quaterniond": 111, "corners3d": 111, "add_circl": 111, "found_mark": 111, "publish_grid": 111, "reset_grid": 111, "subjugator_vision_tool": 111, "starting_pos": 111, "search_grid": 111, "intoler": 111, "pose_2d": 111, "whatnot": 111, "check_search": 111, "polygon_gener": 111, "return_pos": 111, "searched_area": 111, "grid_r": 111, "position_offset": 111, "entireti": 111, "search_cent": 111, "search_radiu": 111, "12": 111, "farther": 111, "zonifi": 111, "pointxyzi": 111, "mat_ogrid": 111, "stampedtransform": 111, "mat_origin": 111, "clear_ogrid_callback": 111, "clear_pcl_callback": 111, "dvl_callback": 111, "get_objects_callback": 111, "populate_mat_ogrid": 111, "process_persistant_ogrid": 111, "publish_big_pointcloud": 111, "publish_ogrid": 111, "mil_blueview_driv": 111, "blueviewpingptr": 111, "ping_msg": 111, "rangestampedconstptr": 111, "point_cloud_plan": 111, "make_dict": 111, "start_cach": 111, "subjugator_gazebo_tool": 111, "diag_dir": 111, "post_cache_tim": 111, "topic_name_1": 111, "subscriber_1": 111, "topic_name_2": 111, "subscriber_2": 111, "time_step": 111, "pre_cache_tim": 111, "rise_6dof": 111, "air_dens": 111, "drag_coeff": 111, "water_dens": 111, "from_ros_param": 111, "gravity_and_buoy": 111, "inverse_dynam": 111, "inverse_dynamics_from_total_wrench": 111, "newton_euler_extra_term": 111, "subjugator_system_id": 111, "rotational_inertia": 111, "dynamci": 111, "kg": 111, "6x1": 111, "densiti": 111, "graviti": [111, 114], "inertia": 111, "accel": 111, "net": 111, "urdf": 111, "robot_paramt": 111, "world_to_bodi": 111, "buoyanc": [111, 115], "total_wrench": 111, "newton": 111, "from_odometri": 111, "from_odometry_top": 111, "from_pos": 111, "from_posetwiststamp": 111, "from_posetwiststamped_top": 111, "as_pos": 111, "as_posetwist": 111, "as_posetwiststamp": 111, "body_down": 111, "body_up": 111, "heading_deg": 111, "relative_depth": 111, "roll_left": 111, "roll_left_deg": 111, "roll_right": 111, "roll_right_deg": 111, "set_orient": 111, "set_posit": 111, "south": 111, "turn_left": 111, "turn_left_deg": 111, "turn_right": 111, "turn_right_deg": 111, "west": 111, "yaw_left": 111, "yaw_left_deg": 111, "yaw_right": 111, "yaw_right_deg": 111, "zero_rol": 111, "subjugator_miss": 111, "mutablesequ": 111, "examplemiss": 111, "subjugatormiss": 111, "3m": 111, "2m": 111, "7m": 111, "abs_po": 111, "posetwiststamp": 111, "rel_po": 111, "angle_degre": 111, "fundament": 112, "impact": 112, "shoot": 112, "torpedo": 112, "downfac": 112, "gzserver": 113, "stock": 113, "ty": 113, "gzclient": 113, "speak": 113, "stool": 114, "deioniz": 114, "biocid": 114, "vacuum": 114, "reservoir": 114, "bucket": 114, "longev": 114, "purifi": 114, "bonu": 114, "orang": 114, "exercis": 114, "hazard": 114, "floor": 114, "feed": 114, "natur": 114, "stove": 114, "pipe": 114, "expos": 114, "gap": 114, "inlet": 114, "psi": 114, "pinch": 114, "repeat": 114, "worri": [114, 116], "wiggl": 114, "trap": 114, "cord": 115, "duct": 115, "tape": 115, "scissor": 115, "plier": 115, "flat": 115, "screwdriv": 115, "wand": 115, "goggl": 115, "snorkel": 115, "noddl": 115, "fin": 115, "ring": 115, "greas": 115, "55": 115, "hot": 115, "glue": 115, "gun": 115, "clipper": 115, "towel": 115, "sunscreen": 115, "tent": 115, "graham": 115, "powerstrip": 115, "THAT": 115, "THE": 115, "relief": 115, "cap": 115, "IN": 115, "backflip": 115, "quit": 116, "championship": 116, "tournament": 116, "globe": 116, "five": 116, "fifteen": 116, "sixth": 116, "faculti": 116, "realiz": 116, "kinemat": 116, "neural": 116, "aav": 116, "quadcopt": 116, "mav": 116, "swarm": 116, "humanoid": 116, "household": 116, "inde": 116, "technolog": 116, "synergi": 116, "inclus": 116, "inspir": 116, "alumni": 116, "scatter": 116, "whom": 116, "compani": 116, "graciou": 116, "rigor": 116, "hang": 116, "weekend": 116, "restaur": 116, "bite": 116, "embark": 116, "eric": 116}, "objects": {"": [[78, 0, 1, "_CPPv422CameraLidarTransformer", "CameraLidarTransformer"], [78, 1, 1, "_CPPv4N22CameraLidarTransformer22CameraLidarTransformerEv", "CameraLidarTransformer::CameraLidarTransformer"], [111, 0, 1, "_CPPv414Classification", "Classification"], [111, 1, 1, "_CPPv4N14Classification14ClassificationEPN3ros10NodeHandleE", "Classification::Classification"], [111, 2, 1, "_CPPv4N14Classification14ClassificationEPN3ros10NodeHandleE", "Classification::Classification::nh"], [111, 1, 1, "_CPPv4N14Classification10clusteringEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::clustering"], [111, 2, 1, "_CPPv4N14Classification10clusteringEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::clustering::pointCloud"], [111, 1, 1, "_CPPv4N14Classification8filteredEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::filtered"], [111, 2, 1, "_CPPv4N14Classification8filteredEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::filtered::pointCloud"], [111, 1, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::mat_ogrid"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::mat_origin"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::resolution"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::transform"], [78, 0, 1, "_CPPv414ImagePublisher", "ImagePublisher"], [78, 1, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::encoding"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::nh"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::queue_size"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::topic"], [78, 1, 1, "_CPPv4N14ImagePublisher7publishERN2cv3MatE", "ImagePublisher::publish"], [78, 2, 1, "_CPPv4N14ImagePublisher7publishERN2cv3MatE", "ImagePublisher::publish::image_arg"], [78, 0, 1, "_CPPv415ImageSubscriber", "ImageSubscriber"], [78, 1, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber"], [78, 1, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber"], [78, 3, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::T"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::encoding"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::encoding"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::func"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::func"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::nh"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::nh"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::object"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::queue_size"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::queue_size"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::topic"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::topic"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::use_copy"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::use_copy"], [78, 1, 1, "_CPPv4N15ImageSubscriber16getLastImageTimeEv", "ImageSubscriber::getLastImageTime"], [78, 1, 1, "_CPPv4N15ImageSubscriber17imageCallbackCopyERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackCopy"], [78, 2, 1, "_CPPv4N15ImageSubscriber17imageCallbackCopyERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackCopy::image"], [78, 1, 1, "_CPPv4N15ImageSubscriber22imageCallbackReferenceERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackReference"], [78, 2, 1, "_CPPv4N15ImageSubscriber22imageCallbackReferenceERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackReference::image"], [78, 1, 1, "_CPPv4N15ImageSubscriber12infoCallbackERKN11sensor_msgs10CameraInfoE", "ImageSubscriber::infoCallback"], [78, 2, 1, "_CPPv4N15ImageSubscriber12infoCallbackERKN11sensor_msgs10CameraInfoE", "ImageSubscriber::infoCallback::info"], [78, 1, 1, "_CPPv4N15ImageSubscriber17waitForCameraInfoEj", "ImageSubscriber::waitForCameraInfo"], [78, 2, 1, "_CPPv4N15ImageSubscriber17waitForCameraInfoEj", "ImageSubscriber::waitForCameraInfo::timeout"], [78, 1, 1, "_CPPv4N15ImageSubscriber18waitForCameraModelERN14image_geometry18PinholeCameraModelEj", "ImageSubscriber::waitForCameraModel"], [78, 2, 1, "_CPPv4N15ImageSubscriber18waitForCameraModelERN14image_geometry18PinholeCameraModelEj", "ImageSubscriber::waitForCameraModel::pinhole_camera"], [78, 2, 1, "_CPPv4N15ImageSubscriber18waitForCameraModelERN14image_geometry18PinholeCameraModelEj", "ImageSubscriber::waitForCameraModel::timeout"], [111, 0, 1, "_CPPv48OGridGen", "OGridGen"], [111, 1, 1, "_CPPv4N8OGridGen8OGridGenEv", "OGridGen::OGridGen"], [111, 1, 1, "_CPPv4N8OGridGen8callbackERKN19mil_blueview_driver15BlueViewPingPtrE", "OGridGen::callback"], [111, 2, 1, "_CPPv4N8OGridGen8callbackERKN19mil_blueview_driver15BlueViewPingPtrE", "OGridGen::callback::ping_msg"], [111, 1, 1, "_CPPv4N8OGridGen20clear_ogrid_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_ogrid_callback"], [111, 2, 1, "_CPPv4N8OGridGen20clear_ogrid_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_ogrid_callback::req"], [111, 2, 1, "_CPPv4N8OGridGen20clear_ogrid_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_ogrid_callback::res"], [111, 1, 1, "_CPPv4N8OGridGen18clear_pcl_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_pcl_callback"], [111, 2, 1, "_CPPv4N8OGridGen18clear_pcl_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_pcl_callback::req"], [111, 2, 1, "_CPPv4N8OGridGen18clear_pcl_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_pcl_callback::res"], [111, 1, 1, "_CPPv4N8OGridGen7clusterEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::cluster"], [111, 2, 1, "_CPPv4N8OGridGen7clusterEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::cluster::pc"], [111, 1, 1, "_CPPv4N8OGridGen12dvl_callbackERKN8mil_msgs20RangeStampedConstPtrE", "OGridGen::dvl_callback"], [111, 2, 1, "_CPPv4N8OGridGen12dvl_callbackERKN8mil_msgs20RangeStampedConstPtrE", "OGridGen::dvl_callback::dvl"], [111, 1, 1, "_CPPv4N8OGridGen20get_objects_callbackERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "OGridGen::get_objects_callback"], [111, 2, 1, "_CPPv4N8OGridGen20get_objects_callbackERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "OGridGen::get_objects_callback::req"], [111, 2, 1, "_CPPv4N8OGridGen20get_objects_callbackERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "OGridGen::get_objects_callback::res"], [111, 1, 1, "_CPPv4N8OGridGen18populate_mat_ogridEv", "OGridGen::populate_mat_ogrid"], [111, 1, 1, "_CPPv4N8OGridGen24process_persistant_ogridEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::process_persistant_ogrid"], [111, 2, 1, "_CPPv4N8OGridGen24process_persistant_ogridEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::process_persistant_ogrid::point_cloud_plane"], [111, 1, 1, "_CPPv4N8OGridGen22publish_big_pointcloudERKN3ros10TimerEventE", "OGridGen::publish_big_pointcloud"], [111, 1, 1, "_CPPv4N8OGridGen13publish_ogridEv", "OGridGen::publish_ogrid"], [111, 4, 1, "_CPPv420ROSCameraStream_Vec3", "ROSCameraStream_Vec3"], [111, 0, 1, "_CPPv410StereoBase", "StereoBase"], [111, 1, 1, "_CPPv4N10StereoBase10StereoBaseEv", "StereoBase::StereoBase"], [111, 1, 1, "_CPPv4N10StereoBase21get_2d_feature_pointsEN2cv3MatE", "StereoBase::get_2d_feature_points"], [111, 2, 1, "_CPPv4N10StereoBase21get_2d_feature_pointsEN2cv3MatE", "StereoBase::get_2d_feature_points::image"], [111, 1, 1, "_CPPv4N10StereoBase21get_3d_feature_pointsEi", "StereoBase::get_3d_feature_points"], [111, 2, 1, "_CPPv4N10StereoBase21get_3d_feature_pointsEi", "StereoBase::get_3d_feature_points::max_z"], [111, 1, 1, "_CPPv4N10StereoBase11get_3d_poseENSt6vectorIN5Eigen8Vector3dEEEf", "StereoBase::get_3d_pose"], [111, 2, 1, "_CPPv4N10StereoBase11get_3d_poseENSt6vectorIN5Eigen8Vector3dEEEf", "StereoBase::get_3d_pose::feature_pts_3d"], [111, 2, 1, "_CPPv4N10StereoBase11get_3d_poseENSt6vectorIN5Eigen8Vector3dEEEf", "StereoBase::get_3d_pose::z_vector_min"], [111, 1, 1, "_CPPv4N10StereoBase18is_stereo_coherentEv", "StereoBase::is_stereo_coherent"], [111, 0, 1, "_CPPv422SubjuGatorBuoyDetector", "SubjuGatorBuoyDetector"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector22SubjuGatorBuoyDetectorEv", "SubjuGatorBuoyDetector::SubjuGatorBuoyDetector"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector11buoy_radiusE", "SubjuGatorBuoyDetector::buoy_radius"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9cam_modelE", "SubjuGatorBuoyDetector::cam_model"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector14cloud_callbackERKN11sensor_msgs11PointCloud28ConstPtrE", "SubjuGatorBuoyDetector::cloud_callback"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector12color_rangesE", "SubjuGatorBuoyDetector::color_ranges"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector12compute_loopERKN3ros10TimerEventE", "SubjuGatorBuoyDetector::compute_loop"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector13compute_timerE", "SubjuGatorBuoyDetector::compute_timer"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9computingE", "SubjuGatorBuoyDetector::computing"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector13current_cloudE", "SubjuGatorBuoyDetector::current_cloud"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector8data_subE", "SubjuGatorBuoyDetector::data_sub"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::cam_model"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::center"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::image_raw"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::point_cloud_raw"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::target_color"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector14get_last_imageERN2cv3MatE", "SubjuGatorBuoyDetector::get_last_image"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector14get_last_imageERN2cv3MatE", "SubjuGatorBuoyDetector::get_last_image::last_image"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9got_cloudE", "SubjuGatorBuoyDetector::got_cloud"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9got_imageE", "SubjuGatorBuoyDetector::got_image"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "SubjuGatorBuoyDetector::image_callback"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "SubjuGatorBuoyDetector::image_callback::info_msg"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "SubjuGatorBuoyDetector::image_callback::msg"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9image_pubE", "SubjuGatorBuoyDetector::image_pub"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9image_subE", "SubjuGatorBuoyDetector::image_sub"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10image_timeE", "SubjuGatorBuoyDetector::image_time"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector15image_transportE", "SubjuGatorBuoyDetector::image_transport"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector16last_bump_targetE", "SubjuGatorBuoyDetector::last_bump_target"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector15last_cloud_timeE", "SubjuGatorBuoyDetector::last_cloud_time"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector15last_draw_imageE", "SubjuGatorBuoyDetector::last_draw_image"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector14last_image_msgE", "SubjuGatorBuoyDetector::last_image_msg"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10line_addedE", "SubjuGatorBuoyDetector::line_added"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector14need_new_cloudE", "SubjuGatorBuoyDetector::need_new_cloud"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector2nhE", "SubjuGatorBuoyDetector::nh"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector21request_buoy_positionERN15subjugator_msgs13VisionRequest7RequestERN15subjugator_msgs13VisionRequest8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector21request_buoy_positionERN15subjugator_msgs13VisionRequest7RequestERN15subjugator_msgs13VisionRequest8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position::req"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector21request_buoy_positionERN15subjugator_msgs13VisionRequest7RequestERN15subjugator_msgs13VisionRequest8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position::resp"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector24request_buoy_position_2dERN15subjugator_msgs15VisionRequest2D7RequestERN15subjugator_msgs15VisionRequest2D8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position_2d"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector24request_buoy_position_2dERN15subjugator_msgs15VisionRequest2D7RequestERN15subjugator_msgs15VisionRequest2D8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position_2d::req"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector24request_buoy_position_2dERN15subjugator_msgs15VisionRequest2D7RequestERN15subjugator_msgs15VisionRequest2D8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position_2d::resp"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector4rvizE", "SubjuGatorBuoyDetector::rviz"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::center"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::input_image"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::output_contours"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::target_name"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10service_2dE", "SubjuGatorBuoyDetector::service_2d"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10service_3dE", "SubjuGatorBuoyDetector::service_3d"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector6viewerE", "SubjuGatorBuoyDetector::viewer"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector3vp1E", "SubjuGatorBuoyDetector::vp1"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector3vp2E", "SubjuGatorBuoyDetector::vp2"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetectorD0Ev", "SubjuGatorBuoyDetector::~SubjuGatorBuoyDetector"], [111, 0, 1, "_CPPv422SubjuGatorObjectFinder", "SubjuGatorObjectFinder"], [111, 1, 1, "_CPPv4N22SubjuGatorObjectFinder22SubjuGatorObjectFinderEv", "SubjuGatorObjectFinder::SubjuGatorObjectFinder"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder16image_proc_scaleE", "SubjuGatorObjectFinder::image_proc_scale"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder12left_cornersE", "SubjuGatorObjectFinder::left_corners"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder16left_most_recentE", "SubjuGatorObjectFinder::left_most_recent"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder13right_cornersE", "SubjuGatorObjectFinder::right_corners"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder17right_most_recentE", "SubjuGatorObjectFinder::right_most_recent"], [111, 1, 1, "_CPPv4N22SubjuGatorObjectFinderD0Ev", "SubjuGatorObjectFinder::~SubjuGatorObjectFinder"], [111, 0, 1, "_CPPv427SubjuGatorStartGateDetector", "SubjuGatorStartGateDetector"], [111, 1, 1, "_CPPv4N27SubjuGatorStartGateDetector27SubjuGatorStartGateDetectorEv", "SubjuGatorStartGateDetector::SubjuGatorStartGateDetector"], [111, 1, 1, "_CPPv4N27SubjuGatorStartGateDetector21get_2d_feature_pointsEN2cv3MatE", "SubjuGatorStartGateDetector::get_2d_feature_points"], [111, 2, 1, "_CPPv4N27SubjuGatorStartGateDetector21get_2d_feature_pointsEN2cv3MatE", "SubjuGatorStartGateDetector::get_2d_feature_points::image"], [111, 5, 1, "_CPPv4N27SubjuGatorStartGateDetector2nhE", "SubjuGatorStartGateDetector::nh"], [111, 1, 1, "_CPPv4N27SubjuGatorStartGateDetector3runEv", "SubjuGatorStartGateDetector::run"], [111, 0, 1, "_CPPv430SubjuGatorTorpedoBoardDetector", "SubjuGatorTorpedoBoardDetector"], [111, 1, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector30SubjuGatorTorpedoBoardDetectorEv", "SubjuGatorTorpedoBoardDetector::SubjuGatorTorpedoBoardDetector"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector14diffusion_timeE", "SubjuGatorTorpedoBoardDetector::diffusion_time"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector18feature_block_sizeE", "SubjuGatorTorpedoBoardDetector::feature_block_size"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector20feature_min_distanceE", "SubjuGatorTorpedoBoardDetector::feature_min_distance"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector16image_proc_scaleE", "SubjuGatorTorpedoBoardDetector::image_proc_scale"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector12left_cornersE", "SubjuGatorTorpedoBoardDetector::left_corners"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector16left_most_recentE", "SubjuGatorTorpedoBoardDetector::left_most_recent"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector12max_featuresE", "SubjuGatorTorpedoBoardDetector::max_features"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector13right_cornersE", "SubjuGatorTorpedoBoardDetector::right_corners"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector17right_most_recentE", "SubjuGatorTorpedoBoardDetector::right_most_recent"], [111, 1, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetectorD0Ev", "SubjuGatorTorpedoBoardDetector::~SubjuGatorTorpedoBoardDetector"], [67, 0, 1, "_CPPv422SylphaseSonarToRosNode", "SylphaseSonarToRosNode"], [67, 5, 1, "_CPPv4N22SylphaseSonarToRosNode8CHANNELSE", "SylphaseSonarToRosNode::CHANNELS"], [67, 5, 1, "_CPPv4N22SylphaseSonarToRosNode18SAMPLES_PER_SECONDE", "SylphaseSonarToRosNode::SAMPLES_PER_SECOND"], [67, 1, 1, "_CPPv4N22SylphaseSonarToRosNode22SylphaseSonarToRosNodeEN3ros10NodeHandleEN3ros10NodeHandleE", "SylphaseSonarToRosNode::SylphaseSonarToRosNode"], [67, 2, 1, "_CPPv4N22SylphaseSonarToRosNode22SylphaseSonarToRosNodeEN3ros10NodeHandleEN3ros10NodeHandleE", "SylphaseSonarToRosNode::SylphaseSonarToRosNode::nh"], [67, 2, 1, "_CPPv4N22SylphaseSonarToRosNode22SylphaseSonarToRosNodeEN3ros10NodeHandleEN3ros10NodeHandleE", "SylphaseSonarToRosNode::SylphaseSonarToRosNode::private_nh"], [67, 1, 1, "_CPPv4N22SylphaseSonarToRosNode3runEv", "SylphaseSonarToRosNode::run"], [111, 0, 1, "_CPPv428TorpedoBoardReprojectionCost", "TorpedoBoardReprojectionCost"], [111, 1, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::corners_L"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::corners_R"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::proj_L"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::proj_R"], [111, 1, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()"], [111, 3, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::T"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::residual"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::x"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::y"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::yaw"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::z"], [111, 1, 1, "_CPPv4N28TorpedoBoardReprojectionCostD0Ev", "TorpedoBoardReprojectionCost::~TorpedoBoardReprojectionCost"], [111, 1, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion"], [111, 2, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion::dest"], [111, 2, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion::src"], [111, 2, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion::t_max"], [111, 1, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination"], [111, 2, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination::distance_threshold"], [111, 2, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination::point_list"], [111, 2, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination::result_coeffs"], [111, 1, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::plane_coeffs"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::pt1"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::pt2"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::pt3"], [78, 0, 1, "_CPPv4N10mil_vision13ActiveContourE", "mil_vision::ActiveContour"], [78, 1, 1, "_CPPv4N10mil_vision13ActiveContour13ActiveContourEv", "mil_vision::ActiveContour::ActiveContour"], [78, 0, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame"], [78, 1, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERK11CameraFrame", "mil_vision::CameraFrame::CameraFrame"], [78, 1, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame"], [78, 1, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameEv", "mil_vision::CameraFrame::CameraFrame"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::cam_model_ptr"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::image_msg_ptr"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::is_rectified"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERK11CameraFrame", "mil_vision::CameraFrame::CameraFrame::other"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::store_at_scale"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::cam_model_ptr_t"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame9copyImgToEN2cv3MatE", "mil_vision::CameraFrame::copyImgTo"], [78, 2, 1, "_CPPv4NK10mil_vision11CameraFrame9copyImgToEN2cv3MatE", "mil_vision::CameraFrame::copyImgTo::dest"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::float_t"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame17getCameraModelPtrEv", "mil_vision::CameraFrame::getCameraModelPtr"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame13getImageScaleEv", "mil_vision::CameraFrame::getImageScale"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame5imageEv", "mil_vision::CameraFrame::image"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::img_scalar_t"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame21isCameraGeometryKnownEv", "mil_vision::CameraFrame::isCameraGeometryKnown"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame9rectifiedEv", "mil_vision::CameraFrame::rectified"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame3seqEv", "mil_vision::CameraFrame::seq"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame5stampEv", "mil_vision::CameraFrame::stamp"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::time_t_"], [78, 0, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence8CamFrameE", "mil_vision::CameraFrameSequence::CamFrame"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence16CamFrameConstPtrE", "mil_vision::CameraFrameSequence::CamFrameConstPtr"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence11CamFramePtrE", "mil_vision::CameraFrameSequence::CamFramePtr"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence16CamFrameSequenceE", "mil_vision::CameraFrameSequence::CamFrameSequence"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence19CameraFrameSequenceERK19CameraFrameSequence", "mil_vision::CameraFrameSequence::CameraFrameSequence"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence19CameraFrameSequenceERR19CameraFrameSequence", "mil_vision::CameraFrameSequence::CameraFrameSequence"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence19CameraFrameSequenceEv", "mil_vision::CameraFrameSequence::CameraFrameSequence"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence14CircularBufferE", "mil_vision::CameraFrameSequence::CircularBuffer"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::cam_model_ptr_t"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence4colsEv", "mil_vision::CameraFrameSequence::cols"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::float_t"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence17getCameraModelPtrEv", "mil_vision::CameraFrameSequence::getCameraModelPtr"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence16getFrameFromTimeE7time_t_", "mil_vision::CameraFrameSequence::getFrameFromTime"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::img_scalar_t"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence15isGeometryConstEv", "mil_vision::CameraFrameSequence::isGeometryConst"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequenceixEi", "mil_vision::CameraFrameSequence::operator[]"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence4rowsEv", "mil_vision::CameraFrameSequence::rows"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence4sizeEv", "mil_vision::CameraFrameSequence::size"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::time_t_"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequenceD0Ev", "mil_vision::CameraFrameSequence::~CameraFrameSequence"], [78, 0, 1, "_CPPv4I0EN10mil_vision11CameraModelE", "mil_vision::CameraModel"], [78, 1, 1, "_CPPv4N10mil_vision11CameraModel11CameraModelEv", "mil_vision::CameraModel::CameraModel"], [78, 3, 1, "_CPPv4I0EN10mil_vision11CameraModelE", "mil_vision::CameraModel::T"], [78, 1, 1, "_CPPv4N10mil_vision11CameraModelD0Ev", "mil_vision::CameraModel::~CameraModel"], [78, 0, 1, "_CPPv4N10mil_vision14CameraObserverE", "mil_vision::CameraObserver"], [78, 1, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::cam_topic"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::nh"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::pcd_in_topic"], [78, 1, 1, "_CPPv4NK10mil_vision14CameraObserver17getCameraModelPtrEv", "mil_vision::CameraObserver::getCameraModelPtr"], [78, 1, 1, "_CPPv4N10mil_vision14CameraObserver22get_color_observationsERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::get_color_observations"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver22get_color_observationsERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::get_color_observations::pcd"], [78, 1, 1, "_CPPv4NK10mil_vision14CameraObserver2okEv", "mil_vision::CameraObserver::ok"], [78, 1, 1, "_CPPv4N10mil_vision14CameraObserverclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::operator()"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserverclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::operator()::pcd"], [78, 0, 1, "_CPPv4N10mil_vision11ClosedCurveE", "mil_vision::ClosedCurve"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve11ClosedCurveENSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::ClosedCurve"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve11ClosedCurveENSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::ClosedCurve::points"], [78, 0, 1, "_CPPv4N10mil_vision11ClosedCurve12PerturbationE", "mil_vision::ClosedCurve::Perturbation"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation5entryE", "mil_vision::ClosedCurve::Perturbation::entry"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation4exitE", "mil_vision::ClosedCurve::Perturbation::exit"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation3idxE", "mil_vision::ClosedCurve::Perturbation::idx"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation5routeE", "mil_vision::ClosedCurve::Perturbation::route"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve17applyPerturbationERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::applyPerturbation"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve17applyPerturbationERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::applyPerturbation::idx"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve17applyPerturbationERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::applyPerturbation::perturbation"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve7perturbERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::perturb"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve7perturbERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::perturb::idx"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve7perturbERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::perturb::perturbation"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve13validateCurveERNSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::validateCurve"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve13validateCurveERNSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::validateCurve::curve"], [78, 0, 1, "_CPPv4N10mil_vision16ColorObservationE", "mil_vision::ColorObservation"], [78, 4, 1, "_CPPv4N10mil_vision16ColorObservation3VecE", "mil_vision::ColorObservation::Vec"], [78, 4, 1, "_CPPv4N10mil_vision16ColorObservation6VecImgE", "mil_vision::ColorObservation::VecImg"], [78, 5, 1, "_CPPv4N10mil_vision16ColorObservation3bgrE", "mil_vision::ColorObservation::bgr"], [78, 5, 1, "_CPPv4N10mil_vision16ColorObservation3xyzE", "mil_vision::ColorObservation::xyz"], [78, 0, 1, "_CPPv4N10mil_vision12FrameHistoryE", "mil_vision::FrameHistory"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory12FrameHistoryENSt6stringEj", "mil_vision::FrameHistory::FrameHistory"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory12FrameHistoryENSt6stringEj", "mil_vision::FrameHistory::FrameHistory::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory12FrameHistoryENSt6stringEj", "mil_vision::FrameHistory::FrameHistory::img_topic"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory16frames_availableEv", "mil_vision::FrameHistory::frames_available"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory17get_frame_historyEj", "mil_vision::FrameHistory::get_frame_history"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory17get_frame_historyEj", "mil_vision::FrameHistory::get_frame_history::frames_requested"], [78, 5, 1, "_CPPv4N10mil_vision12FrameHistory12history_sizeE", "mil_vision::FrameHistory::history_size"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::FrameHistory::image_callback"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::FrameHistory::image_callback::image_msg"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::FrameHistory::image_callback::info_msg"], [78, 5, 1, "_CPPv4N10mil_vision12FrameHistory10topic_nameE", "mil_vision::FrameHistory::topic_name"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistoryD0Ev", "mil_vision::FrameHistory::~FrameHistory"], [78, 0, 1, "_CPPv4N10mil_vision19ImageWithCameraInfoE", "mil_vision::ImageWithCameraInfo"], [78, 1, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEN11sensor_msgs13ImageConstPtrEN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo"], [78, 1, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEv", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo"], [78, 2, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEN11sensor_msgs13ImageConstPtrEN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo::_image_msg_ptr"], [78, 2, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEN11sensor_msgs13ImageConstPtrEN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo::_info_msg_ptr"], [78, 5, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo13image_msg_ptrE", "mil_vision::ImageWithCameraInfo::image_msg_ptr"], [78, 5, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo10image_timeE", "mil_vision::ImageWithCameraInfo::image_time"], [78, 5, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo12info_msg_ptrE", "mil_vision::ImageWithCameraInfo::info_msg_ptr"], [78, 1, 1, "_CPPv4NK10mil_vision19ImageWithCameraInfoltERK19ImageWithCameraInfo", "mil_vision::ImageWithCameraInfo::operator<"], [78, 2, 1, "_CPPv4NK10mil_vision19ImageWithCameraInfoltERK19ImageWithCameraInfo", "mil_vision::ImageWithCameraInfo::operator<::right"], [78, 4, 1, "_CPPv4I0EN10mil_vision3PCDE", "mil_vision::PCD"], [78, 3, 1, "_CPPv4I0EN10mil_vision3PCDE", "mil_vision::PCD::T"], [78, 4, 1, "_CPPv4I0EN10mil_vision6PCDPtrE", "mil_vision::PCDPtr"], [78, 3, 1, "_CPPv4I0EN10mil_vision6PCDPtrE", "mil_vision::PCDPtr::T"], [78, 0, 1, "_CPPv4N10mil_vision12PcdColorizerE", "mil_vision::PcdColorizer"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::input_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::input_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::nh"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::nh"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::output_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::rgb_cam_frame"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::rgb_cam_topic"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer10_color_pcdEv", "mil_vision::PcdColorizer::_color_pcd"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer17_transform_to_camEv", "mil_vision::PcdColorizer::_transform_to_cam"], [78, 1, 1, "_CPPv4NK10mil_vision12PcdColorizer2okEv", "mil_vision::PcdColorizer::ok"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizerD0Ev", "mil_vision::PcdColorizer::~PcdColorizer"], [78, 0, 1, "_CPPv4I00EN10mil_vision18PcdSubPubAlgorithmE", "mil_vision::PcdSubPubAlgorithm"], [78, 4, 1, "_CPPv4I0EN10mil_vision18PcdSubPubAlgorithm3PCDE", "mil_vision::PcdSubPubAlgorithm::PCD"], [78, 3, 1, "_CPPv4I0EN10mil_vision18PcdSubPubAlgorithm3PCDE", "mil_vision::PcdSubPubAlgorithm::PCD::T"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEv", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm"], [78, 2, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm::input_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm::nh"], [78, 2, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm::output_pcd_topic"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm9activatedEv", "mil_vision::PcdSubPubAlgorithm::activated"], [78, 3, 1, "_CPPv4I00EN10mil_vision18PcdSubPubAlgorithmE", "mil_vision::PcdSubPubAlgorithm::input_T"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm2okEv", "mil_vision::PcdSubPubAlgorithm::ok"], [78, 3, 1, "_CPPv4I00EN10mil_vision18PcdSubPubAlgorithmE", "mil_vision::PcdSubPubAlgorithm::output_T"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm16switchActivationEv", "mil_vision::PcdSubPubAlgorithm::switchActivation"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithmD0Ev", "mil_vision::PcdSubPubAlgorithm::~PcdSubPubAlgorithm"], [78, 6, 1, "_CPPv4N10mil_vision9PixelTypeE", "mil_vision::PixelType"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC1E", "mil_vision::PixelType::_16SC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC2E", "mil_vision::PixelType::_16SC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC3E", "mil_vision::PixelType::_16SC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC4E", "mil_vision::PixelType::_16SC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC1E", "mil_vision::PixelType::_16UC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC2E", "mil_vision::PixelType::_16UC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC3E", "mil_vision::PixelType::_16UC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC4E", "mil_vision::PixelType::_16UC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC1E", "mil_vision::PixelType::_32FC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC2E", "mil_vision::PixelType::_32FC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC3E", "mil_vision::PixelType::_32FC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC4E", "mil_vision::PixelType::_32FC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC1E", "mil_vision::PixelType::_32SC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC2E", "mil_vision::PixelType::_32SC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC3E", "mil_vision::PixelType::_32SC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC4E", "mil_vision::PixelType::_32SC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC1E", "mil_vision::PixelType::_64FC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC2E", "mil_vision::PixelType::_64FC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC3E", "mil_vision::PixelType::_64FC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC4E", "mil_vision::PixelType::_64FC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC1E", "mil_vision::PixelType::_8SC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC2E", "mil_vision::PixelType::_8SC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC3E", "mil_vision::PixelType::_8SC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC4E", "mil_vision::PixelType::_8SC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC1E", "mil_vision::PixelType::_8UC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC2E", "mil_vision::PixelType::_8UC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC3E", "mil_vision::PixelType::_8UC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC4E", "mil_vision::PixelType::_8UC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType8_UNKNOWNE", "mil_vision::PixelType::_UNKNOWN"], [78, 0, 1, "_CPPv4N10mil_vision15PointColorStatsE", "mil_vision::PointColorStats"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats3bgrE", "mil_vision::PointColorStats::bgr"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats1nE", "mil_vision::PointColorStats::n"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats3varE", "mil_vision::PointColorStats::var"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats3xyzE", "mil_vision::PointColorStats::xyz"], [78, 0, 1, "_CPPv4I00EN10mil_vision15ROSCameraStreamE", "mil_vision::ROSCameraStream"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream8CamFrameE", "mil_vision::ROSCameraStream::CamFrame"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream16CamFrameConstPtrE", "mil_vision::ROSCameraStream::CamFrameConstPtr"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream11CamFramePtrE", "mil_vision::ROSCameraStream::CamFramePtr"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream16CamFrameSequenceE", "mil_vision::ROSCameraStream::CamFrameSequence"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream14CircularBufferE", "mil_vision::ROSCameraStream::CircularBuffer"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream15ROSCameraStreamEN3ros10NodeHandleE6size_t", "mil_vision::ROSCameraStream::ROSCameraStream"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream15ROSCameraStreamEN3ros10NodeHandleE6size_t", "mil_vision::ROSCameraStream::ROSCameraStream::buffer_size"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream15ROSCameraStreamEN3ros10NodeHandleE6size_t", "mil_vision::ROSCameraStream::ROSCameraStream::nh"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream5beginEv", "mil_vision::ROSCameraStream::begin"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream4colsEv", "mil_vision::ROSCameraStream::cols"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream3endEv", "mil_vision::ROSCameraStream::end"], [78, 3, 1, "_CPPv4I00EN10mil_vision15ROSCameraStreamE", "mil_vision::ROSCameraStream::float_t"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream17getCameraModelPtrEv", "mil_vision::ROSCameraStream::getCameraModelPtr"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream16getFrameFromTimeEN3ros4TimeE", "mil_vision::ROSCameraStream::getFrameFromTime"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream16getFrameFromTimeEN3ros4TimeE", "mil_vision::ROSCameraStream::getFrameFromTime::desired_time"], [78, 3, 1, "_CPPv4I00EN10mil_vision15ROSCameraStreamE", "mil_vision::ROSCameraStream::img_scalar_t"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream4initERNSt6stringE", "mil_vision::ROSCameraStream::init"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream4initERNSt6stringE", "mil_vision::ROSCameraStream::init::camera_topic"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream15isGeometryConstEv", "mil_vision::ROSCameraStream::isGeometryConst"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream2okEv", "mil_vision::ROSCameraStream::ok"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStreamixEi", "mil_vision::ROSCameraStream::operator[]"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStreamixEi", "mil_vision::ROSCameraStream::operator[]::i"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream4rowsEv", "mil_vision::ROSCameraStream::rows"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream4sizeEv", "mil_vision::ROSCameraStream::size"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStreamD0Ev", "mil_vision::ROSCameraStream::~ROSCameraStream"], [78, 0, 1, "_CPPv4N10mil_vision5RangeE", "mil_vision::Range"], [78, 5, 1, "_CPPv4N10mil_vision5Range5lowerE", "mil_vision::Range::lower"], [78, 5, 1, "_CPPv4N10mil_vision5Range5upperE", "mil_vision::Range::upper"], [78, 4, 1, "_CPPv4I0EN10mil_vision10SPtrVectorE", "mil_vision::SPtrVector"], [78, 3, 1, "_CPPv4I0EN10mil_vision10SPtrVectorE", "mil_vision::SPtrVector::T"], [78, 0, 1, "_CPPv4N10mil_vision20SingleCloudProcessorE", "mil_vision::SingleCloudProcessor"], [78, 1, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor::in_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor::nh"], [78, 1, 1, "_CPPv4NK10mil_vision20SingleCloudProcessor2okEv", "mil_vision::SingleCloudProcessor::ok"], [78, 1, 1, "_CPPv4N10mil_vision20SingleCloudProcessorclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::SingleCloudProcessor::operator()"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessorclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::SingleCloudProcessor::operator()::pcd"], [78, 4, 1, "_CPPv4I0EN10mil_vision10UPtrVectorE", "mil_vision::UPtrVector"], [78, 3, 1, "_CPPv4I0EN10mil_vision10UPtrVectorE", "mil_vision::UPtrVector::T"], [78, 0, 1, "_CPPv4N10mil_vision19UnoccludedPointsImgE", "mil_vision::UnoccludedPointsImg"], [78, 1, 1, "_CPPv4N10mil_vision19UnoccludedPointsImg19UnoccludedPointsImgEv", "mil_vision::UnoccludedPointsImg::UnoccludedPointsImg"], [78, 1, 1, "_CPPv4N10mil_vision17find_local_maximaERKN2cv5MatNDEf", "mil_vision::find_local_maxima"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_maximaERKN2cv5MatNDEf", "mil_vision::find_local_maxima::histogram"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_maximaERKN2cv5MatNDEf", "mil_vision::find_local_maxima::thresh_multiplier"], [78, 1, 1, "_CPPv4N10mil_vision17find_local_minimaERKN2cv5MatNDEf", "mil_vision::find_local_minima"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_minimaERKN2cv5MatNDEf", "mil_vision::find_local_minima::histogram"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_minimaERKN2cv5MatNDEf", "mil_vision::find_local_minima::thresh_multiplier"], [78, 1, 1, "_CPPv4N10mil_vision27generate_gaussian_kernel_1DE6size_tf", "mil_vision::generate_gaussian_kernel_1D"], [78, 2, 1, "_CPPv4N10mil_vision27generate_gaussian_kernel_1DE6size_tf", "mil_vision::generate_gaussian_kernel_1D::kernel_size"], [78, 2, 1, "_CPPv4N10mil_vision27generate_gaussian_kernel_1DE6size_tf", "mil_vision::generate_gaussian_kernel_1D::sigma"], [78, 1, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle"], [78, 2, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle::ang_res"], [78, 2, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle::deg"], [78, 2, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle::kernel"], [78, 1, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange"], [78, 2, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange::dest"], [78, 2, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange::range"], [78, 2, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange::src"], [78, 1, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::R"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::essential"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::pt1"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::pt2"], [78, 1, 1, "_CPPv4N10mil_vision14larger_contourERK7ContourRK7Contour", "mil_vision::larger_contour"], [78, 2, 1, "_CPPv4N10mil_vision14larger_contourERK7ContourRK7Contour", "mil_vision::larger_contour::c1"], [78, 2, 1, "_CPPv4N10mil_vision14larger_contourERK7ContourRK7Contour", "mil_vision::larger_contour::c2"], [78, 1, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::R"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::essential"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::pt1"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::pt2"], [78, 1, 1, "_CPPv4N10mil_vision16makeRotInvariantERKN2cv3MatEi", "mil_vision::makeRotInvariant"], [78, 2, 1, "_CPPv4N10mil_vision16makeRotInvariantERKN2cv3MatEi", "mil_vision::makeRotInvariant::kernel"], [78, 2, 1, "_CPPv4N10mil_vision16makeRotInvariantERKN2cv3MatEi", "mil_vision::makeRotInvariant::rotations"], [78, 1, 1, "_CPPv4N10mil_vision16range_from_paramERNSt6stringER5Range", "mil_vision::range_from_param"], [78, 2, 1, "_CPPv4N10mil_vision16range_from_paramERNSt6stringER5Range", "mil_vision::range_from_param::param_root"], [78, 2, 1, "_CPPv4N10mil_vision16range_from_paramERNSt6stringER5Range", "mil_vision::range_from_param::range"], [78, 1, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::deg"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::kernel"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::no_expand"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::theta"], [78, 1, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEi", "mil_vision::select_hist_mode"], [78, 1, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEj", "mil_vision::select_hist_mode"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEi", "mil_vision::select_hist_mode::histogram_modes"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEj", "mil_vision::select_hist_mode::histogram_modes"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEi", "mil_vision::select_hist_mode::target"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEj", "mil_vision::select_hist_mode::target"], [78, 1, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram"], [78, 2, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram::filter_kernel_size"], [78, 2, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram::histogram"], [78, 2, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram::sigma"], [78, 1, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::debug_img"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::dest"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::high_thresh_gain"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::image_name"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::low_thresh_gain"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::ranges"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::ret_dbg_img"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::sigma"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::src"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::target"], [78, 1, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::mat_P_l"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::mat_P_r"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::undistorted_l"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::undistorted_r"], [69, 0, 1, "_CPPv4N6pcodar10AssociatorE", "pcodar::Associator"], [69, 1, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate"], [69, 2, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate::clusters"], [69, 2, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate::pc"], [69, 2, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate::prev_objects"], [69, 1, 1, "_CPPv4N6pcodar10Associator13update_configERK6Config", "pcodar::Associator::update_config"], [69, 2, 1, "_CPPv4N6pcodar10Associator13update_configERK6Config", "pcodar::Associator::update_config::config"], [69, 4, 1, "_CPPv4N6pcodar6ConfigE", "pcodar::Config"], [69, 0, 1, "_CPPv4N6pcodar16InputCloudFilterE", "pcodar::InputCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter16InputCloudFilterEv", "pcodar::InputCloudFilter::InputCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::InputCloudFilter::filter"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::InputCloudFilter::filter::in"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::InputCloudFilter::filter::pc"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter10set_boundsE15point_cloud_ptr", "pcodar::InputCloudFilter::set_bounds"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter10set_boundsE15point_cloud_ptr", "pcodar::InputCloudFilter::set_bounds::bounds"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter19set_robot_footprintERKN5Eigen8Vector4fERKN5Eigen8Vector4fE", "pcodar::InputCloudFilter::set_robot_footprint"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter19set_robot_footprintERKN5Eigen8Vector4fERKN5Eigen8Vector4fE", "pcodar::InputCloudFilter::set_robot_footprint::max"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter19set_robot_footprintERKN5Eigen8Vector4fERKN5Eigen8Vector4fE", "pcodar::InputCloudFilter::set_robot_footprint::min"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter14set_robot_poseERKN5Eigen8Affine3dE", "pcodar::InputCloudFilter::set_robot_pose"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter14set_robot_poseERKN5Eigen8Affine3dE", "pcodar::InputCloudFilter::set_robot_pose::transform"], [69, 4, 1, "_CPPv4N6pcodar6KdTreeE", "pcodar::KdTree"], [69, 4, 1, "_CPPv4N6pcodar9KdTreePtrE", "pcodar::KdTreePtr"], [69, 0, 1, "_CPPv4N6pcodar13MarkerManagerE", "pcodar::MarkerManager"], [69, 1, 1, "_CPPv4N6pcodar13MarkerManager10initializeERN3ros10NodeHandleENSt10shared_ptrI9ObjectMapEE", "pcodar::MarkerManager::initialize"], [69, 2, 1, "_CPPv4N6pcodar13MarkerManager10initializeERN3ros10NodeHandleENSt10shared_ptrI9ObjectMapEE", "pcodar::MarkerManager::initialize::nh"], [69, 2, 1, "_CPPv4N6pcodar13MarkerManager10initializeERN3ros10NodeHandleENSt10shared_ptrI9ObjectMapEE", "pcodar::MarkerManager::initialize::objects_"], [69, 1, 1, "_CPPv4N6pcodar13MarkerManager5resetEv", "pcodar::MarkerManager::reset"], [69, 1, 1, "_CPPv4N6pcodar13MarkerManager14update_markersEv", "pcodar::MarkerManager::update_markers"], [69, 0, 1, "_CPPv4N6pcodar4NodeE", "pcodar::Node"], [69, 1, 1, "_CPPv4N6pcodar4Node4NodeEN3ros10NodeHandleE", "pcodar::Node::Node"], [69, 2, 1, "_CPPv4N6pcodar4Node4NodeEN3ros10NodeHandleE", "pcodar::Node::Node::nh"], [69, 1, 1, "_CPPv4N6pcodar4Node10initializeEv", "pcodar::Node::initialize"], [69, 1, 1, "_CPPv4N6pcodar4Node11velodyne_cbERKN11sensor_msgs19PointCloud2ConstPtrE", "pcodar::Node::velodyne_cb"], [69, 2, 1, "_CPPv4N6pcodar4Node11velodyne_cbERKN11sensor_msgs19PointCloud2ConstPtrE", "pcodar::Node::velodyne_cb::pcloud"], [69, 0, 1, "_CPPv4N6pcodar8NodeBaseE", "pcodar::NodeBase"], [69, 1, 1, "_CPPv4N6pcodar8NodeBase8NodeBaseEN3ros10NodeHandleE", "pcodar::NodeBase::NodeBase"], [69, 2, 1, "_CPPv4N6pcodar8NodeBase8NodeBaseEN3ros10NodeHandleE", "pcodar::NodeBase::NodeBase::nh"], [69, 1, 1, "_CPPv4N6pcodar8NodeBase13UpdateObjectsEv", "pcodar::NodeBase::UpdateObjects"], [69, 1, 1, "_CPPv4N6pcodar8NodeBase10initializeEv", "pcodar::NodeBase::initialize"], [69, 5, 1, "_CPPv4N6pcodar8NodeBase8objects_E", "pcodar::NodeBase::objects_"], [69, 0, 1, "_CPPv4N6pcodar6ObjectE", "pcodar::Object"], [69, 1, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object"], [69, 2, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object::id"], [69, 2, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object::pc"], [69, 2, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object::search_tree"], [69, 1, 1, "_CPPv4NK6pcodar6Object6as_msgEv", "pcodar::Object::as_msg"], [69, 1, 1, "_CPPv4NK6pcodar6Object10get_centerEv", "pcodar::Object::get_center"], [69, 1, 1, "_CPPv4NK6pcodar6Object10get_pointsEv", "pcodar::Object::get_points"], [69, 1, 1, "_CPPv4NK6pcodar6Object14get_points_ptrEv", "pcodar::Object::get_points_ptr"], [69, 1, 1, "_CPPv4NK6pcodar6Object15get_search_treeEv", "pcodar::Object::get_search_tree"], [69, 1, 1, "_CPPv4N6pcodar6Object18set_classificationERKNSt6stringE", "pcodar::Object::set_classification"], [69, 2, 1, "_CPPv4N6pcodar6Object18set_classificationERKNSt6stringE", "pcodar::Object::set_classification::classification"], [69, 1, 1, "_CPPv4N6pcodar6Object6set_idE4uint", "pcodar::Object::set_id"], [69, 2, 1, "_CPPv4N6pcodar6Object6set_idE4uint", "pcodar::Object::set_id::id"], [69, 1, 1, "_CPPv4N6pcodar6Object13update_pointsERK15point_cloud_ptrRK9KdTreePtr", "pcodar::Object::update_points"], [69, 2, 1, "_CPPv4N6pcodar6Object13update_pointsERK15point_cloud_ptrRK9KdTreePtr", "pcodar::Object::update_points::pc"], [69, 2, 1, "_CPPv4N6pcodar6Object13update_pointsERK15point_cloud_ptrRK9KdTreePtr", "pcodar::Object::update_points::search_tree"], [69, 0, 1, "_CPPv4N6pcodar14ObjectDetectorE", "pcodar::ObjectDetector"], [69, 1, 1, "_CPPv4N6pcodar14ObjectDetector12get_clustersE21point_cloud_const_ptr", "pcodar::ObjectDetector::get_clusters"], [69, 2, 1, "_CPPv4N6pcodar14ObjectDetector12get_clustersE21point_cloud_const_ptr", "pcodar::ObjectDetector::get_clusters::pc"], [69, 1, 1, "_CPPv4N6pcodar14ObjectDetector13update_configERK6Config", "pcodar::ObjectDetector::update_config"], [69, 2, 1, "_CPPv4N6pcodar14ObjectDetector13update_configERK6Config", "pcodar::ObjectDetector::update_config::config"], [69, 0, 1, "_CPPv4N6pcodar9ObjectMapE", "pcodar::ObjectMap"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap13DatabaseQueryERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "pcodar::ObjectMap::DatabaseQuery"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap13DatabaseQueryERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "pcodar::ObjectMap::DatabaseQuery::req"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap13DatabaseQueryERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "pcodar::ObjectMap::DatabaseQuery::res"], [69, 4, 1, "_CPPv4N6pcodar9ObjectMap8IteratorE", "pcodar::ObjectMap::Iterator"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap9ObjectMapEv", "pcodar::ObjectMap::ObjectMap"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap10add_objectERK15point_cloud_ptrRK9KdTreePtr", "pcodar::ObjectMap::add_object"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap10add_objectERK15point_cloud_ptrRK9KdTreePtr", "pcodar::ObjectMap::add_object::pc"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap10add_objectERK15point_cloud_ptrRK9KdTreePtr", "pcodar::ObjectMap::add_object::search_tree"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap12erase_objectERK8Iterator", "pcodar::ObjectMap::erase_object"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap12erase_objectERK8Iterator", "pcodar::ObjectMap::erase_object::it"], [69, 5, 1, "_CPPv4N6pcodar9ObjectMap11highest_id_E", "pcodar::ObjectMap::highest_id_"], [69, 5, 1, "_CPPv4N6pcodar9ObjectMap13just_removed_E", "pcodar::ObjectMap::just_removed_"], [69, 5, 1, "_CPPv4N6pcodar9ObjectMap8objects_E", "pcodar::ObjectMap::objects_"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap6to_msgEv", "pcodar::ObjectMap::to_msg"], [69, 0, 1, "_CPPv4N6pcodar12OgridManagerE", "pcodar::OgridManager"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager12OgridManagerEv", "pcodar::OgridManager::OgridManager"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager13draw_boundaryEv", "pcodar::OgridManager::draw_boundary"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager10initializeERN3ros10NodeHandleE", "pcodar::OgridManager::initialize"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager10initializeERN3ros10NodeHandleE", "pcodar::OgridManager::initialize::nh"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager10set_boundsE15point_cloud_ptr", "pcodar::OgridManager::set_bounds"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager10set_boundsE15point_cloud_ptr", "pcodar::OgridManager::set_bounds::pc"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager13update_configERK6Config", "pcodar::OgridManager::update_config"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager13update_configERK6Config", "pcodar::OgridManager::update_config::config"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager12update_ogridERK9ObjectMap", "pcodar::OgridManager::update_ogrid"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager12update_ogridERK9ObjectMap", "pcodar::OgridManager::update_ogrid::objects"], [69, 0, 1, "_CPPv4N6pcodar21PersistentCloudFilterE", "pcodar::PersistentCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar21PersistentCloudFilter21PersistentCloudFilterEv", "pcodar::PersistentCloudFilter::PersistentCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar21PersistentCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::PersistentCloudFilter::filter"], [69, 2, 1, "_CPPv4N6pcodar21PersistentCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::PersistentCloudFilter::filter::in"], [69, 2, 1, "_CPPv4N6pcodar21PersistentCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::PersistentCloudFilter::filter::pc"], [69, 1, 1, "_CPPv4N6pcodar21PersistentCloudFilter13update_configERK6Config", "pcodar::PersistentCloudFilter::update_config"], [69, 2, 1, "_CPPv4N6pcodar21PersistentCloudFilter13update_configERK6Config", "pcodar::PersistentCloudFilter::update_config::config"], [69, 0, 1, "_CPPv4N6pcodar24PointCloudCircularBufferE", "pcodar::PointCloudCircularBuffer"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer24PointCloudCircularBufferEv", "pcodar::PointCloudCircularBuffer::PointCloudCircularBuffer"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer15add_point_cloudERK15point_cloud_ptr", "pcodar::PointCloudCircularBuffer::add_point_cloud"], [69, 2, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer15add_point_cloudERK15point_cloud_ptr", "pcodar::PointCloudCircularBuffer::add_point_cloud::pc"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer5clearEv", "pcodar::PointCloudCircularBuffer::clear"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer15get_point_cloudEv", "pcodar::PointCloudCircularBuffer::get_point_cloud"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer13update_configERK6Config", "pcodar::PointCloudCircularBuffer::update_config"], [69, 2, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer13update_configERK6Config", "pcodar::PointCloudCircularBuffer::update_config::config"], [69, 4, 1, "_CPPv4N6pcodar9cluster_tE", "pcodar::cluster_t"], [69, 4, 1, "_CPPv4N6pcodar10clusters_tE", "pcodar::clusters_t"], [69, 4, 1, "_CPPv4N6pcodar11point_cloudE", "pcodar::point_cloud"], [69, 4, 1, "_CPPv4N6pcodar21point_cloud_const_ptrE", "pcodar::point_cloud_const_ptr"], [69, 4, 1, "_CPPv4N6pcodar15point_cloud_ptrE", "pcodar::point_cloud_ptr"], [69, 4, 1, "_CPPv4N6pcodar7point_tE", "pcodar::point_t"], [111, 1, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::a"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::b"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::c"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::d"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::pt"], [50, 0, 1, "_CPPv4N10ros_alarms16AlarmBroadcasterE", "ros_alarms::AlarmBroadcaster"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster16AlarmBroadcasterERN3ros10NodeHandleEP10AlarmProxy", "ros_alarms::AlarmBroadcaster::AlarmBroadcaster"], [50, 2, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster16AlarmBroadcasterERN3ros10NodeHandleEP10AlarmProxy", "ros_alarms::AlarmBroadcaster::AlarmBroadcaster::alarm"], [50, 2, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster16AlarmBroadcasterERN3ros10NodeHandleEP10AlarmProxy", "ros_alarms::AlarmBroadcaster::AlarmBroadcaster::nh"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster5clearEv", "ros_alarms::AlarmBroadcaster::clear"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster8getAlarmEv", "ros_alarms::AlarmBroadcaster::getAlarm"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster7publishEv", "ros_alarms::AlarmBroadcaster::publish"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster5raiseEv", "ros_alarms::AlarmBroadcaster::raise"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster14updateSeverityEi", "ros_alarms::AlarmBroadcaster::updateSeverity"], [50, 2, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster14updateSeverityEi", "ros_alarms::AlarmBroadcaster::updateSeverity::sev"], [50, 0, 1, "_CPPv4I0EN10ros_alarms13AlarmListenerE", "ros_alarms::AlarmListener"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener13AlarmListenerERN3ros10NodeHandleENSt6stringE", "ros_alarms::AlarmListener::AlarmListener"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener13AlarmListenerERN3ros10NodeHandleENSt6stringE", "ros_alarms::AlarmListener::AlarmListener::alarm_name"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener13AlarmListenerERN3ros10NodeHandleENSt6stringE", "ros_alarms::AlarmListener::AlarmListener::nh"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener5addCbE10callable_t", "ros_alarms::AlarmListener::addCb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener5addCbE10callable_t", "ros_alarms::AlarmListener::addCb::cb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addClearCbE10callable_t", "ros_alarms::AlarmListener::addClearCb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addClearCbE10callable_t", "ros_alarms::AlarmListener::addClearCb::cb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_t", "ros_alarms::AlarmListener::addRaiseCb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_ti", "ros_alarms::AlarmListener::addRaiseCb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_t", "ros_alarms::AlarmListener::addRaiseCb::cb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_ti", "ros_alarms::AlarmListener::addRaiseCb::cb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb::cb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_ti", "ros_alarms::AlarmListener::addRaiseCb::severity"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb::severity_hi"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb::severity_lo"], [50, 3, 1, "_CPPv4I0EN10ros_alarms13AlarmListenerE", "ros_alarms::AlarmListener::callable_t"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener14clearCallbacksEv", "ros_alarms::AlarmListener::clearCallbacks"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener8getAlarmEv", "ros_alarms::AlarmListener::getAlarm"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener14getCachedAlarmEv", "ros_alarms::AlarmListener::getCachedAlarm"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener17getLastUpdateTimeEv", "ros_alarms::AlarmListener::getLastUpdateTime"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener17getNumConnectionsEv", "ros_alarms::AlarmListener::getNumConnections"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener18getTimeSinceUpdateEv", "ros_alarms::AlarmListener::getTimeSinceUpdate"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener9isClearedEv", "ros_alarms::AlarmListener::isCleared"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener8isRaisedEv", "ros_alarms::AlarmListener::isRaised"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener2okEv", "ros_alarms::AlarmListener::ok"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener12queryClearedEv", "ros_alarms::AlarmListener::queryCleared"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener11queryRaisedEv", "ros_alarms::AlarmListener::queryRaised"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener5startEv", "ros_alarms::AlarmListener::start"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener4stopEv", "ros_alarms::AlarmListener::stop"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener17waitForConnectionEN3ros8DurationE", "ros_alarms::AlarmListener::waitForConnection"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener17waitForConnectionEN3ros8DurationE", "ros_alarms::AlarmListener::waitForConnection::timeout"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener13waitForUpdateEN3ros8DurationE", "ros_alarms::AlarmListener::waitForUpdate"], [50, 2, 1, "_CPPv4NK10ros_alarms13AlarmListener13waitForUpdateEN3ros8DurationE", "ros_alarms::AlarmListener::waitForUpdate::timeout"], [50, 0, 1, "_CPPv4N10ros_alarms10AlarmProxyE", "ros_alarms::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyEN15ros_alarms_msgs5AlarmE", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyEv", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::alarm_name"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::alarm_name"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::json_parameters"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::json_parameters"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyEN15ros_alarms_msgs5AlarmE", "ros_alarms::AlarmProxy::AlarmProxy::msg"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::node_name"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::problem_description"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::problem_description"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::raised"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::raised"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::severity"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::severity"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy10alarm_nameE", "ros_alarms::AlarmProxy::alarm_name"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy6as_msgEv", "ros_alarms::AlarmProxy::as_msg"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy15json_parametersE", "ros_alarms::AlarmProxy::json_parameters"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy9node_nameE", "ros_alarms::AlarmProxy::node_name"], [50, 1, 1, "_CPPv4NK10ros_alarms10AlarmProxyeqERK10AlarmProxy", "ros_alarms::AlarmProxy::operator=="], [50, 2, 1, "_CPPv4NK10ros_alarms10AlarmProxyeqERK10AlarmProxy", "ros_alarms::AlarmProxy::operator==::other"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy19problem_descriptionE", "ros_alarms::AlarmProxy::problem_description"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy6raisedE", "ros_alarms::AlarmProxy::raised"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy8severityE", "ros_alarms::AlarmProxy::severity"], [50, 1, 1, "_CPPv4NK10ros_alarms10AlarmProxy3strEb", "ros_alarms::AlarmProxy::str"], [50, 2, 1, "_CPPv4NK10ros_alarms10AlarmProxy3strEb", "ros_alarms::AlarmProxy::str::full"], [50, 0, 1, "_CPPv4I0EN10ros_alarms10ListenerCbE", "ros_alarms::ListenerCb"], [50, 6, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenarioE", "ros_alarms::ListenerCb::CallScenario"], [50, 7, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenario6alwaysE", "ros_alarms::ListenerCb::CallScenario::always"], [50, 7, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenario5clearE", "ros_alarms::ListenerCb::CallScenario::clear"], [50, 7, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenario5raiseE", "ros_alarms::ListenerCb::CallScenario::raise"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb13call_scenarioE", "ros_alarms::ListenerCb::call_scenario"], [50, 3, 1, "_CPPv4I0EN10ros_alarms10ListenerCbE", "ros_alarms::ListenerCb::callable_t"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb7cb_funcE", "ros_alarms::ListenerCb::cb_func"], [50, 1, 1, "_CPPv4N10ros_alarms10ListenerCbclEN15ros_alarms_msgs5AlarmE", "ros_alarms::ListenerCb::operator()"], [50, 2, 1, "_CPPv4N10ros_alarms10ListenerCbclEN15ros_alarms_msgs5AlarmE", "ros_alarms::ListenerCb::operator()::msg"], [50, 1, 1, "_CPPv4N10ros_alarms10ListenerCb14severity_checkEi", "ros_alarms::ListenerCb::severity_check"], [50, 2, 1, "_CPPv4N10ros_alarms10ListenerCb14severity_checkEi", "ros_alarms::ListenerCb::severity_check::severity"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb11severity_hiE", "ros_alarms::ListenerCb::severity_hi"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb11severity_loE", "ros_alarms::ListenerCb::severity_lo"], [111, 4, 1, "_CPPv4N3sub13ColorHandlerTE", "sub::ColorHandlerT"], [111, 4, 1, "_CPPv4N3sub12PointCloudNTE", "sub::PointCloudNT"], [111, 4, 1, "_CPPv4N3sub11PointCloudTE", "sub::PointCloudT"], [111, 4, 1, "_CPPv4N3sub7PointNTE", "sub::PointNT"], [111, 4, 1, "_CPPv4N3sub9PointXYZTE", "sub::PointXYZT"], [111, 0, 1, "_CPPv4N3sub14RvizVisualizerE", "sub::RvizVisualizer"], [111, 1, 1, "_CPPv4N3sub14RvizVisualizer14RvizVisualizerENSt6stringE", "sub::RvizVisualizer::RvizVisualizer"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer14RvizVisualizerENSt6stringE", "sub::RvizVisualizer::RvizVisualizer::rviz_topic"], [111, 5, 1, "_CPPv4N3sub14RvizVisualizer2nhE", "sub::RvizVisualizer::nh"], [111, 5, 1, "_CPPv4N3sub14RvizVisualizer8rviz_pubE", "sub::RvizVisualizer::rviz_pub"], [111, 1, 1, "_CPPv4N3sub14RvizVisualizer14visualize_buoyERN13geometry_msgs4PoseERNSt6stringE", "sub::RvizVisualizer::visualize_buoy"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer14visualize_buoyERN13geometry_msgs4PoseERNSt6stringE", "sub::RvizVisualizer::visualize_buoy::frame_id"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer14visualize_buoyERN13geometry_msgs4PoseERNSt6stringE", "sub::RvizVisualizer::visualize_buoy::pose"], [111, 1, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::corners3d"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::frame_id"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::orientation"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::pose"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::targets"], [111, 1, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray"], [111, 3, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::PointT"], [111, 2, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::cloud"], [111, 2, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::direction_pre"], [111, 2, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::line_pt"], [111, 1, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP"], [111, 3, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::PointT"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::cloud"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::direction_pre"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::distance_to_ray"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::line_pt"], [111, 1, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray"], [111, 3, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::PointT"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::cloud"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::direction"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::distance"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::line_pt"], [111, 1, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals"], [111, 3, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::PointT"], [111, 2, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::normal_radius"], [111, 2, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::output_cloud"], [111, 1, 1, "_CPPv4I0EN3sub14point_to_eigenEN5Eigen8Vector3fERK6PointT", "sub::point_to_eigen"], [111, 3, 1, "_CPPv4I0EN3sub14point_to_eigenEN5Eigen8Vector3fERK6PointT", "sub::point_to_eigen::PointT"], [111, 2, 1, "_CPPv4I0EN3sub14point_to_eigenEN5Eigen8Vector3fERK6PointT", "sub::point_to_eigen::pcl_point"], [111, 1, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud"], [111, 3, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::PointT"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::camera_model"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::cloud"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::distance"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::image_point"], [111, 1, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index"], [111, 3, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::PointT"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::camera_model"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::cloud"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::distance"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::image_point"], [111, 1, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box"], [111, 3, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::PointT"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::center"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::edge_length"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::output_cloud"], [111, 1, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing"], [111, 3, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::PointT"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::clusters"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::colored_cloud"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::indices"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::target_cloud"], [111, 1, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter"], [111, 3, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::PointT"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::mean_k"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::output_cloud"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::std_dev_mul_thresh"], [111, 1, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter"], [111, 3, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::PointT"], [111, 2, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::leaf_size"], [111, 2, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::output_cloud"], [54, 11, 0, "-", "axros"], [64, 11, 0, "-", "mil_missions_core"], [71, 11, 0, "-", "mil_poi"], [57, 11, 0, "-", "mil_usb_to_can"], [50, 11, 0, "-", "ros_alarms"]], "actionlib_msgs.msg": [[63, 8, 1, "", "GoalStatus"]], "actionlib_msgs.msg.GoalStatus": [[63, 9, 1, "", "ACTIVE"], [63, 9, 1, "", "PENDING"], [63, 9, 1, "", "PREEMPTED"], [63, 9, 1, "", "SUCCEEDED"]], "alarm_handlers": [[50, 8, 1, "", "BusVoltage"], [50, 8, 1, "", "HeightOverBottom"], [50, 8, 1, "", "HwKill"], [50, 8, 1, "", "Kill"], [50, 8, 1, "", "NetworkLoss"], [50, 8, 1, "", "OdomKill"], [50, 8, 1, "", "ThrusterOut"]], "alarm_handlers.BusVoltage": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "raised"]], "alarm_handlers.HeightOverBottom": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "raised"]], "alarm_handlers.HwKill": [[50, 9, 1, "", "alarm_name"]], "alarm_handlers.Kill": [[50, 9, 1, "", "HARDWARE_KILL_GRACE_PERIOD_SECONDS"], [50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "bagger_dump"], [50, 10, 1, "", "cleared"], [50, 9, 1, "", "condition"], [50, 10, 1, "", "raised"], [50, 10, 1, "", "set_mobo_kill"]], "alarm_handlers.NetworkLoss": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 9, 1, "", "hm"], [50, 10, 1, "", "raised"]], "alarm_handlers.OdomKill": [[50, 9, 1, "", "GRACE_PERIOD"], [50, 9, 1, "", "LAUNCH_TIME"], [50, 9, 1, "", "MAX_JUMP"], [50, 9, 1, "", "TIMEOUT"], [50, 9, 1, "", "ab"], [50, 10, 1, "", "check"], [50, 10, 1, "", "check_continuity"], [50, 10, 1, "", "clear_kill"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "need_kill"], [50, 10, 1, "", "raised"]], "alarm_handlers.ThrusterOut": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "raised"], [50, 10, 1, "", "update_layout"]], "axros": [[51, 8, 1, "", "ActionClient"], [51, 8, 1, "", "AlreadySetup"], [51, 8, 1, "", "AsyncServerProxy"], [51, 8, 1, "", "AxrosException"], [51, 8, 1, "", "Goal"], [51, 8, 1, "", "GoalManager"], [51, 8, 1, "", "NodeHandle"], [51, 8, 1, "", "NotSetup"], [51, 8, 1, "", "Publisher"], [51, 8, 1, "", "ROSMasterError"], [51, 8, 1, "", "ROSMasterFailure"], [51, 8, 1, "", "ROSMasterProxy"], [51, 8, 1, "", "Service"], [51, 8, 1, "", "ServiceClient"], [51, 8, 1, "", "ServiceError"], [51, 8, 1, "", "SimpleActionServer"], [51, 8, 1, "", "Subscriber"], [51, 8, 1, "", "TooPastError"], [51, 8, 1, "", "Transform"], [51, 8, 1, "", "TransformBroadcaster"], [51, 8, 1, "", "TransformListener"], [51, 8, 1, "", "XMLRPCException"], [51, 9, 1, "", "XMLRPCLegalType"], [51, 12, 1, "", "wall_sleep"], [51, 12, 1, "", "wrap_time_notice"], [51, 12, 1, "", "wrap_timeout"]], "axros.ActionClient": [[51, 10, 1, "", "cancel_all_goals"], [51, 10, 1, "", "cancel_goals_at_and_before_time"], [51, 10, 1, "", "send_goal"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"], [51, 10, 1, "", "wait_for_server"]], "axros.AsyncServerProxy": [[51, 9, 1, "", "session"], [51, 9, 1, "", "transport"], [51, 9, 1, "", "uri"]], "axros.AxrosException": [[51, 9, 1, "", "node_handle"]], "axros.Goal": [[51, 10, 1, "", "status_msg"]], "axros.GoalManager": [[51, 10, 1, "", "cancel"], [51, 10, 1, "", "forget"], [51, 10, 1, "", "get_feedback"], [51, 10, 1, "", "get_result"]], "axros.NodeHandle": [[51, 10, 1, "", "advertise"], [51, 10, 1, "", "advertise_service"], [51, 10, 1, "", "delete_param"], [51, 10, 1, "", "from_argv"], [51, 10, 1, "", "from_argv_with_remaining"], [51, 10, 1, "", "get_name"], [51, 10, 1, "", "get_param"], [51, 10, 1, "", "get_param_names"], [51, 10, 1, "", "get_service_client"], [51, 10, 1, "", "get_time"], [51, 10, 1, "", "has_param"], [51, 10, 1, "", "is_running"], [51, 10, 1, "", "is_shutdown"], [51, 9, 1, "", "master_proxy"], [51, 9, 1, "", "master_uri"], [51, 10, 1, "", "resolve_name"], [51, 10, 1, "", "resolve_name_without_remapping"], [51, 10, 1, "", "search_param"], [51, 10, 1, "", "set_param"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"], [51, 9, 1, "", "shutdown_callbacks"], [51, 10, 1, "", "sleep"], [51, 10, 1, "", "sleep_until"], [51, 10, 1, "", "subscribe"], [51, 9, 1, "", "tcpros_handlers"], [51, 9, 1, "", "xmlrpc_handlers"], [51, 9, 1, "", "xmlrpc_server_uri"]], "axros.Publisher": [[51, 10, 1, "", "get_connections"], [51, 10, 1, "", "is_running"], [51, 9, 1, "", "message_type"], [51, 10, 1, "", "publish"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"]], "axros.ROSMasterError": [[51, 9, 1, "", "ros_message"]], "axros.ROSMasterFailure": [[51, 9, 1, "", "ros_message"]], "axros.Service": [[51, 10, 1, "", "is_running"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"]], "axros.ServiceClient": [[51, 10, 1, "", "wait_for_service"]], "axros.SimpleActionServer": [[51, 10, 1, "", "is_active"], [51, 10, 1, "", "is_cancel_requested"], [51, 10, 1, "", "is_new_goal_available"], [51, 10, 1, "", "is_preempt_requested"], [51, 10, 1, "", "is_running"], [51, 10, 1, "", "publish_feedback"], [51, 10, 1, "", "set_aborted"], [51, 10, 1, "", "set_preempted"], [51, 10, 1, "", "set_succeeded"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"], [51, 10, 1, "", "start"], [51, 10, 1, "", "stop"]], "axros.Subscriber": [[51, 10, 1, "", "get_connections"], [51, 10, 1, "", "get_last_message"], [51, 10, 1, "", "get_last_message_time"], [51, 10, 1, "", "get_next_message"], [51, 10, 1, "", "is_running"], [51, 10, 1, "", "recently_read"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"]], "axros.Transform": [[51, 10, 1, "", "from_Pose_message"], [51, 10, 1, "", "from_Transform_message"], [51, 10, 1, "", "identity"], [51, 10, 1, "", "inverse"]], "axros.TransformBroadcaster": [[51, 10, 1, "", "send_transform"]], "axros.TransformListener": [[51, 10, 1, "", "shutdown"]], "axros.XMLRPCException": [[51, 9, 1, "", "exception"], [51, 9, 1, "", "request_body"]], "geometry_msgs.msg": [[63, 8, 1, "", "Accel"], [63, 8, 1, "", "Point"], [63, 8, 1, "", "PointStamped"], [63, 8, 1, "", "Polygon"], [63, 8, 1, "", "Pose"], [63, 8, 1, "", "Pose2D"], [63, 8, 1, "", "PoseWithCovariance"], [63, 8, 1, "", "Quaternion"], [63, 8, 1, "", "Transform"], [63, 8, 1, "", "TransformStamped"], [63, 8, 1, "", "Twist"], [63, 8, 1, "", "TwistWithCovariance"], [63, 8, 1, "", "Vector3"], [63, 8, 1, "", "Wrench"], [63, 8, 1, "", "WrenchStamped"]], "geometry_msgs.msg.Accel": [[63, 9, 1, "", "angular"], [63, 9, 1, "", "linear"]], "geometry_msgs.msg.Point": [[63, 9, 1, "", "x"], [63, 9, 1, "", "y"], [63, 9, 1, "", "z"]], "geometry_msgs.msg.PointStamped": [[63, 9, 1, "", "header"], [63, 9, 1, "", "point"]], "geometry_msgs.msg.Polygon": [[63, 9, 1, "", "points"]], "geometry_msgs.msg.Pose": [[63, 9, 1, "", "orientation"], [63, 9, 1, "", "position"]], "geometry_msgs.msg.Pose2D": [[63, 9, 1, "", "theta"], [63, 9, 1, "", "x"], [63, 9, 1, "", "y"]], "geometry_msgs.msg.PoseWithCovariance": [[63, 9, 1, "", "covariance"], [63, 9, 1, "", "pose"]], "geometry_msgs.msg.Quaternion": [[63, 9, 1, "", "w"], [63, 9, 1, "", "x"], [63, 9, 1, "", "y"], [63, 9, 1, "", "z"]], "geometry_msgs.msg.Transform": [[63, 9, 1, "", "rotation"], [63, 9, 1, "", "translation"]], "geometry_msgs.msg.TransformStamped": [[63, 9, 1, "", "child_frame_id"], [63, 9, 1, "", "header"], [63, 9, 1, "", "transform"]], "geometry_msgs.msg.Twist": [[63, 9, 1, "", "angular"], [63, 9, 1, "", "linear"]], "geometry_msgs.msg.TwistWithCovariance": [[63, 9, 1, "", "covariance"], [63, 9, 1, "", "twist"]], "geometry_msgs.msg.Vector3": [[63, 9, 1, "", "x"], [63, 9, 1, "", "y"], [63, 9, 1, "", "z"]], "geometry_msgs.msg.Wrench": [[63, 9, 1, "", "force"], [63, 9, 1, "", "torque"]], "geometry_msgs.msg.WrenchStamped": [[63, 9, 1, "", "header"], [63, 9, 1, "", "wrench"]], "lqrrt": [[68, 8, 1, "", "Constraints"], [68, 8, 1, "", "Planner"], [68, 8, 1, "", "Tree"]], "lqrrt.Constraints": [[68, 10, 1, "", "set_buffers"], [68, 10, 1, "", "set_feasibility_function"]], "lqrrt.Planner": [[68, 10, 1, "", "kill_update"], [68, 10, 1, "", "set_goal"], [68, 10, 1, "", "set_resolution"], [68, 10, 1, "", "set_runtime"], [68, 10, 1, "", "set_system"], [68, 10, 1, "", "unkill"], [68, 10, 1, "", "update_plan"], [68, 10, 1, "", "visualize"]], "lqrrt.Tree": [[68, 10, 1, "", "add_node"], [68, 10, 1, "", "climb"], [68, 10, 1, "", "trajectory"], [68, 10, 1, "", "visualize"]], "mil_missions_core": [[64, 8, 1, "", "BaseMission"], [64, 12, 1, "", "MakeChainWithTimeout"], [64, 12, 1, "", "MakeWait"], [64, 8, 1, "", "MissionClient"], [64, 8, 1, "", "MissionException"], [64, 8, 1, "", "ParametersException"], [64, 8, 1, "", "SubmissionException"], [64, 8, 1, "", "TimeoutException"]], "mil_missions_core.BaseMission": [[64, 10, 1, "", "decode_parameters"], [64, 10, 1, "", "get_mission"], [64, 10, 1, "", "has_mission"], [64, 10, 1, "", "name"], [64, 10, 1, "", "run"], [64, 10, 1, "", "run_submission"], [64, 10, 1, "", "send_feedback"], [64, 10, 1, "", "send_feedback_child"], [64, 10, 1, "", "setup"], [64, 10, 1, "", "setup_base"], [64, 10, 1, "", "shutdown"], [64, 10, 1, "", "shutdown_base"]], "mil_missions_core.MissionClient": [[64, 10, 1, "", "available_missions"], [64, 10, 1, "", "cancel_mission"], [64, 10, 1, "", "run_mission"]], "mil_missions_core.MissionException": [[64, 9, 1, "", "message"], [64, 9, 1, "", "parameters"]], "mil_missions_core.ParametersException": [[64, 9, 1, "", "msg"]], "mil_missions_core.SubmissionException": [[64, 9, 1, "", "exception"], [64, 9, 1, "", "mission"]], "mil_missions_core.TimeoutException": [[64, 9, 1, "", "timeout"]], "mil_msgs.msg": [[63, 8, 1, "", "ObjectInImage"], [63, 8, 1, "", "Point2D"], [63, 8, 1, "", "PoseTwist"]], "mil_msgs.msg.ObjectInImage": [[63, 9, 1, "", "attributes"], [63, 9, 1, "", "confidence"], [63, 9, 1, "", "name"], [63, 9, 1, "", "points"]], "mil_msgs.msg.Point2D": [[63, 9, 1, "", "x"], [63, 9, 1, "", "y"]], "mil_msgs.msg.PoseTwist": [[63, 9, 1, "", "acceleration"], [63, 9, 1, "", "pose"], [63, 9, 1, "", "twist"]], "mil_passive_sonar": [[67, 8, 1, "", "TxHydrophonesClient"]], "mil_passive_sonar.TxHydrophonesClient": [[67, 9, 1, "", "dir_callback"], [67, 10, 1, "", "disable"], [67, 10, 1, "", "enable"], [67, 10, 1, "", "get_direction"], [67, 10, 1, "", "get_last_position"], [67, 10, 1, "", "get_position"], [67, 10, 1, "", "heading_cb"], [67, 10, 1, "", "reset"], [67, 10, 1, "", "set_callback"]], "mil_passive_sonar.algorithms": [[67, 12, 1, "", "bandpass"], [67, 12, 1, "", "bin_to_freq"], [67, 12, 1, "", "calculate_error"], [67, 12, 1, "", "compute_deltas"], [67, 12, 1, "", "compute_freq"], [67, 12, 1, "", "compute_pos_4hyd"], [67, 12, 1, "", "find_minimum"], [67, 12, 1, "", "freq_to_bin"], [67, 12, 1, "", "make_template"], [67, 12, 1, "", "match_template"], [67, 12, 1, "", "normalize"], [67, 12, 1, "", "preprocess"], [67, 12, 1, "", "run"], [67, 12, 1, "", "zero_mean"]], "mil_passive_sonar.msg": [[63, 8, 1, "", "HydrophoneSamples"], [63, 8, 1, "", "HydrophoneSamplesStamped"], [63, 8, 1, "", "Ping"], [63, 8, 1, "", "ProcessedPing"], [63, 8, 1, "", "Triggered"]], "mil_passive_sonar.msg.HydrophoneSamples": [[63, 9, 1, "", "channels"], [63, 9, 1, "", "data"], [63, 9, 1, "", "sample_rate"], [63, 9, 1, "", "samples"]], "mil_passive_sonar.msg.HydrophoneSamplesStamped": [[63, 9, 1, "", "header"], [63, 9, 1, "", "hydrophone_samples"]], "mil_passive_sonar.msg.Ping": [[63, 9, 1, "", "channels"], [63, 9, 1, "", "data"], [63, 9, 1, "", "header"], [63, 9, 1, "", "sample_rate"], [63, 9, 1, "", "samples"]], "mil_passive_sonar.msg.ProcessedPing": [[63, 9, 1, "", "amplitude"], [63, 9, 1, "", "freq"], [63, 9, 1, "", "header"], [63, 9, 1, "", "position"], [63, 9, 1, "", "valid"]], "mil_passive_sonar.msg.Triggered": [[63, 9, 1, "", "header"], [63, 9, 1, "", "hydrophone_samples"], [63, 9, 1, "", "trigger_time"]], "mil_passive_sonar.scripts.ping_locator": [[67, 8, 1, "", "PingLocator"]], "mil_passive_sonar.scripts.ping_locator.PingLocator": [[67, 10, 1, "", "enable"], [67, 10, 1, "", "ping_cb"]], "mil_passive_sonar.scripts.triggering": [[67, 8, 1, "", "HydrophoneTrigger"]], "mil_passive_sonar.scripts.triggering.HydrophoneTrigger": [[67, 10, 1, "", "enable"], [67, 10, 1, "", "filter_response"], [67, 9, 1, "", "general_lower"], [67, 9, 1, "", "general_upper"], [67, 10, 1, "", "hydrophones_cb"], [67, 9, 1, "", "pub"], [67, 10, 1, "", "reset"], [67, 9, 1, "", "sub"], [67, 9, 1, "", "time"], [67, 9, 1, "", "trigger_debug"], [67, 9, 1, "", "window_time"]], "mil_passive_sonar.streamed_bandpass": [[67, 8, 1, "", "StreamedBandpass"]], "mil_passive_sonar.streamed_bandpass.StreamedBandpass": [[67, 10, 1, "", "convolve"], [67, 9, 1, "", "h"], [67, 10, 1, "", "is_ready_to_make_filter"], [67, 9, 1, "", "lower"], [67, 10, 1, "", "make_filter"], [67, 9, 1, "", "order"], [67, 9, 1, "", "rate"], [67, 9, 1, "", "trans_width"], [67, 9, 1, "", "upper"]], "mil_pneumatic_actuator": [[70, 8, 1, "", "Constants"], [70, 8, 1, "", "PnuematicActuatorDriver"], [70, 8, 1, "", "PnuematicActuatorDriverChecksumError"], [70, 8, 1, "", "PnuematicActuatorDriverError"], [70, 8, 1, "", "PnuematicActuatorDriverResponseError"], [70, 8, 1, "", "PnuematicActuatorTimeoutError"], [70, 8, 1, "", "SimulatedPnuematicActuatorBoard"]], "mil_pneumatic_actuator.Constants": [[70, 9, 1, "", "CHECKSUM_CODE"], [70, 9, 1, "", "CLOSE_REQUEST_BASE"], [70, 9, 1, "", "CLOSE_RESPONSE"], [70, 9, 1, "", "OPEN_REQUEST_BASE"], [70, 9, 1, "", "OPEN_RESPONSE"], [70, 9, 1, "", "PING_REQUEST"], [70, 9, 1, "", "PING_RESPONSE"], [70, 9, 1, "", "READ_REQUEST_BASE"], [70, 10, 1, "", "create_checksum"], [70, 10, 1, "", "deserialize_packet"], [70, 10, 1, "", "serialize_packet"], [70, 10, 1, "", "verify_checksum"]], "mil_pneumatic_actuator.PnuematicActuatorDriver": [[70, 10, 1, "", "close_port"], [70, 10, 1, "", "get_port"], [70, 10, 1, "", "open_port"], [70, 10, 1, "", "ping"], [70, 10, 1, "", "set_port"]], "mil_pneumatic_actuator.SimulatedPnuematicActuatorBoard": [[70, 10, 1, "", "write"]], "mil_poi": [[71, 8, 1, "", "POIServer"], [71, 8, 1, "", "TxPOIClient"]], "mil_poi.POIServer": [[71, 10, 1, "", "add_poi_cb"], [71, 10, 1, "", "delete_poi_cb"], [71, 9, 1, "", "marker_scale"], [71, 10, 1, "", "move_poi_cb"], [71, 10, 1, "", "process_feedback"], [71, 10, 1, "", "transform_position"], [71, 10, 1, "", "update"]], "mil_poi.TxPOIClient": [[71, 10, 1, "", "get"], [71, 10, 1, "", "setup"], [71, 10, 1, "", "shutdown"]], "mil_poi.srv": [[77, 8, 1, "", "AddPOIRequest"], [77, 8, 1, "", "AddPOIResponse"], [77, 8, 1, "", "DeletePOIRequest"], [77, 8, 1, "", "DeletePOIResponse"], [77, 8, 1, "", "MovePOIRequest"], [77, 8, 1, "", "MovePOIResponse"]], "mil_poi.srv.AddPOIRequest": [[77, 9, 1, "", "name"], [77, 9, 1, "", "position"]], "mil_poi.srv.AddPOIResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "mil_poi.srv.DeletePOIRequest": [[77, 9, 1, "", "name"]], "mil_poi.srv.DeletePOIResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "mil_poi.srv.MovePOIRequest": [[77, 9, 1, "", "name"], [77, 9, 1, "", "position"]], "mil_poi.srv.MovePOIResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "mil_ros_tools": [[59, 8, 1, "", "BagCrawler"]], "mil_ros_tools.BagCrawler": [[59, 9, 1, "", "bag"], [59, 9, 1, "", "bag_path"], [59, 10, 1, "", "convert"], [59, 10, 1, "", "crawl"], [59, 13, 1, "", "image_info_topics"], [59, 13, 1, "", "image_topics"]], "mil_ros_tools.vector_to_marker": [[74, 8, 1, "", "VectorToMarker"]], "mil_ros_tools.vector_to_marker.VectorToMarker": [[74, 9, 1, "", "length"], [74, 9, 1, "", "pub"]], "mil_tools": [[58, 8, 1, "", "ArgumentParserException"], [59, 8, 1, "", "CvDebug"], [61, 8, 1, "", "FprintFactory"], [59, 8, 1, "", "Image_Publisher"], [59, 8, 1, "", "Image_Subscriber"], [76, 8, 1, "", "NoopSerial"], [59, 8, 1, "", "Plotter"], [76, 8, 1, "", "SimulatedSerial"], [59, 8, 1, "", "StereoImageSubscriber"], [62, 12, 1, "", "compose_transformation"], [62, 12, 1, "", "deskew"], [61, 12, 1, "", "download"], [61, 12, 1, "", "download_and_unzip"], [74, 12, 1, "", "draw_ray_3d"], [74, 12, 1, "", "draw_sphere"], [62, 12, 1, "", "euler_to_quat"], [61, 12, 1, "", "get_ch"], [76, 12, 1, "", "hexify"], [66, 12, 1, "", "make_header"], [66, 12, 1, "", "make_pose_stamped"], [74, 12, 1, "", "make_ray"], [62, 12, 1, "", "make_rotation"], [66, 12, 1, "", "make_wrench_stamped"], [62, 12, 1, "", "normalize"], [66, 12, 1, "", "numpy_matrix_to_quaternion"], [66, 12, 1, "", "numpy_pair_to_pose"], [66, 12, 1, "", "numpy_quat_pair_to_pose"], [66, 12, 1, "", "numpy_to_colorRGBA"], [66, 12, 1, "", "numpy_to_point"], [66, 12, 1, "", "numpy_to_point2d"], [66, 12, 1, "", "numpy_to_pointcloud2"], [66, 12, 1, "", "numpy_to_points"], [66, 12, 1, "", "numpy_to_polygon"], [66, 12, 1, "", "numpy_to_pose2D"], [66, 12, 1, "", "numpy_to_quaternion"], [66, 12, 1, "", "numpy_to_twist"], [66, 12, 1, "", "numpy_to_vector3"], [66, 12, 1, "", "numpy_to_wrench"], [66, 12, 1, "", "odometry_to_numpy"], [66, 12, 1, "", "pose_to_numpy"], [66, 12, 1, "", "posetwist_to_numpy"], [62, 12, 1, "", "quat_to_rotvec"], [62, 12, 1, "", "rotate_vect_by_quat"], [62, 12, 1, "", "skew_symmetric_cross"], [61, 12, 1, "", "slugify"], [73, 12, 1, "", "thread_lock"], [66, 12, 1, "", "twist_to_numpy"], [73, 12, 1, "", "wait_for_param"], [73, 12, 1, "", "wait_for_service"], [73, 12, 1, "", "wait_for_subscriber"], [66, 12, 1, "", "wrench_to_numpy"]], "mil_tools.ArgumentParserException": [[58, 9, 1, "", "message"]], "mil_tools.CvDebug": [[59, 10, 1, "", "add_image"], [59, 9, 1, "", "height"], [59, 9, 1, "", "hor_num"], [59, 9, 1, "", "max_height"], [59, 9, 1, "", "max_width"], [59, 9, 1, "", "nh"], [59, 9, 1, "", "total"], [59, 9, 1, "", "wait"], [59, 9, 1, "", "width"], [59, 9, 1, "", "win_name"]], "mil_tools.FprintFactory": [[61, 10, 1, "", "fprint"]], "mil_tools.Image_Publisher": [[59, 9, 1, "", "bridge"], [59, 9, 1, "", "encoding"], [59, 9, 1, "", "im_pub"], [59, 10, 1, "", "publish"]], "mil_tools.Image_Subscriber": [[59, 9, 1, "", "bridge"], [59, 9, 1, "", "callback"], [59, 9, 1, "", "camera_info"], [59, 10, 1, "", "convert"], [59, 9, 1, "", "encoding"], [59, 9, 1, "", "im_sub"], [59, 10, 1, "", "info_cb"], [59, 9, 1, "", "info_sub"], [59, 9, 1, "", "last_image_header"], [59, 9, 1, "", "last_image_time"], [59, 10, 1, "", "wait_for_camera_info"], [59, 10, 1, "", "wait_for_camera_model"]], "mil_tools.Plotter": [[59, 10, 1, "", "enable_disable"], [59, 10, 1, "", "is_go"], [59, 9, 1, "", "pub"], [59, 10, 1, "", "publish_plots"], [59, 9, 1, "", "thread"]], "mil_tools.SimulatedSerial": [[76, 9, 1, "", "buffer"], [76, 13, 1, "", "in_waiting"], [76, 10, 1, "", "read"], [76, 10, 1, "", "reset_input_buffer"]], "mil_tools.StereoImageSubscriber": [[59, 9, 1, "", "bridge"], [59, 9, 1, "", "callback"], [59, 9, 1, "", "camera_info_left"], [59, 9, 1, "", "camera_info_right"], [59, 9, 1, "", "encoding"], [59, 9, 1, "", "last_image_left"], [59, 9, 1, "", "last_image_left_time"], [59, 9, 1, "", "last_image_right"], [59, 9, 1, "", "last_image_right_time"], [59, 10, 1, "", "wait_for_camera_info"]], "mil_usb_to_can": [[57, 11, 0, "-", "sub8"], [57, 11, 0, "-", "sub9"]], "mil_usb_to_can.sub8": [[57, 8, 1, "", "ApplicationPacket"], [57, 8, 1, "", "ApplicationPacketWrongIdentifierException"], [57, 8, 1, "", "CANDeviceHandle"], [57, 8, 1, "", "ChecksumException"], [57, 8, 1, "", "CommandPacket"], [57, 8, 1, "", "InvalidEndFlagException"], [57, 8, 1, "", "InvalidFlagException"], [57, 8, 1, "", "InvalidStartFlagException"], [57, 8, 1, "", "Packet"], [57, 8, 1, "", "PayloadTooLargeException"], [57, 8, 1, "", "ReceivePacket"], [57, 8, 1, "", "SimulatedCANDevice"], [57, 8, 1, "", "SimulatedUSBtoCAN"], [57, 8, 1, "", "USB2CANException"], [57, 8, 1, "", "USBtoCANBoard"], [57, 8, 1, "", "USBtoCANDriver"]], "mil_usb_to_can.sub8.ApplicationPacket": [[57, 10, 1, "", "from_bytes"], [57, 9, 1, "", "identifier"], [57, 9, 1, "", "payload"]], "mil_usb_to_can.sub8.ApplicationPacketWrongIdentifierException": [[57, 9, 1, "", "expected"], [57, 9, 1, "", "received"]], "mil_usb_to_can.sub8.CANDeviceHandle": [[57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_usb_to_can.sub8.CommandPacket": [[57, 9, 1, "", "EOF"], [57, 9, 1, "", "SOF"], [57, 10, 1, "", "create_request_packet"], [57, 10, 1, "", "create_send_packet"], [57, 13, 1, "", "data"], [57, 13, 1, "", "filter_id"], [57, 13, 1, "", "is_receive"], [57, 13, 1, "", "length"], [57, 13, 1, "", "length_byte"], [57, 9, 1, "", "payload"]], "mil_usb_to_can.sub8.Packet": [[57, 9, 1, "", "EOF"], [57, 9, 1, "", "SOF"], [57, 10, 1, "", "from_bytes"], [57, 9, 1, "", "payload"], [57, 10, 1, "", "read_packet"]], "mil_usb_to_can.sub8.ReceivePacket": [[57, 9, 1, "", "EOF"], [57, 9, 1, "", "SOF"], [57, 10, 1, "", "create_receive_packet"], [57, 13, 1, "", "data"], [57, 13, 1, "", "device"], [57, 10, 1, "", "from_bytes"], [57, 13, 1, "", "length"], [57, 9, 1, "", "payload"]], "mil_usb_to_can.sub8.SimulatedCANDevice": [[57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_usb_to_can.sub8.SimulatedUSBtoCAN": [[57, 10, 1, "", "send_to_bus"], [57, 10, 1, "", "write"]], "mil_usb_to_can.sub8.USBtoCANBoard": [[57, 9, 1, "", "lock"], [57, 10, 1, "", "read_packet"], [57, 10, 1, "", "send_data"], [57, 9, 1, "", "ser"]], "mil_usb_to_can.sub8.USBtoCANDriver": [[57, 9, 1, "", "board"], [57, 9, 1, "", "handles"], [57, 10, 1, "", "parse_module_dictionary"], [57, 10, 1, "", "process_in_buffer"], [57, 10, 1, "", "read_packet"], [57, 10, 1, "", "send_data"], [57, 9, 1, "", "timer"]], "mil_usb_to_can.sub9": [[57, 8, 1, "", "AckPacket"], [57, 8, 1, "", "CANDeviceHandle"], [57, 8, 1, "", "NackPacket"], [57, 8, 1, "", "Packet"], [57, 8, 1, "", "SimulatedCANDeviceHandle"]], "mil_usb_to_can.sub9.CANDeviceHandle": [[57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_usb_to_can.sub9.Packet": [[57, 10, 1, "", "from_bytes"]], "mil_usb_to_can.sub9.SimulatedCANDeviceHandle": [[57, 9, 1, "", "inbound_packets"], [57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_vision_tools": [[78, 8, 1, "", "ContourClassifier"], [78, 8, 1, "", "ImageMux"], [78, 8, 1, "", "ImageProc"], [78, 8, 1, "", "ImageSet"], [78, 8, 1, "", "ObjectsTracker"], [78, 8, 1, "", "RectFinder"], [78, 8, 1, "", "Threshold"], [78, 8, 1, "", "TrackedObject"], [78, 8, 1, "", "VisionNode"], [78, 12, 1, "", "auto_canny"], [78, 12, 1, "", "contour_centroid"], [78, 12, 1, "", "contour_mask"], [78, 12, 1, "", "create_object_msg"], [78, 12, 1, "", "points_in_image"], [78, 12, 1, "", "putText_ul"], [78, 12, 1, "", "quaternion_from_rvec"], [78, 12, 1, "", "rect_from_roi"], [78, 12, 1, "", "roi_enclosing_points"]], "mil_vision_tools.ContourClassifier": [[78, 13, 1, "", "FEATURES"], [78, 10, 1, "", "class_to_string"], [78, 9, 1, "", "classes"], [78, 10, 1, "", "classify"], [78, 10, 1, "", "classify_features"], [78, 10, 1, "", "extract_labels"], [78, 10, 1, "", "feature_probabilities"], [78, 10, 1, "", "get_features"], [78, 9, 1, "", "image_dir"], [78, 9, 1, "", "labelfile"], [78, 10, 1, "", "main"], [78, 10, 1, "", "probabilities"], [78, 10, 1, "", "read_from_csv"], [78, 10, 1, "", "save_csv"], [78, 10, 1, "", "score"], [78, 10, 1, "", "string_to_class"], [78, 10, 1, "", "train"], [78, 10, 1, "", "train_from_csv"], [78, 9, 1, "", "training_file"]], "mil_vision_tools.ImageMux": [[78, 9, 1, "", "border_color"], [78, 9, 1, "", "border_thickness"], [78, 10, 1, "", "get_image"], [78, 13, 1, "", "image"], [78, 9, 1, "", "keep_ratio"], [78, 9, 1, "", "labels"], [78, 9, 1, "", "pane_size"], [78, 10, 1, "", "set_image"], [78, 9, 1, "", "shape"], [78, 9, 1, "", "size"], [78, 9, 1, "", "text_color"], [78, 9, 1, "", "text_font"], [78, 9, 1, "", "text_scale"], [78, 9, 1, "", "text_thickness"]], "mil_vision_tools.ImageProc": [[78, 9, 1, "", "ALL"], [78, 9, 1, "", "COLOR"], [78, 9, 1, "", "MONO"], [78, 9, 1, "", "RAW"], [78, 9, 1, "", "RECT"], [78, 9, 1, "", "RECT_COLOR"], [78, 9, 1, "", "bridge"], [78, 10, 1, "", "process"]], "mil_vision_tools.ImageSet": [[78, 9, 1, "", "color"], [78, 9, 1, "", "color_encoding"], [78, 9, 1, "", "mono"], [78, 9, 1, "", "raw"], [78, 9, 1, "", "rect"], [78, 9, 1, "", "rect_color"]], "mil_vision_tools.ObjectsTracker": [[78, 10, 1, "", "add_observation"], [78, 10, 1, "", "clear_expired"], [78, 9, 1, "", "expiration_seconds"], [78, 10, 1, "", "get_persistent_objects"], [78, 9, 1, "", "max_distance"], [78, 9, 1, "", "max_id"], [78, 9, 1, "", "objects"]], "mil_vision_tools.RectFinder": [[78, 10, 1, "", "draw_model"], [78, 10, 1, "", "from_polygon"], [78, 10, 1, "", "get_corners"], [78, 10, 1, "", "get_pose_2D"], [78, 10, 1, "", "get_pose_3D"], [78, 9, 1, "", "length"], [78, 9, 1, "", "model_3D"], [78, 10, 1, "", "sort_corners"], [78, 10, 1, "", "to_polygon"], [78, 10, 1, "", "verify_contour"], [78, 9, 1, "", "width"]], "mil_vision_tools.Threshold": [[78, 9, 1, "", "conversion_code"], [78, 10, 1, "", "create_trackbars"], [78, 10, 1, "", "from_dict"], [78, 10, 1, "", "from_param"], [78, 9, 1, "", "high"], [78, 9, 1, "", "in_space"], [78, 9, 1, "", "low"], [78, 9, 1, "", "thresh_space"]], "mil_vision_tools.TrackedObject": [[78, 13, 1, "", "age"], [78, 9, 1, "", "created_at"], [78, 9, 1, "", "features"], [78, 9, 1, "", "id"], [78, 9, 1, "", "observations"], [78, 9, 1, "", "stamp"], [78, 10, 1, "", "update"]], "mil_vision_tools.VisionNode": [[78, 9, 1, "", "camera_model"], [78, 10, 1, "", "find_objects"]], "nav_msgs.msg": [[63, 8, 1, "", "Odometry"]], "nav_msgs.msg.Odometry": [[63, 9, 1, "", "child_frame_id"], [63, 9, 1, "", "header"], [63, 9, 1, "", "pose"], [63, 9, 1, "", "twist"]], "navigator_msgs.msg": [[63, 8, 1, "", "Acceleration"], [63, 8, 1, "", "DockShape"], [63, 8, 1, "", "DockShapes"], [63, 8, 1, "", "Host"], [63, 8, 1, "", "Hosts"], [63, 8, 1, "", "KillStatus"], [63, 8, 1, "", "PerceptionObject"], [63, 8, 1, "", "PerceptionObjectArray"], [63, 8, 1, "", "ScanTheCode"], [49, 8, 1, "", "ShooterDoAction"], [49, 8, 1, "", "ShooterDoActionFeedback"], [49, 8, 1, "", "ShooterDoActionGoal"], [49, 8, 1, "", "ShooterDoActionResult"], [49, 8, 1, "", "ShooterDoFeedback"], [49, 8, 1, "", "ShooterDoGoal"], [49, 8, 1, "", "ShooterDoResult"]], "navigator_msgs.msg.Acceleration": [[63, 9, 1, "", "angular"], [63, 9, 1, "", "linear"]], "navigator_msgs.msg.DockShape": [[63, 9, 1, "", "BLUE"], [63, 9, 1, "", "CIRCLE"], [63, 9, 1, "", "CROSS"], [63, 9, 1, "", "CenterX"], [63, 9, 1, "", "CenterY"], [63, 9, 1, "", "Color"], [63, 9, 1, "", "GREEN"], [63, 9, 1, "", "RED"], [63, 9, 1, "", "Shape"], [63, 9, 1, "", "TRIANGLE"], [63, 9, 1, "", "color_confidence"], [63, 9, 1, "", "header"], [63, 9, 1, "", "points"], [63, 9, 1, "", "shape_confidence"]], "navigator_msgs.msg.DockShapes": [[63, 9, 1, "", "list"]], "navigator_msgs.msg.Host": [[63, 9, 1, "", "hostname"], [63, 9, 1, "", "ip"], [63, 9, 1, "", "status"]], "navigator_msgs.msg.Hosts": [[63, 9, 1, "", "hostnames"], [63, 9, 1, "", "hosts"]], "navigator_msgs.msg.KillStatus": [[63, 9, 1, "", "computer"], [63, 9, 1, "", "overall"], [63, 9, 1, "", "pa"], [63, 9, 1, "", "pf"], [63, 9, 1, "", "remote"], [63, 9, 1, "", "remote_conn"], [63, 9, 1, "", "sa"], [63, 9, 1, "", "sf"]], "navigator_msgs.msg.PerceptionObject": [[63, 9, 1, "", "ACOUSTIC_PINGER"], [63, 9, 1, "", "ALL"], [63, 9, 1, "", "BUOY"], [63, 9, 1, "", "BUOY_FIELD"], [63, 9, 1, "", "CORAL_SURVEY"], [63, 9, 1, "", "DETECT_DELIVER_PLATFORM"], [63, 9, 1, "", "EMPTY_SPACE"], [63, 9, 1, "", "FAKE_IDENTIFY_AND_DOCK"], [63, 9, 1, "", "FAKE_SCAN_THE_CODE"], [63, 9, 1, "", "FAKE_SHOOTER"], [63, 9, 1, "", "FIND_THE_BREAK"], [63, 9, 1, "", "GATE1"], [63, 9, 1, "", "GATE2"], [63, 9, 1, "", "GATE3"], [63, 9, 1, "", "IDENTIFY_AND_DOCK"], [63, 9, 1, "", "SCAN_THE_CODE"], [63, 9, 1, "", "START_GATE_BUOY"], [63, 9, 1, "", "TOTEM"], [63, 9, 1, "", "UNKNOWN"], [63, 9, 1, "", "color"], [63, 9, 1, "", "confidence"], [63, 9, 1, "", "header"], [63, 9, 1, "", "id"], [63, 9, 1, "", "intensity"], [63, 9, 1, "", "name"], [63, 9, 1, "", "normal"], [63, 9, 1, "", "pclInliers"], [63, 9, 1, "", "points"], [63, 9, 1, "", "position"], [63, 9, 1, "", "size"]], "navigator_msgs.msg.PerceptionObjectArray": [[63, 9, 1, "", "objects"]], "navigator_msgs.msg.ScanTheCode": [[63, 9, 1, "", "string_pattern"]], "navigator_msgs.msg.ShooterDoAction": [[49, 9, 1, "", "action_feedback"], [49, 9, 1, "", "action_goal"], [49, 9, 1, "", "action_result"]], "navigator_msgs.msg.ShooterDoActionFeedback": [[49, 9, 1, "", "feedback"], [49, 9, 1, "", "header"], [49, 9, 1, "", "status"]], "navigator_msgs.msg.ShooterDoActionGoal": [[49, 9, 1, "", "goal"], [49, 9, 1, "", "goal_id"], [49, 9, 1, "", "header"]], "navigator_msgs.msg.ShooterDoActionResult": [[49, 9, 1, "", "header"], [49, 9, 1, "", "result"], [49, 9, 1, "", "status"]], "navigator_msgs.msg.ShooterDoFeedback": [[49, 9, 1, "", "time_remaining"]], "navigator_msgs.msg.ShooterDoResult": [[49, 9, 1, "", "ALREADY_LOADAED"], [49, 9, 1, "", "ALREADY_RUNNING"], [49, 9, 1, "", "KILLED"], [49, 9, 1, "", "MANUAL_CONTROL_USED"], [49, 9, 1, "", "NOT_LOADED"], [49, 9, 1, "", "error"], [49, 9, 1, "", "success"]], "navigator_msgs.srv": [[77, 8, 1, "", "AcousticBeaconRequest"], [77, 8, 1, "", "AcousticBeaconResponse"], [77, 8, 1, "", "CameraDBQueryRequest"], [77, 8, 1, "", "CameraDBQueryResponse"], [77, 8, 1, "", "CameraToLidarTransformRequest"], [77, 8, 1, "", "CameraToLidarTransformResponse"], [77, 8, 1, "", "ChooseAnimalRequest"], [77, 8, 1, "", "ChooseAnimalResponse"], [77, 8, 1, "", "ColorRequestRequest"], [77, 8, 1, "", "ColorRequestResponse"], [77, 8, 1, "", "CoordinateConversionRequest"], [77, 8, 1, "", "CoordinateConversionResponse"], [77, 8, 1, "", "FindPingerRequest"], [77, 8, 1, "", "FindPingerResponse"], [77, 8, 1, "", "GetDockBaysRequest"], [77, 8, 1, "", "GetDockBaysResponse"], [77, 8, 1, "", "GetDockShapeRequest"], [77, 8, 1, "", "GetDockShapeResponse"], [77, 8, 1, "", "GetDockShapesRequest"], [77, 8, 1, "", "GetDockShapesResponse"], [77, 8, 1, "", "KeyboardControlRequest"], [77, 8, 1, "", "KeyboardControlResponse"], [46, 8, 1, "", "MessageDetectDockRequest"], [46, 8, 1, "", "MessageDetectDockResponse"], [46, 8, 1, "", "MessageEntranceExitGateRequest"], [46, 8, 1, "", "MessageEntranceExitGateResponse"], [46, 8, 1, "", "MessageFindFlingRequest"], [46, 8, 1, "", "MessageFindFlingResponse"], [46, 8, 1, "", "MessageFollowPathRequest"], [46, 8, 1, "", "MessageFollowPathResponse"], [46, 8, 1, "", "MessageReactReportRequest"], [46, 8, 1, "", "MessageReactReportResponse"], [46, 8, 1, "", "MessageUAVReplenishmentRequest"], [46, 8, 1, "", "MessageUAVReplenishmentResponse"], [46, 8, 1, "", "MessageUAVSearchReportRequest"], [46, 8, 1, "", "MessageUAVSearchReportResponse"], [77, 8, 1, "", "MoveToWaypointRequest"], [77, 8, 1, "", "MoveToWaypointResponse"], [77, 8, 1, "", "ObjectDBQueryRequest"], [77, 8, 1, "", "ObjectDBQueryResponse"], [46, 8, 1, "", "ScanTheCodeMissionRequest"], [46, 8, 1, "", "ScanTheCodeMissionResponse"], [77, 8, 1, "", "SetFrequencyRequest"], [77, 8, 1, "", "SetFrequencyResponse"], [77, 8, 1, "", "SetROIRequest"], [77, 8, 1, "", "SetROIResponse"], [77, 8, 1, "", "ShooterManualRequest"], [77, 8, 1, "", "ShooterManualResponse"], [77, 8, 1, "", "StartGateRequest"], [77, 8, 1, "", "StartGateResponse"], [77, 8, 1, "", "StereoShapeDetectorRequest"], [77, 8, 1, "", "StereoShapeDetectorResponse"], [77, 8, 1, "", "VisionRequestRequest"], [77, 8, 1, "", "VisionRequestResponse"]], "navigator_msgs.srv.AcousticBeaconResponse": [[77, 9, 1, "", "beacon_position"], [77, 9, 1, "", "setValue"]], "navigator_msgs.srv.CameraDBQueryRequest": [[77, 9, 1, "", "id"], [77, 9, 1, "", "name"]], "navigator_msgs.srv.CameraDBQueryResponse": [[77, 9, 1, "", "found"]], "navigator_msgs.srv.CameraToLidarTransformRequest": [[77, 9, 1, "", "header"], [77, 9, 1, "", "point"], [77, 9, 1, "", "tolerance"]], "navigator_msgs.srv.CameraToLidarTransformResponse": [[77, 9, 1, "", "CLOUD_NOT_FOUND"], [77, 9, 1, "", "NO_POINTS"], [77, 9, 1, "", "closest"], [77, 9, 1, "", "distance"], [77, 9, 1, "", "error"], [77, 9, 1, "", "normal"], [77, 9, 1, "", "success"], [77, 9, 1, "", "transformed"]], "navigator_msgs.srv.ChooseAnimalRequest": [[77, 9, 1, "", "circle_direction"], [77, 9, 1, "", "target_animal"]], "navigator_msgs.srv.ChooseAnimalResponse": [[77, 9, 1, "", "movement_complete"]], "navigator_msgs.srv.ColorRequestRequest": [[77, 9, 1, "", "color"]], "navigator_msgs.srv.ColorRequestResponse": [[77, 9, 1, "", "found"], [77, 9, 1, "", "ids"]], "navigator_msgs.srv.CoordinateConversionRequest": [[77, 9, 1, "", "ECEF"], [77, 9, 1, "", "ENU"], [77, 9, 1, "", "LLA"], [77, 9, 1, "", "frame"], [77, 9, 1, "", "points"], [77, 9, 1, "", "to_frame"]], "navigator_msgs.srv.CoordinateConversionResponse": [[77, 9, 1, "", "converted"], [77, 9, 1, "", "message"]], "navigator_msgs.srv.FindPingerResponse": [[77, 9, 1, "", "num_samples"], [77, 9, 1, "", "pinger_position"]], "navigator_msgs.srv.GetDockBaysResponse": [[77, 9, 1, "", "bays"], [77, 9, 1, "", "error"], [77, 9, 1, "", "normal"], [77, 9, 1, "", "success"]], "navigator_msgs.srv.GetDockShapeRequest": [[77, 9, 1, "", "ANY"], [77, 9, 1, "", "BLUE"], [77, 9, 1, "", "CIRCLE"], [77, 9, 1, "", "CROSS"], [77, 9, 1, "", "Color"], [77, 9, 1, "", "GREEN"], [77, 9, 1, "", "RED"], [77, 9, 1, "", "Shape"], [77, 9, 1, "", "TRIANGLE"]], "navigator_msgs.srv.GetDockShapeResponse": [[77, 9, 1, "", "INVALID_REQUEST"], [77, 9, 1, "", "NODE_DISABLED"], [77, 9, 1, "", "SHAPE_NOT_FOUND"], [77, 9, 1, "", "TOO_SMALL_SAMPLE"], [77, 9, 1, "", "error"], [77, 9, 1, "", "found"], [77, 9, 1, "", "symbol"]], "navigator_msgs.srv.GetDockShapesRequest": [[77, 9, 1, "", "ANY"], [77, 9, 1, "", "BLUE"], [77, 9, 1, "", "CIRCLE"], [77, 9, 1, "", "CROSS"], [77, 9, 1, "", "Color"], [77, 9, 1, "", "GREEN"], [77, 9, 1, "", "RED"], [77, 9, 1, "", "Shape"], [77, 9, 1, "", "TRIANGLE"]], "navigator_msgs.srv.GetDockShapesResponse": [[77, 9, 1, "", "INVALID_REQUEST"], [77, 9, 1, "", "NODE_DISABLED"], [77, 9, 1, "", "SHAPE_NOT_FOUND"], [77, 9, 1, "", "TOO_SMALL_SAMPLE"], [77, 9, 1, "", "error"], [77, 9, 1, "", "found"], [77, 9, 1, "", "shapes"]], "navigator_msgs.srv.KeyboardControlRequest": [[77, 9, 1, "", "keycode"], [77, 9, 1, "", "uuid"]], "navigator_msgs.srv.KeyboardControlResponse": [[77, 9, 1, "", "generated_uuid"], [77, 9, 1, "", "is_locked"]], "navigator_msgs.srv.MessageDetectDockRequest": [[46, 9, 1, "", "ams_status"], [46, 9, 1, "", "color"]], "navigator_msgs.srv.MessageDetectDockResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageEntranceExitGateRequest": [[46, 9, 1, "", "entrance_gate"], [46, 9, 1, "", "exit_gate"]], "navigator_msgs.srv.MessageEntranceExitGateResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageFindFlingRequest": [[46, 9, 1, "", "ams_status"], [46, 9, 1, "", "color"]], "navigator_msgs.srv.MessageFindFlingResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageFollowPathRequest": [[46, 9, 1, "", "finished"]], "navigator_msgs.srv.MessageFollowPathResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageReactReportRequest": [[46, 9, 1, "", "animal_array"]], "navigator_msgs.srv.MessageReactReportResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageUAVReplenishmentRequest": [[46, 9, 1, "", "item_status"], [46, 9, 1, "", "uav_status"]], "navigator_msgs.srv.MessageUAVReplenishmentResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageUAVSearchReportRequest": [[46, 9, 1, "", "object1"], [46, 9, 1, "", "object1_e_w"], [46, 9, 1, "", "object1_latitude"], [46, 9, 1, "", "object1_longitude"], [46, 9, 1, "", "object1_n_s"], [46, 9, 1, "", "object2"], [46, 9, 1, "", "object2_e_w"], [46, 9, 1, "", "object2_latitude"], [46, 9, 1, "", "object2_longitude"], [46, 9, 1, "", "object2_n_s"], [46, 9, 1, "", "uav_status"]], "navigator_msgs.srv.MessageUAVSearchReportResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MoveToWaypointRequest": [[77, 9, 1, "", "target_p"]], "navigator_msgs.srv.MoveToWaypointResponse": [[77, 9, 1, "", "success"]], "navigator_msgs.srv.ObjectDBQueryRequest": [[77, 9, 1, "", "cmd"], [77, 9, 1, "", "name"]], "navigator_msgs.srv.ObjectDBQueryResponse": [[77, 9, 1, "", "found"], [77, 9, 1, "", "objects"]], "navigator_msgs.srv.ScanTheCodeMissionRequest": [[46, 9, 1, "", "object"]], "navigator_msgs.srv.ScanTheCodeMissionResponse": [[46, 9, 1, "", "colors"], [46, 9, 1, "", "found"], [46, 9, 1, "", "observing"]], "navigator_msgs.srv.SetFrequencyRequest": [[77, 9, 1, "", "frequency"]], "navigator_msgs.srv.SetROIRequest": [[77, 9, 1, "", "roi"]], "navigator_msgs.srv.SetROIResponse": [[77, 9, 1, "", "OUTSIDE_OF_FRAME"], [77, 9, 1, "", "error"], [77, 9, 1, "", "success"]], "navigator_msgs.srv.ShooterManualRequest": [[77, 9, 1, "", "feeder"], [77, 9, 1, "", "shooter"]], "navigator_msgs.srv.ShooterManualResponse": [[77, 9, 1, "", "success"]], "navigator_msgs.srv.StartGateResponse": [[77, 9, 1, "", "success"], [77, 9, 1, "", "target"]], "navigator_msgs.srv.StereoShapeDetectorRequest": [[77, 9, 1, "", "detection_switch"], [77, 9, 1, "", "model_params"], [77, 9, 1, "", "num_points"], [77, 9, 1, "", "processing_type"], [77, 9, 1, "", "shape"]], "navigator_msgs.srv.StereoShapeDetectorResponse": [[77, 9, 1, "", "success"]], "navigator_msgs.srv.VisionRequestRequest": [[77, 9, 1, "", "target_name"]], "navigator_msgs.srv.VisionRequestResponse": [[77, 9, 1, "", "covariance_diagonal"], [77, 9, 1, "", "found"], [77, 9, 1, "", "pose"]], "navigator_path_planner.msg": [[49, 8, 1, "", "MoveAction"], [49, 8, 1, "", "MoveActionFeedback"], [49, 8, 1, "", "MoveActionGoal"], [49, 8, 1, "", "MoveActionResult"], [49, 8, 1, "", "MoveFeedback"], [49, 8, 1, "", "MoveGoal"], [49, 8, 1, "", "MoveResult"]], "navigator_path_planner.msg.MoveAction": [[49, 9, 1, "", "action_feedback"], [49, 9, 1, "", "action_goal"], [49, 9, 1, "", "action_result"]], "navigator_path_planner.msg.MoveActionFeedback": [[49, 9, 1, "", "feedback"], [49, 9, 1, "", "header"], [49, 9, 1, "", "status"]], "navigator_path_planner.msg.MoveActionGoal": [[49, 9, 1, "", "goal"], [49, 9, 1, "", "goal_id"], [49, 9, 1, "", "header"]], "navigator_path_planner.msg.MoveActionResult": [[49, 9, 1, "", "header"], [49, 9, 1, "", "result"], [49, 9, 1, "", "status"]], "navigator_path_planner.msg.MoveFeedback": [[49, 9, 1, "", "behavior"], [49, 9, 1, "", "distance"], [49, 9, 1, "", "time_till_next_branch"], [49, 9, 1, "", "tracking"], [49, 9, 1, "", "tree_size"]], "navigator_path_planner.msg.MoveGoal": [[49, 9, 1, "", "BYPASS"], [49, 9, 1, "", "DRIVE"], [49, 9, 1, "", "DRIVE_SMOOTH"], [49, 9, 1, "", "HOLD"], [49, 9, 1, "", "SKID"], [49, 9, 1, "", "SPIRAL"], [49, 9, 1, "", "blind"], [49, 9, 1, "", "focus"], [49, 9, 1, "", "goal"], [49, 9, 1, "", "initial_plan_time"], [49, 9, 1, "", "move_type"], [49, 9, 1, "", "speed_factor"]], "navigator_path_planner.msg.MoveResult": [[49, 9, 1, "", "failure_reason"]], "navigator_path_planner.nodes.path_planner": [[68, 8, 1, "", "LQRRT_Node"]], "navigator_path_planner.nodes.path_planner.LQRRT_Node": [[68, 10, 1, "", "action_check"], [68, 10, 1, "", "angle_diff"], [68, 10, 1, "", "boundary_analysis"], [68, 9, 1, "", "done"], [68, 10, 1, "", "erf"], [68, 10, 1, "", "is_feasible"], [68, 10, 1, "", "move_cb"], [68, 9, 1, "", "move_type"], [68, 10, 1, "", "odom_cb"], [68, 10, 1, "", "ogrid_cb"], [68, 10, 1, "", "pack_odom"], [68, 10, 1, "", "pack_pointstamped"], [68, 10, 1, "", "pack_pose"], [68, 10, 1, "", "pack_posestamped"], [68, 10, 1, "", "pack_wrenchstamped"], [68, 9, 1, "", "path_pub"], [68, 10, 1, "", "publish_expl"], [68, 10, 1, "", "publish_path"], [68, 10, 1, "", "publish_ref"], [68, 10, 1, "", "publish_tree"], [68, 10, 1, "", "reevaluate_plan"], [68, 9, 1, "", "ref_pub"], [68, 10, 1, "", "reset"], [68, 9, 1, "", "revisit_period"], [68, 10, 1, "", "rotation_move"], [68, 10, 1, "", "select_behavior"], [68, 10, 1, "", "select_exploration"], [68, 10, 1, "", "set_goal"], [68, 10, 1, "", "spiral_move"], [68, 10, 1, "", "tree_chain"], [68, 9, 1, "", "tree_pub"], [68, 10, 1, "", "unpack_odom"], [68, 10, 1, "", "unpack_pose"], [68, 9, 1, "", "unreachable"]], "navigator_robotx_comms": [[46, 8, 1, "", "RobotXDetectDockMessage"], [46, 8, 1, "", "RobotXEntranceExitGateMessage"], [46, 8, 1, "", "RobotXFindFlingMessage"], [46, 8, 1, "", "RobotXFollowPathMessage"], [46, 8, 1, "", "RobotXHeartbeatMessage"], [46, 8, 1, "", "RobotXReactReportMessage"], [46, 8, 1, "", "RobotXScanCodeMessage"], [46, 8, 1, "", "RobotXUAVReplenishmentMessage"], [46, 8, 1, "", "RobotXUAVSearchReportMessage"]], "navigator_robotx_comms.RobotXDetectDockMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXEntranceExitGateMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXFindFlingMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXFollowPathMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXHeartbeatMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXReactReportMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXScanCodeMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXUAVReplenishmentMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXUAVSearchReportMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.nodes.robotx_comms_client": [[46, 8, 1, "", "RobotXClient"], [46, 8, 1, "", "RobotXStartServices"]], "navigator_robotx_comms.nodes.robotx_comms_client.RobotXClient": [[46, 10, 1, "", "connect"], [46, 9, 1, "", "connected"], [46, 9, 1, "", "socket_connection"], [46, 9, 1, "", "tcp_port"]], "navigator_robotx_comms.nodes.robotx_comms_client.RobotXStartServices": [[46, 10, 1, "", "get_aedt_date_time"], [46, 10, 1, "", "gps_coord_callback"], [46, 10, 1, "", "gps_odom_callback"], [46, 10, 1, "", "handle_detect_dock_message"], [46, 10, 1, "", "handle_entrance_exit_gate_message"], [46, 10, 1, "", "handle_find_fling_message"], [46, 10, 1, "", "handle_follow_path_message"], [46, 10, 1, "", "handle_heartbeat_message"], [46, 10, 1, "", "handle_react_report_message"], [46, 10, 1, "", "handle_scan_code_message"], [46, 10, 1, "", "handle_uav_replenishment_message"], [46, 10, 1, "", "handle_uav_search_report_message"], [46, 10, 1, "", "kill_callback"], [46, 9, 1, "", "robotx_client"], [46, 10, 1, "", "scan_the_code_callback"], [46, 9, 1, "", "system_mode"], [46, 10, 1, "", "system_mode_callback"], [46, 10, 1, "", "uav_status_callback"], [46, 10, 1, "", "update_system_mode"], [46, 9, 1, "", "wrench"], [46, 10, 1, "", "wrench_callback"]], "nodes.clicked_point_recorder": [[74, 8, 1, "", "ClickedPointRecorder"]], "nodes.clicked_point_recorder.ClickedPointRecorder": [[74, 10, 1, "", "point_cb"], [74, 10, 1, "", "point_to_dict"], [74, 10, 1, "", "write_file"]], "nodes.navigator_battery_monitor": [[56, 8, 1, "", "BatteryMonitor"]], "nodes.navigator_battery_monitor.BatteryMonitor": [[56, 10, 1, "", "add_voltage"], [56, 10, 1, "", "hw_kill_cb"], [56, 9, 1, "", "hw_kill_raised"], [56, 9, 1, "", "pub_voltage"], [56, 10, 1, "", "publish_voltage"], [56, 9, 1, "", "supply_voltages"], [56, 9, 1, "", "voltage"]], "nodes.network_broadcaster": [[74, 8, 1, "", "NetworkBroadcaster"]], "remote_control_lib": [[72, 8, 1, "", "RemoteControl"]], "remote_control_lib.RemoteControl": [[72, 10, 1, "", "clear_kill"], [72, 10, 1, "", "clear_wrench"], [72, 10, 1, "", "deploy_thrusters"], [72, 10, 1, "", "kill"], [72, 10, 1, "", "publish_wrench"], [72, 10, 1, "", "retract_thrusters"], [72, 10, 1, "", "select_autonomous_control"], [72, 10, 1, "", "select_emergency_control"], [72, 10, 1, "", "select_keyboard_control"], [72, 10, 1, "", "select_next_control"], [72, 10, 1, "", "select_rc_control"], [72, 10, 1, "", "set_disc_speed"], [72, 10, 1, "", "shooter_cancel"], [72, 10, 1, "", "shooter_fire"], [72, 10, 1, "", "shooter_linear_extend"], [72, 10, 1, "", "shooter_linear_retract"], [72, 10, 1, "", "shooter_load"], [72, 10, 1, "", "shooter_reset"], [72, 10, 1, "", "station_hold"], [72, 10, 1, "", "toggle_kill"]], "rise_6dof": [[111, 8, 1, "", "Controller"]], "rise_6dof.Controller": [[111, 10, 1, "", "reset"], [111, 10, 1, "", "update"]], "roboteq_msgs.msg": [[63, 8, 1, "", "Feedback"], [63, 8, 1, "", "Status"]], "roboteq_msgs.msg.Feedback": [[63, 9, 1, "", "channel_temperature"], [63, 9, 1, "", "commanded_velocity"], [63, 9, 1, "", "header"], [63, 9, 1, "", "measured_position"], [63, 9, 1, "", "measured_velocity"], [63, 9, 1, "", "motor_current"], [63, 9, 1, "", "motor_power"], [63, 9, 1, "", "motor_temperature"], [63, 9, 1, "", "supply_current"], [63, 9, 1, "", "supply_voltage"]], "roboteq_msgs.msg.Status": [[63, 9, 1, "", "FAULT_EMERGENCY_STOP"], [63, 9, 1, "", "FAULT_MOSFET_FAILURE"], [63, 9, 1, "", "FAULT_OVERHEAT"], [63, 9, 1, "", "FAULT_OVERVOLTAGE"], [63, 9, 1, "", "FAULT_SEPEX_EXCITATION_FAULT"], [63, 9, 1, "", "FAULT_SHORT_CIRCUIT"], [63, 9, 1, "", "FAULT_STARTUP_CONFIG_FAULT"], [63, 9, 1, "", "FAULT_UNDERVOLTAGE"], [63, 9, 1, "", "STATUS_ANALOG_MODE"], [63, 9, 1, "", "STATUS_AT_LIMIT"], [63, 9, 1, "", "STATUS_MICROBASIC_SCRIPT_RUNNING"], [63, 9, 1, "", "STATUS_POWER_STAGE_OFF"], [63, 9, 1, "", "STATUS_PULSE_MODE"], [63, 9, 1, "", "STATUS_SERIAL_MODE"], [63, 9, 1, "", "STATUS_STALL_DETECTED"], [63, 9, 1, "", "adc_voltage"], [63, 9, 1, "", "fault"], [63, 9, 1, "", "header"], [63, 9, 1, "", "ic_temperature"], [63, 9, 1, "", "internal_voltage"], [63, 9, 1, "", "status"]], "ros_alarms": [[50, 8, 1, "", "Alarm"], [50, 8, 1, "", "AlarmBroadcaster"], [50, 8, 1, "", "AlarmListener"], [50, 8, 1, "", "HandlerBase"], [50, 8, 1, "", "HeartbeatMonitor"]], "ros_alarms.Alarm": [[50, 10, 1, "", "add_callback"], [50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "as_msg"], [50, 10, 1, "", "as_srv_resp"], [50, 10, 1, "", "blank"], [50, 9, 1, "", "cleared_cbs"], [50, 10, 1, "", "from_msg"], [50, 9, 1, "", "node_name"], [50, 9, 1, "", "parameters"], [50, 9, 1, "", "problem_description"], [50, 9, 1, "", "raised"], [50, 9, 1, "", "raised_cbs"], [50, 9, 1, "", "severity"], [50, 9, 1, "", "stamp"], [50, 10, 1, "", "update"]], "ros_alarms.AlarmBroadcaster": [[50, 10, 1, "", "clear_alarm"], [50, 10, 1, "", "raise_alarm"], [50, 10, 1, "", "wait_for_server"]], "ros_alarms.AlarmListener": [[50, 10, 1, "", "add_callback"], [50, 10, 1, "", "clear_callbacks"], [50, 10, 1, "", "get_alarm"], [50, 10, 1, "", "is_cleared"], [50, 10, 1, "", "is_raised"], [50, 10, 1, "", "wait_for_server"]], "ros_alarms.HandlerBase": [[50, 10, 1, "", "cleared"], [50, 13, 1, "", "current_alarm"], [50, 10, 1, "", "get_alarm"], [50, 10, 1, "", "meta_predicate"], [50, 10, 1, "", "on_set"], [50, 10, 1, "", "raised"]], "ros_alarms.nodes.alarm_server": [[50, 8, 1, "", "AlarmServer"]], "ros_alarms.nodes.alarm_server.AlarmServer": [[50, 9, 1, "", "alarms"], [50, 9, 1, "", "handlers"], [50, 10, 1, "", "make_tagged_alarm"], [50, 9, 1, "", "meta_alarms"], [50, 10, 1, "", "set_alarm"]], "ros_alarms_msgs.msg": [[63, 8, 1, "", "Alarm"]], "ros_alarms_msgs.msg.Alarm": [[63, 9, 1, "", "alarm_name"], [63, 9, 1, "", "node_name"], [63, 9, 1, "", "parameters"], [63, 9, 1, "", "problem_description"], [63, 9, 1, "", "raised"], [63, 9, 1, "", "severity"]], "ros_alarms_msgs.srv": [[77, 8, 1, "", "AlarmGetRequest"], [77, 8, 1, "", "AlarmGetResponse"], [77, 8, 1, "", "AlarmSetRequest"], [77, 8, 1, "", "AlarmSetResponse"]], "ros_alarms_msgs.srv.AlarmGetRequest": [[77, 9, 1, "", "alarm_name"]], "ros_alarms_msgs.srv.AlarmGetResponse": [[77, 9, 1, "", "alarm"], [77, 9, 1, "", "header"]], "ros_alarms_msgs.srv.AlarmSetRequest": [[77, 9, 1, "", "alarm"]], "ros_alarms_msgs.srv.AlarmSetResponse": [[77, 9, 1, "", "succeed"]], "sabertooth2x12": [[75, 8, 1, "", "Sabertooth2x12"], [75, 8, 1, "", "SimulatedSabertooth2x12"]], "sabertooth2x12.Sabertooth2x12": [[75, 9, 1, "", "address"], [75, 10, 1, "", "make_packet"], [75, 10, 1, "", "send_packet"], [75, 10, 1, "", "set_motor1"], [75, 10, 1, "", "set_motor2"], [75, 9, 1, "", "sim"]], "sabertooth2x12.SimulatedSabertooth2x12": [[75, 10, 1, "", "write"]], "sensor_msgs.msg": [[63, 8, 1, "", "Image"], [63, 8, 1, "", "PointCloud2"], [63, 8, 1, "", "PointField"]], "sensor_msgs.msg.Image": [[63, 9, 1, "", "data"], [63, 9, 1, "", "encoding"], [63, 9, 1, "", "header"], [63, 9, 1, "", "height"], [63, 9, 1, "", "is_bigendian"], [63, 9, 1, "", "step"], [63, 9, 1, "", "width"]], "sensor_msgs.msg.PointCloud2": [[63, 9, 1, "", "data"], [63, 9, 1, "", "fields"], [63, 9, 1, "", "header"], [63, 9, 1, "", "height"], [63, 9, 1, "", "is_bigendian"], [63, 9, 1, "", "is_dense"], [63, 9, 1, "", "point_step"], [63, 9, 1, "", "row_step"], [63, 9, 1, "", "width"]], "sensor_msgs.msg.PointField": [[63, 9, 1, "", "FLOAT32"], [63, 9, 1, "", "FLOAT64"], [63, 9, 1, "", "INT16"], [63, 9, 1, "", "INT32"], [63, 9, 1, "", "INT8"], [63, 9, 1, "", "UINT16"], [63, 9, 1, "", "UINT32"], [63, 9, 1, "", "UINT8"], [63, 9, 1, "", "count"], [63, 9, 1, "", "datatype"], [63, 9, 1, "", "name"], [63, 9, 1, "", "offset"]], "std_msgs.msg": [[63, 8, 1, "", "ColorRGBA"], [63, 8, 1, "", "Header"]], "std_msgs.msg.ColorRGBA": [[63, 9, 1, "", "a"], [63, 9, 1, "", "b"], [63, 9, 1, "", "g"], [63, 9, 1, "", "r"]], "std_msgs.msg.Header": [[63, 9, 1, "", "frame_id"], [63, 9, 1, "", "seq"], [63, 9, 1, "", "time"]], "std_srvs.srv": [[77, 8, 1, "", "SetBoolRequest"], [77, 8, 1, "", "SetBoolResponse"]], "std_srvs.srv.SetBoolResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "sub8_thrust_and_kill_board": [[111, 8, 1, "", "HeartbeatMessage"], [111, 8, 1, "", "KillMessage"], [111, 8, 1, "", "ThrustPacket"], [111, 8, 1, "", "Thruster"], [111, 8, 1, "", "ThrusterAndKillBoard"], [111, 8, 1, "", "ThrusterAndKillBoardSimulation"]], "sub8_thrust_and_kill_board.HeartbeatMessage": [[111, 9, 1, "", "IDENTIFIER"], [111, 10, 1, "", "create"]], "sub8_thrust_and_kill_board.KillMessage": [[111, 9, 1, "", "ASSERTED"], [111, 9, 1, "", "COMMAND"], [111, 9, 1, "", "HARD"], [111, 9, 1, "", "IDENTIFIER"], [111, 9, 1, "", "RESPONSE"], [111, 9, 1, "", "SOFT"], [111, 9, 1, "", "UNASSERTED"], [111, 10, 1, "", "create_kill_message"], [111, 13, 1, "", "is_asserted"], [111, 13, 1, "", "is_command"], [111, 13, 1, "", "is_hard"], [111, 13, 1, "", "is_response"], [111, 13, 1, "", "is_soft"], [111, 13, 1, "", "is_unasserted"]], "sub8_thrust_and_kill_board.ThrustPacket": [[111, 9, 1, "", "IDENTIFIER"], [111, 13, 1, "", "command"], [111, 10, 1, "", "create_thrust_packet"], [111, 13, 1, "", "thruster_id"]], "sub8_thrust_and_kill_board.Thruster": [[111, 9, 1, "", "backward_calibration"], [111, 10, 1, "", "effort_from_thrust"], [111, 9, 1, "", "forward_calibration"], [111, 10, 1, "", "from_dict"]], "sub8_thrust_and_kill_board.ThrusterAndKillBoard": [[111, 10, 1, "", "on_command"], [111, 10, 1, "", "on_data"], [111, 10, 1, "", "on_hw_kill"], [111, 10, 1, "", "send_heartbeat"], [111, 10, 1, "", "set_mobo_kill"], [111, 10, 1, "", "update_hw_kill"]], "sub8_thrust_and_kill_board.ThrusterAndKillBoardSimulation": [[111, 9, 1, "", "hard_kill_mobo"], [111, 9, 1, "", "hard_kill_plug_pulled"], [111, 13, 1, "", "hard_killed"], [111, 13, 1, "", "heartbeat_timedout"], [111, 10, 1, "", "on_data"], [111, 10, 1, "", "send_updates"], [111, 10, 1, "", "set_hard_kill"], [111, 10, 1, "", "set_soft_kill"], [111, 9, 1, "", "soft_kill_mobo"], [111, 9, 1, "", "soft_kill_plug_pulled"], [111, 13, 1, "", "soft_killed"]], "sub9_thrust_and_kill_board": [[111, 8, 1, "", "HeartbeatReceivePacket"], [111, 8, 1, "", "HeartbeatSetPacket"], [111, 8, 1, "", "KillReceivePacket"], [111, 8, 1, "", "KillSetPacket"], [111, 8, 1, "", "KillStatus"], [111, 8, 1, "", "ThrustSetPacket"]], "sub9_thrust_and_kill_board.KillReceivePacket": [[111, 9, 1, "", "set"], [111, 9, 1, "", "status"]], "sub9_thrust_and_kill_board.KillSetPacket": [[111, 9, 1, "", "set"], [111, 9, 1, "", "status"]], "sub9_thrust_and_kill_board.KillStatus": [[111, 9, 1, "", "BATTERY_LOW"], [111, 9, 1, "", "BOARD_HEARTBEAT_LOST"], [111, 9, 1, "", "KILL_SWITCH"], [111, 9, 1, "", "MOBO_HEARTBEAT_LOST"], [111, 9, 1, "", "SOFTWARE_REQUESTED"]], "sub9_thrust_and_kill_board.ThrustSetPacket": [[111, 9, 1, "", "speed"], [111, 9, 1, "", "thruster_id"]], "sub_actuator_board": [[111, 8, 1, "", "ActuatorBoard"], [111, 8, 1, "", "ActuatorBoardSimulation"], [111, 8, 1, "", "ActuatorPollRequestPacket"], [111, 8, 1, "", "ActuatorPollResponsePacket"], [111, 8, 1, "", "ActuatorSetPacket"]], "sub_actuator_board.ActuatorBoard": [[111, 10, 1, "", "on_data"], [111, 10, 1, "", "set_valve"]], "sub_actuator_board.ActuatorBoardSimulation": [[111, 10, 1, "", "on_data"], [111, 9, 1, "", "status"]], "sub_actuator_board.ActuatorPollResponsePacket": [[111, 9, 1, "", "values"]], "sub_actuator_board.ActuatorSetPacket": [[111, 9, 1, "", "address"], [111, 9, 1, "", "open"]], "sub_actuator_board.srv": [[111, 8, 1, "", "SetValveRequest"], [111, 8, 1, "", "SetValveResponse"]], "sub_actuator_board.srv.SetValveRequest": [[111, 9, 1, "", "actuator"], [111, 9, 1, "", "opened"]], "sub_actuator_board.srv.SetValveResponse": [[111, 9, 1, "", "message"], [111, 9, 1, "", "success"]], "subjugator_gazebo_tools": [[111, 8, 1, "", "BagManager"]], "subjugator_gazebo_tools.BagManager": [[111, 10, 1, "", "dump"], [111, 10, 1, "", "make_dict"], [111, 10, 1, "", "start_caching"]], "subjugator_missions": [[111, 8, 1, "", "PoseEditor"]], "subjugator_missions.PoseEditor": [[111, 10, 1, "", "absolute"], [111, 10, 1, "", "as_Pose"], [111, 10, 1, "", "as_PoseTwist"], [111, 10, 1, "", "as_PoseTwistStamped"], [111, 10, 1, "", "backward"], [111, 10, 1, "", "body_down"], [111, 10, 1, "", "body_up"], [111, 10, 1, "", "depth"], [111, 10, 1, "", "down"], [111, 10, 1, "", "east"], [111, 10, 1, "", "forward"], [111, 10, 1, "", "from_Odometry"], [111, 10, 1, "", "from_Odometry_topic"], [111, 10, 1, "", "from_Pose"], [111, 10, 1, "", "from_PoseTwistStamped"], [111, 10, 1, "", "from_PoseTwistStamped_topic"], [111, 10, 1, "", "heading"], [111, 10, 1, "", "heading_deg"], [111, 10, 1, "", "left"], [111, 10, 1, "", "north"], [111, 10, 1, "", "relative"], [111, 10, 1, "", "relative_depth"], [111, 10, 1, "", "roll_left"], [111, 10, 1, "", "roll_left_deg"], [111, 10, 1, "", "roll_right"], [111, 10, 1, "", "roll_right_deg"], [111, 10, 1, "", "set_orientation"], [111, 10, 1, "", "set_position"], [111, 10, 1, "", "south"], [111, 10, 1, "", "turn_left"], [111, 10, 1, "", "turn_left_deg"], [111, 10, 1, "", "turn_right"], [111, 10, 1, "", "turn_right_deg"], [111, 10, 1, "", "up"], [111, 10, 1, "", "west"], [111, 10, 1, "", "yaw_left"], [111, 10, 1, "", "yaw_left_deg"], [111, 10, 1, "", "yaw_right"], [111, 10, 1, "", "yaw_right_deg"], [111, 10, 1, "", "zero_roll"]], "subjugator_msgs.msg": [[111, 8, 1, "", "Thrust"], [111, 8, 1, "", "ThrusterCmd"]], "subjugator_msgs.msg.Thrust": [[111, 9, 1, "", "thruster_commands"]], "subjugator_msgs.msg.ThrusterCmd": [[111, 9, 1, "", "name"], [111, 9, 1, "", "thrust"]], "subjugator_system_id": [[111, 8, 1, "", "SubjuGatorDynamics"]], "subjugator_system_id.SubjuGatorDynamics": [[111, 9, 1, "", "G"], [111, 9, 1, "", "air_density"], [111, 10, 1, "", "drag"], [111, 9, 1, "", "drag_coeffs"], [111, 10, 1, "", "dynamics"], [111, 10, 1, "", "from_ros_params"], [111, 10, 1, "", "gravity_and_buoyancy"], [111, 9, 1, "", "height"], [111, 10, 1, "", "inverse_dynamics"], [111, 10, 1, "", "inverse_dynamics_from_total_wrench"], [111, 9, 1, "", "mass"], [111, 10, 1, "", "newton_euler_extra_term"], [111, 9, 1, "", "volume"], [111, 9, 1, "", "water_density"]], "subjugator_vision_tools": [[111, 8, 1, "", "OccGridUtils"], [111, 8, 1, "", "Searcher"]], "subjugator_vision_tools.OccGridUtils": [[111, 10, 1, "", "add_circle"], [111, 10, 1, "", "found_marker"], [111, 10, 1, "", "publish_grid"], [111, 10, 1, "", "reset_grid"]], "subjugator_vision_tools.Searcher": [[111, 10, 1, "", "check_searched"], [111, 10, 1, "", "polygon_generator"], [111, 10, 1, "", "return_pose"]]}, "objtypes": {"0": "cpp:class", "1": "cpp:function", "2": "cpp:functionParam", "3": "cpp:templateParam", "4": "cpp:type", "5": "cpp:member", "6": "cpp:enum", "7": "cpp:enumerator", "8": "py:class", "9": "py:attribute", "10": "py:method", "11": "py:module", "12": "py:function", "13": "py:property"}, "objnames": {"0": ["cpp", "class", "C++ class"], "1": ["cpp", "function", "C++ function"], "2": ["cpp", "functionParam", "C++ function parameter"], "3": ["cpp", "templateParam", "C++ template parameter"], "4": ["cpp", "type", "C++ type"], "5": ["cpp", "member", "C++ member"], "6": ["cpp", "enum", "C++ enum"], "7": ["cpp", "enumerator", "C++ enumerator"], "8": ["py", "class", "Python class"], "9": ["py", "attribute", "Python attribute"], "10": ["py", "method", "Python method"], "11": ["py", "module", "Python module"], "12": ["py", "function", "Python function"], "13": ["py", "property", "Python property"]}, "titleterms": {"brand": 0, "logo": 0, "font": 0, "color": 0, "cultur": [1, 116], "meet": 1, "divers": 1, "equiti": 1, "inclus": 1, "deprec": [2, 85], "project": [2, 39, 41, 42, 84, 100], "design": [3, 103, 104], "odom_estim": 4, "manifold": 4, "type": [4, 69, 78, 81, 85, 94, 111], "eci": 4, "coordin": 4, "passiv": [5, 63, 67], "sonar": [5, 63, 67], "how": [5, 7, 20, 27, 48, 89], "us": [5, 7, 20, 27, 30, 71, 81, 85, 89, 90, 97, 98, 101], "launch": [5, 27, 48, 97, 113], "debug": [5, 110], "To": [5, 48], "plai": [5, 48], "back": 5, "file": [5, 24, 25, 31, 61, 71, 84, 85, 87, 89, 91, 94, 97], "step": [5, 30, 93, 97], "through": [5, 6, 100], "real": 5, "speed": [5, 19], "visual": [5, 27], "data": [5, 97, 110], "pipelin": 5, "view": [5, 79, 84, 89, 90, 91], "all": 5, "point": [5, 63, 69, 85], "trigger": [5, 63], "raw": [5, 6], "sampl": 5, "from": [5, 43, 48, 81, 107, 108], "hydrophon": [5, 108], "around": [5, 48], "time": 5, "frequenc": 5, "respons": 5, "bandpass": 5, "filter": 5, "signal": 5, "sent": 5, "ping": [5, 63], "locat": 5, "node": [5, 68, 69], "cross": 5, "correl": 5, "between": 5, "configur": [5, 34, 71, 86, 90, 97], "make": [5, 79], "custom": [5, 97], "config": 5, "chang": [5, 79, 84, 93, 94, 100], "runtim": 5, "test": [5, 47, 48, 93, 96, 101, 115], "ro": [5, 6, 33, 54, 73, 79, 85, 96], "bridg": 5, "doe": [5, 27], "It": 5, "work": [5, 19, 27, 100], "mil": [6, 33, 63, 116], "s": [6, 90], "pneumat": [6, 70], "board": [6, 70, 111], "commun": [6, 46, 57], "intend": 6, "oper": 6, "interfac": [6, 89], "batteri": [7, 35, 56], "charger": 7, "link": [7, 11, 17, 109], "document": [7, 13, 14, 15, 79, 87, 93], "electr": [8, 9, 43, 47, 104, 108, 115], "onboard": [9, 39], "join": [9, 39, 116], "slack": [9, 18, 91, 116], "channel": [9, 39], "github": [9, 18, 39], "complet": 9, "get": [9, 18, 39, 90, 91, 97, 101], "start": [9, 18, 39, 85, 90, 97], "tutori": 9, "glossari": 10, "machin": [11, 90], "intellig": 11, "lab": 11, "new": [11, 83, 84, 100], "member": [11, 79], "relev": 11, "softwar": [11, 18, 29, 43, 46, 47, 60, 88, 92, 103, 108, 111, 115], "refer": [11, 46, 51, 60, 85, 98, 111], "meta": 11, "autonomi": 12, "architectur": [12, 30, 45], "go": [12, 16], "kart": [12, 16], "indi": [12, 16, 17, 18], "light": [12, 16], "vehicl": 12, "electron": 13, "mechan": [14, 18, 37, 39, 43, 47, 108], "mechatron": 15, "actuat": [15, 70, 111], "animat": 15, "smart": 15, "motor": [15, 63], "sensor": [15, 21, 63], "hardwar": 16, "av": [17, 18], "collabor": [17, 18], "grabcad": [18, 39], "control": [19, 20, 72, 81, 99, 110, 111], "packag": [19, 21, 22, 23, 26, 90, 97], "discuss": [19, 21, 22, 26], "pure": 19, "pursuit": 19, "steer": [19, 27], "pid": [19, 110], "futur": [19, 81], "indyav": [20, 27], "joydriv": 20, "util": [20, 51, 61, 67, 74, 76, 78, 111], "set": [20, 47, 84, 90], "up": [20, 47, 84, 90], "an": [20, 80, 81, 90, 91], "xbox": 20, "360": 20, "run": [20, 30, 48, 89, 90, 93, 113], "local": 21, "inerti": 21, "navig": [21, 42, 45, 46, 63, 109], "gnss": 21, "gp": 21, "glonass": 21, "etc": 21, "pro": [21, 22], "con": [21, 22], "lidar": [21, 22, 44], "camera": [21, 22, 83, 89, 102], "percept": 22, "radar": 22, "path": [23, 24, 25, 49, 68], "program": 23, "player": 24, "basic": [24, 25, 97], "usag": [24, 25, 34], "exampl": [24, 25, 53, 89], "sourc": [24, 25], "record": 25, "plan": [26, 68], "gazebo": [27, 28, 89, 113], "simul": [27, 28, 44, 90, 111, 113], "rviz": [27, 48, 71, 74, 113], "client": [27, 113], "gui": [27, 97], "command": [27, 48, 57, 113], "angl": 27, "throttl": 27, "But": 27, "ani": 27, "thi": 27, "ansi": 28, "vrxperienc": 28, "middlewar": 29, "element": 29, "autonomoni": 29, "continu": 30, "integr": [30, 96], "terminolog": 30, "runner": 30, "environ": [30, 48], "job": 30, "ci": [30, 94], "updat": [30, 52, 79, 90, 93], "server": [31, 113], "mount": 31, "ubuntu": [31, 80, 90, 95], "infrastructur": 32, "network": [33, 34, 45, 63], "lan": 33, "dhcp": 33, "connect": [33, 109], "robot": [33, 35], "other": [33, 94], "box": [34, 45], "io": 34, "intern": 34, "backup": 34, "restor": 34, "wan": 34, "setup": [34, 79, 90, 101], "ship": [35, 43, 108], "pack": [35, 47, 115], "list": [35, 57, 115], "materi": [35, 114], "note": 35, "solar": 36, "park": 36, "mainten": 38, "cnc": 38, "our": 39, "familiar": 39, "technic": 39, "resourc": [40, 55, 73, 97], "drone": 41, "comment": [41, 94], "sean": 41, "founder": 41, "aerotestra": 41, "current": [42, 48, 113], "procedur": [42, 114, 115], "lesson": [42, 43, 107, 108, 112], "learn": [42, 112], "reflect": 42, "past": 42, "robotx": 43, "2022": [43, 108], "overal": [43, 108], "improv": 43, "rocket": 45, "ac": 45, "base": [45, 64, 97], "station": 45, "antenna": 45, "servic": [46, 51, 77, 111], "messagedetectdock": 46, "messageentranceexitg": 46, "messagefindfl": 46, "messagefollowpath": 46, "messagereactreport": 46, "messageuavreplenish": 46, "messageuavsearchreport": 46, "scanthecodemiss": 46, "auvsi": 46, "robotxentranceexitgatemessag": 46, "robotxdetectdockmessag": 46, "robotxfindflingmessag": 46, "robotxfollowpathmessag": 46, "robotxheartbeatmessag": 46, "robotxreactreportmessag": 46, "robotxscancodemessag": 46, "robotxuavreplenishmentmessag": 46, "robotxuavsearchreportmessag": 46, "robotxstartservic": 46, "robotxcli": 46, "checklist": [47, 115], "equip": 47, "boat": 47, "trailer": 47, "vrx": [48, 63], "verifi": [48, 93, 98], "function": [48, 51, 61, 67, 74, 76, 78, 81, 85, 94, 97, 111], "give": [48, 113], "move": [48, 113], "see": [48, 113], "odometri": [48, 63, 113], "quick": 48, "prepar": 48, "submiss": 48, "download": 48, "replai": 48, "log": [48, 101], "phase": 48, "3": [48, 90, 93, 97], "2019": [48, 107], "video": 48, "action": 49, "planner": [49, 68], "moveact": 49, "moveactionresult": 49, "moveactionfeedback": 49, "moveactiongo": 49, "movefeedback": 49, "movego": 49, "moveresult": 49, "shooter": 49, "shooterdoact": 49, "shooterdoactionresult": 49, "shooterdoactionfeedback": 49, "shooterdoactiongo": 49, "shooterdofeedback": 49, "shooterdogo": 49, "shooterdoresult": 49, "ros_alarm": 50, "state": 50, "alarm": [50, 63, 99], "system": [50, 65, 77, 90], "python": [50, 87, 93, 94, 96], "alarmserv": 50, "alarmbroadcast": 50, "alarmlisten": 50, "heartbeatmonitor": 50, "handlerbas": 50, "c": [50, 78, 85, 87], "alarmproxi": 50, "listenercb": 50, "subjug": [50, 57, 102, 105, 106, 111, 113, 115], "specif": [50, 97], "busvoltag": 50, "heightoverbottom": 50, "hwkill": 50, "kill": [50, 111, 113], "networkloss": 50, "odomkil": 50, "thrusterout": 50, "api": 51, "except": [51, 57, 58, 64, 70, 85, 94], "hierarchi": [51, 57], "nodehandl": 51, "subscrib": [51, 52, 97], "publish": [51, 52], "servicecli": 51, "asyncserverproxi": 51, "rosmasterproxi": 51, "goal": 51, "goalmanag": 51, "simpleactionserv": 51, "actioncli": 51, "transform": [51, 63], "transformbroadcast": 51, "transformlisten": 51, "error": 52, "known": 52, "issu": [52, 91], "handl": [52, 71, 77, 93], "aiohttp": 52, "clientconnectionerror": 52, "paramet": 52, "high": 52, "rate": 52, "axro": [54, 81], "independ": 54, "extens": [54, 88], "manag": [55, 73], "monitor": [56, 97], "mil_usb_to_can": 57, "usb": 57, "can": 57, "sub8": [57, 111], "8": [57, 106], "packet": 57, "format": [57, 85, 94], "usbtocan": 57, "commandpacket": 57, "receiv": 57, "receivepacket": 57, "checksum": 57, "applicationpacket": 57, "usbtocanboard": 57, "candevicehandl": 57, "usbtocandriv": 57, "simulatedcandevic": 57, "simulatedusbtocan": 57, "sub9": [57, 111], "9": 57, "simulatedcandevicehandl": 57, "nackpacket": 57, "ackpacket": 57, "imag": [59, 63], "bagcrawl": 59, "cvdebug": 59, "image_publish": 59, "image_subscrib": 59, "stereoimagesubscrib": 59, "plotter": 59, "user": [61, 89], "input": 61, "output": 61, "fprintfactori": 61, "sanit": 61, "mathemat": [62, 94], "messag": [63, 66, 77, 111], "actionlib": 63, "goalstatu": 63, "geometri": 63, "quaternion": 63, "pointstamp": 63, "vector3": 63, "pose": 63, "pose2d": 63, "posewithcovari": 63, "transformstamp": 63, "accel": 63, "twist": [63, 81], "twistwithcovari": 63, "polygon": 63, "wrench": 63, "wrenchstamp": 63, "posetwist": 63, "objectinimag": 63, "point2d": 63, "acceler": 63, "killstatu": [63, 111], "perceptionobject": 63, "perceptionobjectarrai": 63, "host": 63, "hydrophonesampl": 63, "hydrophonesamplesstamp": 63, "processedp": 63, "standard": [63, 77], "header": 63, "colorrgba": 63, "pointfield": 63, "pointcloud2": 63, "feedback": 63, "statu": [63, 84], "dockshap": 63, "scanthecod": 63, "mil_missions_cor": 64, "mission": [64, 65, 77, 111], "class": [64, 69, 85, 91, 94], "basemiss": 64, "chainwithtimeout": 64, "missioncli": 64, "makewait": 64, "mil_miss": 65, "handler": 66, "mil_passive_sonar": 67, "txhydrophonescli": 67, "streamedbandpass": 67, "hydrophonetrigg": 67, "pingloc": 67, "sylphasesonartorosnod": 67, "lqrrt": 68, "constraint": 68, "tree": 68, "pcodar": 69, "cloud": 69, "object": [69, 111], "detect": [69, 111], "alias": [69, 78], "inputcloudfilt": 69, "markermanag": 69, "associ": 69, "objectdetector": 69, "objectmap": 69, "ogridmanag": 69, "nodebas": 69, "persistentcloudfilt": 69, "pointcloudcircularbuff": 69, "mil_pneumatic_actu": 70, "pneumaticactuatordriv": 70, "constant": 70, "simulatedpnuematicactuatorboard": 70, "mil_poi": 71, "poi": [71, 77], "poiserv": 71, "txpoiclient": 71, "remote_control_lib": 72, "remot": [72, 100], "thread": 73, "vectortomark": 74, "clickedpointrecord": 74, "networkbroadcast": 74, "sabertooth2x12": 75, "sabertooth": 75, "2x12": 75, "simulatedsabertooth2x12": 75, "serial": 76, "noopseri": 76, "simulatedseri": 76, "acousticbeacon": 77, "chooseanim": 77, "colorrequest": 77, "findping": 77, "getdockbai": 77, "getdockshap": 77, "shootermanu": 77, "startgat": 77, "subsystem": 77, "alarmget": 77, "alarmset": 77, "cameradbqueri": 77, "movetowaypoint": 77, "objectdbqueri": 77, "setfrequ": 77, "setroi": 77, "stereoshapedetector": 77, "visionrequest": 77, "setbool": 77, "convers": 77, "cameratolidartransform": 77, "coordinateconvers": 77, "keyboardcontrol": 77, "addpoi": 77, "movepoi": 77, "deletepoi": 77, "comput": [78, 90, 98, 109, 111], "vision": [78, 111], "contourclassifi": 78, "threshold": 78, "imagemux": 78, "imageset": 78, "imageproc": 78, "trackedobject": 78, "objectstrack": 78, "rectfind": 78, "visionnod": 78, "cameralidartransform": 78, "closedcurv": 78, "activecontour": 78, "cameraobserv": 78, "colorobserv": 78, "unoccludedpointsimg": 78, "pointcolorstat": 78, "pcdcolor": 78, "singlecloudprocessor": 78, "pixeltyp": 78, "camerafram": 78, "imagewithcamerainfo": 78, "framehistori": 78, "rang": 78, "cameraframesequ": 78, "cameramodel": 78, "roscamerastream": 78, "pcdsubpubalgorithm": 78, "imagepublish": 78, "imagesubscrib": 78, "without": 79, "style": [79, 82, 85, 94], "contribut": [79, 84], "instal": [80, 86, 90, 97, 98], "18": 80, "04": 80, "mac": 80, "m": 80, "seri": 80, "processor": 80, "m1": 80, "introduct": [81, 89, 97], "asyncio": 81, "migrat": [81, 93], "coroutin": 81, "task": 81, "help": [81, 89, 91], "yield": [81, 94], "code": [81, 91, 93, 97], "asynchron": 81, "uvloop": 81, "bash": [82, 86], "guid": [82, 84, 85, 89, 94, 95], "In": [82, 101], "progress": 82, "preambl": 82, "calibr": [83, 109], "saniti": [84, 91], "git": [84, 90, 100], "pre": [84, 86], "commit": [84, 86], "find": 84, "gener": [84, 94], "process": [84, 108], "creat": [84, 87, 89, 97], "branch": 84, "ad": [84, 87, 89, 97, 100], "stage": 84, "push": 84, "your": [84, 91, 101], "pull": [84, 100], "request": 84, "wait": 84, "review": 84, "amend": 84, "merg": 84, "upstream": [84, 100], "where": 85, "enforc": 85, "philosophi": 85, "1": [85, 90, 97], "Be": 85, "express": [85, 94], "restrict": 85, "version": [85, 93], "name": [85, 94], "variabl": 85, "namespac": [85, 102], "line": [85, 94], "length": [85, 94], "indent": 85, "float": 85, "call": 85, "brace": 85, "condit": [85, 94], "switch": 85, "loop": [85, 114], "pointer": 85, "preprocessor": 85, "direct": 85, "structur": [85, 97], "horizont": 85, "whitespac": [85, 94], "vertic": 85, "blank": [85, 94], "featur": [85, 94], "macro": 85, "friend": 85, "const": 85, "sizeof": 85, "helper": 85, "assert": [85, 94], "print": 85, "develop": [86, 90], "tool": [86, 90, 94, 97], "vim": 86, "introduc": 86, "neovim": 86, "distribut": [86, 90], "write": [86, 96, 97], "tmux": 86, "tmuxin": 86, "zsh": 86, "syntax": 87, "restructur": 87, "text": 87, "markdown": 87, "myst": 87, "admonit": 87, "docstr": [87, 94], "vs": 87, "explicit": 87, "index": 87, "support": 88, "proprietari": 88, "udev": 88, "rule": 88, "brief": 89, "left": 89, "panel": 89, "world": 89, "tab": 89, "insert": 89, "layer": 89, "scene": 89, "The": [89, 94, 109], "upper": 89, "toolbar": 89, "bottom": 89, "right": 89, "menu": 89, "edit": 89, "window": [89, 90], "mous": 89, "model": 89, "editor": 89, "place": 89, "shape": 89, "joint": 89, "plugin": [89, 97], "creation": 89, "workflow": 89, "more": [89, 97], "info": 89, "requir": 90, "choos": 90, "method": [90, 91, 94], "option": [90, 93], "dual": 90, "boot": 90, "2": [90, 93, 97], "virtual": 90, "parallel": 90, "maco": 90, "4": [90, 97], "utm": 90, "5": [90, 97], "6": 90, "distrobox": 90, "anoth": 90, "linux": 90, "clone": [90, 100], "repositori": [90, 100], "script": [90, 93, 99], "what": [90, 116], "next": 90, "check": [91, 93], "search": 91, "doc": 91, "relat": 91, "grep": 91, "internet": 91, "ask": 91, "person": 91, "noetic": 93, "overview": [93, 112], "One": 93, "against": 93, "exist": 93, "two": 93, "import": [93, 94, 109], "six": 93, "xxx": 93, "suggest": 93, "three": 93, "four": 93, "cmake": 93, "minimum": 93, "power": [94, 105], "thing": 94, "avoid": 94, "iter": 94, "lambda": 94, "properti": 94, "implicit": 94, "true": 94, "fals": 94, "decor": 94, "separ": 94, "string": 94, "todo": 94, "getter": 94, "setter": 94, "modul": 94, "lint": 94, "password": 95, "reset": 95, "unit": 96, "rostest": 96, "why": 96, "good": 96, "practic": 96, "fuzzi": 96, "mutat": 96, "unittest": 96, "implement": 97, "rqt": 97, "benefit": 97, "inform": 97, "topic": 97, "displai": 97, "plot": 97, "theme": 97, "layout": 97, "add": 97, "xml": 97, "build": 97, "load": 97, "advanc": 97, "extern": 97, "conclus": 97, "driver": 98, "rtx": 98, "2080": 98, "nvidia": 98, "correct": 98, "gpu": 98, "being": 98, "default": 98, "mode": 98, "occup": 99, "grid": 99, "keyboard": 99, "submodul": 100, "main": 100, "access": 101, "zobelisk": 101, "uid": 101, "sshf": 101, "docker": 101, "out": 101, "enabl": 105, "ssh": 105, "robosub": [106, 107, 108, 112], "nav": 109, "tube": 109, "troubleshoot": [109, 115], "adis16400": 109, "16405": 109, "bmlz": 109, "imu": 109, "magnetomet": 109, "datasheet": 109, "tune": 110, "tip": 110, "collect": 110, "thrust": 111, "thrustercmd": 111, "setvalv": 111, "actuatorboard": 111, "actuatorboardsimul": 111, "actuatorsetpacket": 111, "actuatorpollrequestpacket": 111, "actuatorpollresponsepacket": 111, "thrusterandkillboard": 111, "killmessag": 111, "heartbeatmessag": 111, "thrustpacket": 111, "thrusterandkillboardsimul": 111, "thruster": 111, "heartbeatsetpacket": 111, "heartbeatreceivepacket": 111, "thrustsetpacket": 111, "killsetpacket": 111, "killreceivepacket": 111, "subjugatorbuoydetector": 111, "subjugatorstartgatedetector": 111, "subjugatortorpedoboarddetector": 111, "torpedoboardreprojectioncost": 111, "definit": 111, "subjugatorobjectfind": 111, "stereobas": 111, "rvizvisu": 111, "occgridutil": 111, "searcher": 111, "classif": 111, "ogridgen": 111, "bagmanag": 111, "6dof": 111, "dynam": 111, "subjugatordynam": 111, "poseeditor": 111, "competit": 112, "clear": 113, "watercool": 114, "fill": 114, "water": 114, "cool": 114, "No": 114, "pump": 114, "empti": 114, "befor": 115, "leav": 115, "At": 115, "site": 115, "welcom": 116, "sai": 116, "hello": 116, "jump": 116}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["branding", "culture", "deprecated", "design/design", "design/odom_estimator/odom_estimator", "design/passive_sonar/passive_sonar", "design/pneumatic_board", "electrical/battery_charger", "electrical/index", "electrical/onboarding", "glossary", "index", "indyav/autonomy_architecture", "indyav/hardware/go_kart/electronics", "indyav/hardware/go_kart/mechanical", "indyav/hardware/go_kart/mechatronics", "indyav/hardware/hardware", "indyav/index", "indyav/onboarding", "indyav/software/control/control", "indyav/software/control/joydrive/joydrive", "indyav/software/localization", "indyav/software/perception", "indyav/software/planning/indyav_path/path", "indyav/software/planning/indyav_path/path_player", "indyav/software/planning/indyav_path/path_recorder", "indyav/software/planning/planning", "indyav/software/simulation/gazebo/gazebo", "indyav/software/simulation/simulation", "indyav/software/software", "infrastructure/ci", "infrastructure/file_server", "infrastructure/index", "infrastructure/network", "infrastructure/network_box", "infrastructure/shipping", "infrastructure/solar_park", "mechanical/index", "mechanical/maintenance", "mechanical/onboarding", "mechanical/resources", "navigator/drone", "navigator/index", "navigator/lessons22", "navigator/lidar", "navigator/networking", "navigator/reference", "navigator/testing_checklist", "navigator/vrx", "reference/actions", "reference/alarms", "reference/axros/api", "reference/axros/errors", "reference/axros/examples", "reference/axros/index", "reference/axros/resources", "reference/battery", "reference/can", "reference/exceptions", "reference/images", "reference/index", "reference/io", "reference/mathematics", "reference/messages", "reference/mission/core", "reference/mission/index", "reference/msghandlers", "reference/passivesonar", "reference/pathplanning", "reference/pcodar", "reference/pneumatic", "reference/poi", "reference/rc", "reference/resources", "reference/rviz", "reference/sabertooth", "reference/serial", "reference/services", "reference/vision", "software/adding_documentation", "software/apple_mseries_ubuntu_setup", "software/asyncio", "software/bash_style", "software/calibrating_cams", "software/contributing", "software/cpp_style", "software/devtools", "software/documentation_syntax", "software/extension_support", "software/gazebo_guide", "software/getting_started", "software/help", "software/index", "software/noetic_migration", "software/python_style", "software/resetubuntupass", "software/rostest", "software/rqt", "software/rtx_2080_drivers", "software/scripts", "software/submodule", "software/zobelisk", "subjugator/cameras", "subjugator/design", "subjugator/electrical", "subjugator/enabling", "subjugator/index", "subjugator/lessons19", "subjugator/lessons22", "subjugator/nav_tube", "subjugator/pid", "subjugator/reference", "subjugator/robosub", "subjugator/simulating", "subjugator/watercooling", "testingprocedures", "welcome"], "filenames": ["branding.rst", "culture.rst", "deprecated.rst", "design/design.rst", "design/odom_estimator/odom_estimator.rst", "design/passive_sonar/passive_sonar.rst", "design/pneumatic_board.md", "electrical/battery_charger.md", "electrical/index.rst", "electrical/onboarding.md", "glossary.rst", "index.rst", "indyav/autonomy_architecture.rst", "indyav/hardware/go_kart/electronics.rst", "indyav/hardware/go_kart/mechanical.rst", "indyav/hardware/go_kart/mechatronics.rst", "indyav/hardware/hardware.rst", "indyav/index.rst", "indyav/onboarding.rst", "indyav/software/control/control.rst", "indyav/software/control/joydrive/joydrive.rst", "indyav/software/localization.rst", "indyav/software/perception.rst", "indyav/software/planning/indyav_path/path.rst", "indyav/software/planning/indyav_path/path_player.rst", "indyav/software/planning/indyav_path/path_recorder.rst", "indyav/software/planning/planning.rst", "indyav/software/simulation/gazebo/gazebo.rst", "indyav/software/simulation/simulation.rst", "indyav/software/software.rst", "infrastructure/ci.md", "infrastructure/file_server.md", "infrastructure/index.rst", "infrastructure/network.md", "infrastructure/network_box.rst", "infrastructure/shipping.md", "infrastructure/solar_park.md", "mechanical/index.rst", "mechanical/maintenance.md", "mechanical/onboarding.md", "mechanical/resources.md", "navigator/drone.md", "navigator/index.rst", "navigator/lessons22.md", "navigator/lidar.md", "navigator/networking.md", "navigator/reference.rst", "navigator/testing_checklist.rst", "navigator/vrx.rst", "reference/actions.rst", "reference/alarms.rst", "reference/axros/api.rst", "reference/axros/errors.rst", "reference/axros/examples.rst", "reference/axros/index.rst", "reference/axros/resources.rst", "reference/battery.rst", "reference/can.rst", "reference/exceptions.rst", "reference/images.rst", "reference/index.rst", "reference/io.rst", "reference/mathematics.rst", "reference/messages.rst", "reference/mission/core.rst", "reference/mission/index.rst", "reference/msghandlers.rst", "reference/passivesonar.rst", "reference/pathplanning.rst", "reference/pcodar.rst", "reference/pneumatic.rst", "reference/poi.rst", "reference/rc.rst", "reference/resources.rst", "reference/rviz.rst", "reference/sabertooth.rst", "reference/serial.rst", "reference/services.rst", "reference/vision.rst", "software/adding_documentation.md", "software/apple_mseries_ubuntu_setup.md", "software/asyncio.md", "software/bash_style.md", "software/calibrating_cams.md", "software/contributing.md", "software/cpp_style.md", "software/devtools.md", "software/documentation_syntax.md", "software/extension_support.md", "software/gazebo_guide.md", "software/getting_started.md", "software/help.md", "software/index.rst", "software/noetic_migration.md", "software/python_style.md", "software/resetubuntupass.md", "software/rostest.md", "software/rqt.md", "software/rtx_2080_drivers.md", "software/scripts.md", "software/submodule.md", "software/zobelisk.md", "subjugator/cameras.md", "subjugator/design.rst", "subjugator/electrical.md", "subjugator/enabling.md", "subjugator/index.rst", "subjugator/lessons19.md", "subjugator/lessons22.md", "subjugator/nav_tube.rst", "subjugator/pid.rst", "subjugator/reference.rst", "subjugator/robosub.md", "subjugator/simulating.rst", "subjugator/watercooling.rst", "testingprocedures.md", "welcome.md"], "titles": ["Branding", "Culture", "Deprecated Projects", "Design", "odom_estimator", "Passive sonar", "MIL\u2019s Pneumatic Board", "Battery Charger", "Electrical", "Electrical Onboarding", "Glossary", "Machine Intelligence Lab", "Autonomy Architecture", "Electronics Documentation", "Mechanical Documentation", "Mechatronics Documentation", "Hardware", "Indy AV", "Getting Started on Indy AV", "Control", "IndyAV Joydrive Utility", "Localization", "Perception", "Path Package", "Path Player", "Path Recorder", "Planning", "IndyAV Gazebo Simulation", "Simulation", "Software", "Continuous Integration", "File Server", "Infrastructure", "MIL Network", "Network Box", "Shipping", "Solar Park", "Mechanical", "Maintenance", "Mechanical Onboarding", "Resources", "Drone Project", "NaviGator", "Lessons from RobotX 2022", "LIDAR", "Networking with Navigator", "Navigator Software Reference", "Testing Checklist", "VRX", "Actions", "ros_alarms - Stateful Alarm System", "API Reference", "Errors and Known Issues", "Examples", "axros - Independent extensions for ROS", "Managing Resources", "Battery Monitor", "mil_usb_to_can - USB to CAN Communication", "Exceptions", "Images", "Software Reference", "User Input/Output", "Mathematics", "Messages", "mil_missions_core - Base mission classes", "mil_missions - Mission System", "Message Handlers", "mil_passive_sonar - Passive Sonar", "lqrrt - Path Planning", "pcodar - Point Cloud Object Detection", "mil_pneumatic_actuator - Pneumatic Actuator Board", "mil_poi - POI Handling", "remote_control_lib - Remote Control", "Resource Management", "rviz", "sabertooth2x12 - Sabertooth 2x12", "Serial", "Services", "Computer Vision", "Updating Documentation", "Installing Ubuntu 18.04 on a Mac with an M-series processor (M1)", "An Introduction to Asyncio", "Bash Style Guide (In Progress)", "Calibrating Cameras", "Contributing Guide", "C++ Style Guide", "Developer Tools", "Documentation Syntax", "Extension Support", "Gazebo Guide", "Getting Started", "Getting Help", "Software", "Noetic Migration", "Python Style Guide", "Ubuntu Password Reset Guide", "Writing Unit Tests with rostest", "Implementing GUI Based Tools Using rqt", "Installing Drivers for RTX 2080", "Scripts", "Working with Git Submodules", "Accessing Zobelisk", "SubjuGator Cameras", "Software Design", "Electrical Design", "Enabling SubjuGator", "SubjuGator", "Lessons from RoboSub 2019", "Lessons from RoboSub 2022", "Nav Tube", "PID Controller", "Subjugator Software Reference", "RoboSub competition", "Simulating SubjuGator", "Watercooling", "SubjuGator Testing Procedures", "Welcome to MIL!"], "terms": {"thi": [0, 4, 5, 6, 8, 9, 10, 12, 18, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 33, 34, 35, 38, 39, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 59, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 105, 106, 107, 108, 109, 110, 111, 113, 114, 115, 116], "page": [0, 7, 8, 9, 10, 37, 39, 48, 79, 84, 87, 90, 91, 93, 96, 97, 105, 106, 116], "contain": [0, 27, 30, 34, 35, 43, 46, 48, 50, 51, 57, 59, 66, 67, 68, 69, 74, 76, 77, 78, 84, 85, 89, 90, 94, 97, 98, 101, 107, 108, 109, 110, 111], "link": [0, 2, 4, 51, 79, 84, 86, 89, 90, 93, 94, 111], "inform": [0, 1, 9, 10, 43, 46, 50, 51, 57, 59, 63, 66, 70, 78, 84, 86, 87, 89, 93, 94, 98, 105, 108, 111, 113, 116], "variou": [0, 3, 6, 30, 32, 50, 64, 85, 86, 87, 89, 90, 92, 93, 97, 102, 103], "standard": [0, 33, 35, 56, 70, 78, 81, 85, 94, 101, 108], "mil": [0, 1, 2, 3, 4, 5, 8, 9, 10, 11, 17, 18, 31, 32, 34, 35, 37, 39, 42, 43, 46, 48, 57, 60, 71, 78, 79, 81, 84, 85, 86, 88, 89, 90, 91, 92, 93, 94, 99, 100, 101, 105, 106], "s": [0, 4, 8, 9, 10, 11, 17, 18, 23, 30, 33, 35, 36, 41, 43, 46, 47, 49, 50, 51, 57, 63, 64, 66, 67, 68, 69, 70, 72, 74, 77, 78, 79, 81, 83, 84, 85, 86, 87, 89, 91, 93, 94, 96, 97, 100, 101, 102, 105, 108, 109, 110, 111, 114, 115, 116], "our": [0, 5, 8, 9, 10, 11, 23, 24, 30, 33, 34, 35, 36, 37, 38, 40, 41, 43, 48, 67, 79, 81, 84, 85, 86, 87, 90, 91, 93, 94, 96, 100, 101, 108, 109, 111, 116], "copi": [0, 78, 79, 84, 89, 90, 91, 100, 101], "without": [0, 1, 4, 34, 35, 43, 45, 50, 73, 78, 84, 85, 86, 87, 88, 90, 96, 108], "text": [0, 48, 51, 61, 78, 84, 94], "can": [0, 1, 4, 9, 10, 11, 20, 21, 24, 25, 30, 31, 33, 34, 35, 38, 39, 41, 43, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 60, 61, 63, 64, 67, 68, 69, 70, 71, 74, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 102, 105, 108, 109, 110, 111, 113, 116], "found": [0, 9, 11, 30, 39, 43, 46, 50, 51, 57, 59, 61, 63, 64, 67, 68, 69, 70, 73, 77, 78, 79, 83, 84, 86, 87, 93, 94, 96, 108, 110, 111, 116], "below": [0, 2, 20, 39, 46, 47, 50, 51, 57, 78, 79, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 98, 101, 103, 104, 109, 111, 114], "two": [0, 7, 38, 40, 46, 51, 53, 57, 59, 63, 64, 66, 68, 70, 78, 80, 81, 83, 84, 85, 87, 89, 90, 94, 99, 100, 102, 105, 108, 110, 111], "differ": [0, 9, 25, 50, 57, 64, 68, 77, 78, 81, 83, 85, 87, 89, 90, 93, 94, 97, 116], "format": [0, 20, 46, 51, 59, 61, 63, 64, 67, 71, 76, 77, 78, 84, 86, 87, 90, 93, 97, 108, 111], "ar": [0, 1, 2, 4, 5, 7, 10, 21, 23, 27, 28, 29, 30, 33, 34, 35, 39, 41, 42, 43, 45, 46, 48, 50, 51, 52, 54, 55, 57, 59, 61, 63, 64, 65, 67, 68, 69, 70, 71, 74, 75, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 100, 101, 102, 107, 108, 109, 110, 111, 112, 113, 116], "provid": [0, 6, 10, 12, 22, 30, 34, 41, 44, 45, 46, 48, 50, 51, 54, 57, 64, 66, 67, 68, 69, 71, 78, 81, 84, 86, 89, 90, 93, 94, 96, 97, 106, 110, 111, 116], "an": [0, 1, 4, 7, 9, 10, 11, 18, 21, 24, 30, 33, 34, 35, 38, 39, 41, 43, 45, 46, 49, 50, 51, 52, 55, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 84, 85, 86, 87, 88, 89, 92, 93, 94, 96, 97, 98, 99, 100, 101, 103, 105, 106, 107, 108, 109, 111, 112, 113, 114], "svg": [0, 89], "adob": 0, "illustr": [0, 89], "file": [0, 10, 18, 30, 32, 34, 39, 48, 50, 57, 59, 60, 74, 78, 79, 80, 81, 82, 83, 86, 90, 93, 96, 99, 100, 105, 109, 110, 111], "With": [0, 4, 43, 67, 91, 97, 114], "name": [0, 4, 10, 20, 35, 48, 49, 50, 51, 52, 57, 59, 63, 64, 66, 67, 68, 71, 73, 75, 77, 78, 79, 80, 81, 84, 86, 87, 89, 90, 95, 96, 97, 102, 109, 111, 113], "For": [0, 4, 10, 33, 35, 39, 46, 48, 50, 51, 55, 57, 59, 64, 68, 70, 78, 79, 81, 84, 85, 87, 89, 90, 91, 93, 94, 96, 97, 98, 102, 103, 105, 108, 111, 115, 116], "shirt": 0, "other": [0, 1, 4, 9, 12, 21, 22, 23, 28, 30, 32, 34, 38, 39, 43, 45, 46, 50, 51, 54, 57, 62, 64, 65, 66, 69, 74, 76, 77, 78, 81, 84, 85, 86, 87, 89, 90, 91, 93, 96, 97, 100, 102, 105, 108, 109, 111, 116], "band": [0, 108], "displai": [0, 50, 59, 74, 76, 78, 79, 86, 89, 90], "we": [0, 1, 4, 9, 10, 11, 18, 21, 23, 24, 25, 27, 28, 29, 30, 31, 34, 35, 36, 39, 40, 41, 42, 43, 46, 47, 48, 62, 68, 79, 81, 83, 84, 85, 86, 87, 89, 90, 93, 94, 96, 97, 98, 99, 100, 101, 107, 108, 109, 111, 113, 116], "us": [0, 2, 4, 6, 9, 10, 18, 21, 24, 25, 28, 29, 31, 32, 33, 34, 35, 38, 39, 40, 41, 43, 44, 45, 46, 49, 50, 51, 52, 53, 54, 55, 57, 59, 60, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 77, 78, 79, 80, 82, 83, 84, 86, 87, 88, 91, 92, 93, 94, 95, 96, 99, 100, 102, 105, 107, 108, 109, 110, 111, 113, 114, 115, 116], "serpentin": 0, "commonli": [0, 45, 51, 58, 65, 86], "embrac": 0, "univers": [0, 11, 17, 35, 107, 116], "florida": [0, 11, 17, 108, 115, 116], "detail": [0, 28, 30, 83, 89, 90, 94], "work": [0, 2, 4, 10, 18, 39, 41, 43, 45, 51, 59, 67, 79, 80, 81, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 101, 105, 108, 109, 112, 114, 116], "along": [0, 4, 43, 57, 63, 67, 68, 71, 78, 87, 90, 96, 102, 110], "code": [0, 4, 30, 43, 46, 48, 50, 51, 52, 54, 63, 64, 65, 70, 78, 79, 84, 85, 86, 87, 90, 94, 96, 100, 106, 108, 111, 115], "websit": [0, 11, 40, 43, 79, 83, 86, 87, 98, 116], "The": [1, 4, 5, 6, 7, 9, 10, 11, 12, 17, 19, 28, 30, 31, 33, 34, 35, 38, 39, 40, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 88, 90, 91, 93, 96, 97, 98, 99, 101, 102, 104, 105, 108, 110, 111, 112, 113, 114, 115, 116], "machin": [1, 17, 30, 33, 38, 48, 50, 80, 88, 116], "intellig": [1, 17, 116], "lab": [1, 8, 9, 17, 35, 40, 78, 84, 90, 116], "ha": [1, 4, 10, 11, 23, 26, 28, 31, 33, 35, 40, 41, 43, 45, 46, 49, 50, 51, 52, 56, 57, 59, 63, 64, 67, 68, 69, 73, 74, 77, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 101, 106, 109, 111, 113, 115, 116], "uniqu": [1, 57, 59, 69, 74, 77, 78, 94], "student": [1, 43, 90, 116], "which": [1, 4, 10, 11, 21, 29, 30, 31, 33, 34, 35, 38, 39, 41, 42, 43, 45, 49, 50, 51, 52, 53, 57, 59, 63, 64, 66, 67, 68, 70, 71, 72, 74, 76, 77, 78, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 97, 98, 100, 102, 105, 108, 109, 111, 113, 116], "creat": [1, 4, 6, 18, 39, 40, 42, 44, 46, 51, 57, 59, 64, 66, 67, 69, 70, 72, 74, 75, 78, 79, 81, 83, 85, 90, 94, 96, 100, 111], "synergist": [1, 116], "environ": [1, 5, 10, 32, 33, 34, 44, 51, 53, 67, 86, 89, 90, 96, 101, 113, 114, 116], "dedic": [1, 43, 46, 85, 89, 94, 108, 116], "studi": [1, 116], "develop": [1, 6, 8, 9, 10, 11, 18, 19, 22, 23, 29, 34, 43, 48, 57, 73, 78, 84, 87, 91, 92, 96, 97, 101, 106, 108, 116], "autonom": [1, 10, 11, 12, 17, 40, 42, 46, 72, 85, 90, 91, 96, 106, 112, 116], "robot": [1, 4, 5, 8, 9, 10, 11, 17, 26, 27, 32, 34, 39, 42, 43, 44, 46, 50, 52, 63, 64, 65, 68, 69, 71, 72, 84, 85, 86, 88, 89, 90, 93, 96, 97, 99, 101, 105, 108, 111, 113, 116], "applic": [1, 51, 57, 68, 78, 89, 90, 97, 116], "process": [1, 7, 10, 30, 40, 42, 43, 46, 49, 50, 51, 57, 60, 63, 64, 67, 69, 71, 72, 77, 78, 79, 80, 83, 85, 86, 89, 90, 93, 94, 97, 109, 111, 114, 116], "new": [1, 4, 5, 10, 20, 24, 25, 27, 30, 39, 43, 50, 51, 52, 56, 57, 59, 62, 64, 67, 68, 69, 72, 74, 77, 78, 79, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 101, 102, 103, 108, 109, 111, 112, 113], "member": [1, 6, 10, 35, 39, 40, 43, 50, 57, 67, 69, 78, 81, 84, 85, 86, 87, 90, 93, 94, 102, 108, 109, 111, 116], "encourag": [1, 11, 43, 85, 116], "show": [1, 30, 43, 48, 57, 59, 63, 67, 78, 80, 84, 85, 86, 89, 90, 91, 93, 95, 96, 98, 113], "up": [1, 4, 7, 25, 30, 33, 34, 35, 42, 43, 46, 48, 51, 52, 55, 57, 64, 68, 71, 72, 74, 77, 78, 81, 85, 86, 87, 88, 89, 91, 93, 94, 95, 96, 97, 98, 100, 101, 105, 108, 111, 114, 116], "believ": [1, 52, 91, 101], "learn": [1, 40, 43, 47, 86, 91, 93, 97, 108, 110, 116], "occur": [1, 43, 50, 51, 56, 63, 64, 77, 78, 86, 100, 109, 111], "best": [1, 38, 45, 68, 90, 93, 94, 115, 116], "being": [1, 5, 7, 34, 42, 43, 49, 50, 51, 55, 57, 67, 68, 73, 78, 81, 85, 86, 89, 91, 94, 96, 108, 111], "inquisit": 1, "therefor": [1, 5, 43, 46, 57, 64, 77, 80, 81, 84, 86, 87, 90, 93, 94, 101, 105], "continu": [1, 32, 43, 50, 59, 67, 68, 79, 80, 84, 85, 89, 90, 96, 108, 109, 111, 116], "all": [1, 4, 6, 11, 18, 23, 24, 26, 30, 31, 33, 39, 43, 47, 48, 50, 51, 52, 53, 55, 56, 57, 59, 61, 63, 64, 67, 68, 70, 71, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 98, 100, 101, 107, 108, 109, 111, 113, 115, 116], "ask": [1, 9, 34, 39, 43, 46, 50, 51, 80, 84, 85, 86, 88, 89, 90, 93, 108, 111, 116], "fellow": [1, 85], "miler": [1, 84, 85, 87, 116], "about": [1, 9, 28, 35, 39, 40, 43, 46, 48, 50, 59, 63, 64, 67, 71, 77, 78, 80, 81, 84, 85, 86, 89, 90, 91, 93, 94, 96, 98, 106, 108, 111, 114, 116], "ongo": 1, "project": [1, 10, 11, 18, 77, 78, 85, 86, 88, 90, 96, 101, 111], "task": [1, 10, 39, 43, 46, 48, 51, 53, 64, 72, 84, 90, 96, 97, 99, 102, 107, 108, 112], "order": [1, 8, 24, 30, 35, 39, 44, 46, 50, 51, 55, 57, 63, 67, 72, 78, 90, 91, 94, 101, 108, 109, 110, 111, 116], "subjug": [1, 7, 11, 24, 25, 31, 33, 39, 89, 91, 101, 103, 108, 109, 110, 114], "navig": [1, 10, 11, 31, 39, 40, 43, 44, 47, 48, 56, 79, 87, 90, 95, 97, 107, 112], "As": [1, 9, 35, 38, 39, 51, 57, 81, 89, 94, 96, 108], "spring": [1, 108], "2022": [1, 7, 42, 46, 106, 112], "semest": [1, 43, 108, 116], "each": [1, 4, 5, 7, 30, 35, 38, 43, 50, 51, 56, 57, 59, 61, 63, 64, 67, 68, 69, 76, 78, 79, 81, 83, 85, 87, 89, 93, 94, 96, 107, 108, 110, 111, 112, 116], "team": [1, 8, 9, 17, 37, 39, 42, 43, 46, 86, 92, 101, 107, 108, 116], "its": [1, 4, 11, 29, 44, 49, 50, 51, 52, 54, 62, 63, 64, 66, 67, 68, 69, 76, 78, 81, 85, 86, 87, 89, 90, 94, 96, 97, 100, 101, 105, 110, 111, 112], "own": [1, 45, 79, 84, 86, 89, 90, 91, 94, 100, 101, 105, 108, 116], "schedul": [1, 51, 81, 87, 108], "strategi": 1, "complet": [1, 4, 6, 10, 24, 30, 43, 46, 47, 51, 57, 68, 70, 77, 78, 79, 80, 90, 93, 94, 96, 99, 108, 109, 111, 112], "softwar": [1, 9, 17, 19, 22, 30, 39, 40, 41, 42, 78, 80, 86, 87, 89, 90, 91, 93, 96, 101, 106, 113, 116], "current": [1, 2, 11, 21, 24, 26, 29, 30, 39, 41, 43, 46, 50, 51, 56, 57, 63, 64, 66, 68, 70, 71, 72, 77, 81, 84, 88, 89, 90, 93, 94, 97, 101, 108, 109, 111], "mondai": 1, "fridai": 1, "highli": [1, 81, 84, 86, 90], "come": [1, 9, 45, 50, 57, 63, 78, 85, 86, 90, 91, 93, 94, 102, 105, 108, 114, 116], "In": [1, 4, 6, 12, 20, 24, 25, 33, 39, 48, 50, 51, 57, 62, 67, 80, 81, 85, 86, 87, 89, 90, 91, 94, 96, 97, 100, 107, 113], "exchang": [1, 67], "idea": [1, 4, 43, 84, 85, 93, 94, 113, 116], "help": [1, 9, 10, 11, 30, 35, 39, 40, 41, 42, 43, 44, 47, 48, 50, 51, 57, 79, 84, 85, 86, 88, 90, 92, 93, 94, 96, 97, 99, 100, 101, 102, 105, 108, 114, 116], "get": [1, 8, 10, 11, 17, 33, 36, 37, 38, 40, 41, 43, 46, 48, 50, 51, 52, 53, 61, 63, 64, 67, 68, 69, 71, 73, 74, 77, 78, 79, 80, 86, 87, 92, 94, 95, 96, 98, 100, 105, 108, 109, 110, 111, 115, 116], "set": [1, 5, 7, 10, 33, 42, 43, 44, 45, 46, 48, 49, 50, 51, 59, 63, 64, 67, 68, 69, 70, 71, 72, 75, 76, 77, 78, 81, 82, 83, 86, 88, 89, 93, 94, 96, 97, 101, 108, 111, 114], "who": [1, 6, 9, 35, 43, 51, 57, 64, 79, 85, 91, 97, 108, 109, 116], "abl": [1, 18, 22, 29, 43, 44, 51, 52, 53, 57, 79, 83, 85, 86, 88, 90, 91, 93, 96, 105, 107, 108], "attend": [1, 43], "reach": [1, 31, 68, 84, 101, 114, 116], "out": [1, 10, 31, 34, 38, 39, 43, 47, 48, 50, 51, 57, 59, 78, 79, 81, 84, 85, 86, 87, 89, 90, 91, 96, 99, 100, 105, 108, 109, 111, 114, 116], "ani": [1, 4, 9, 18, 21, 30, 34, 38, 40, 42, 43, 46, 48, 49, 50, 51, 57, 61, 62, 63, 64, 68, 73, 76, 77, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 102, 108, 109, 111, 113, 114, 116], "lead": [1, 9, 38, 43, 47, 78, 91, 96, 101, 108, 109], "what": [1, 10, 11, 22, 27, 30, 43, 48, 49, 51, 57, 64, 72, 77, 78, 79, 81, 84, 85, 86, 87, 91, 93, 94, 96, 105, 108, 112, 113], "wa": [1, 6, 11, 25, 43, 46, 49, 50, 51, 52, 53, 56, 57, 58, 59, 63, 64, 67, 68, 70, 71, 77, 78, 81, 83, 84, 85, 87, 89, 90, 93, 94, 98, 107, 108, 109, 110, 111, 116], "share": [1, 9, 10, 30, 31, 43, 50, 51, 57, 78, 86, 90, 108, 111, 116], "alwai": [1, 47, 50, 51, 57, 68, 78, 81, 84, 85, 89, 90, 91, 93, 94, 108], "been": [1, 10, 28, 31, 43, 46, 50, 51, 52, 57, 59, 63, 68, 69, 78, 80, 84, 86, 89, 93, 100, 101, 108, 109, 111, 115, 116], "strongli": [1, 112], "commit": [1, 30, 48, 85, 90, 91, 93, 100, 116], "document": [2, 4, 8, 11, 17, 18, 26, 37, 41, 42, 43, 51, 57, 64, 70, 78, 81, 85, 89, 91, 92, 94, 96, 97, 105, 108, 109, 111], "longer": [2, 51, 78, 90, 94, 105], "mai": [2, 30, 35, 38, 39, 43, 46, 50, 51, 52, 59, 63, 70, 77, 78, 79, 81, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 100, 105, 108, 109, 110, 111], "futur": [2, 42, 43, 51, 63, 66, 67, 79, 93, 94, 109, 111], "reviv": 2, "similar": [2, 4, 10, 30, 51, 68, 79, 81, 85, 86, 87, 89, 90, 91, 94, 116], "indi": 2, "av": 2, "some": [3, 4, 10, 19, 27, 30, 33, 35, 38, 39, 43, 45, 50, 51, 52, 59, 61, 67, 68, 77, 81, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 99, 100, 105, 108, 111, 116], "technic": [3, 11, 46, 90, 116], "info": [3, 40, 46, 48, 50, 59, 78, 84, 86, 105, 106, 111], "odom_estim": 3, "kalman": [3, 4], "filter": [3, 4, 39, 67, 69, 78, 102, 111], "passiv": [3, 60, 91], "sonar": [3, 60, 88, 91], "pneumat": [3, 60], "actuat": [3, 10, 57, 60, 64, 72, 113], "unscent": 4, "fuse": [4, 10], "acceleromet": [4, 109], "gyroscop": [4, 107, 108, 109], "magnetomet": 4, "dvl": [4, 10, 91, 108, 109, 110, 111], "depth": [4, 89, 108, 111], "sensor": [4, 10, 22, 41, 43, 88, 89, 108, 109, 111, 115], "measur": [4, 10, 19, 21, 50, 56, 78, 109, 111], "estim": [4, 10, 50, 63, 67, 77, 78, 107, 111], "move": [4, 10, 20, 25, 36, 44, 49, 50, 56, 68, 71, 77, 78, 81, 83, 86, 89, 90, 91, 93, 101, 105, 108, 109, 111, 114], "platform": [4, 9, 38, 39, 46, 63, 64, 108, 114, 116], "pose": [4, 10, 49, 51, 66, 68, 77, 78, 89, 111], "If": [4, 7, 9, 22, 25, 30, 34, 38, 39, 40, 41, 43, 46, 48, 49, 50, 51, 52, 57, 59, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 96, 97, 98, 100, 101, 102, 105, 108, 109, 111, 112, 115, 116], "you": [4, 5, 9, 11, 25, 27, 30, 31, 33, 34, 35, 39, 40, 45, 48, 50, 51, 52, 55, 57, 59, 64, 67, 68, 70, 71, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 105, 108, 109, 110, 111, 112, 113, 114, 116], "want": [4, 5, 30, 31, 39, 40, 43, 48, 59, 62, 68, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 91, 93, 94, 97, 98, 100, 105, 109, 116], "understand": [4, 10, 43, 79, 81, 87, 90, 91, 93, 94, 96, 97, 102, 108], "math": [4, 43], "behind": [4, 43, 51, 86, 93, 94, 111], "i": [4, 48, 78, 84, 85, 93, 94, 98, 109, 111], "recommend": [4, 40, 41, 48, 50, 80, 81, 84, 86, 89, 90, 98, 109, 112], "first": [4, 9, 11, 18, 24, 35, 39, 46, 51, 55, 57, 59, 63, 66, 67, 68, 70, 75, 77, 78, 79, 80, 81, 82, 84, 85, 90, 91, 93, 94, 96, 98, 108, 109, 111, 116], "read": [4, 6, 11, 40, 51, 52, 56, 57, 64, 67, 70, 76, 79, 85, 86, 87, 93, 94, 96, 108, 112, 116], "paper": [4, 78], "integr": [4, 19, 32, 43, 57, 73, 84, 85, 86, 97], "gener": [4, 5, 9, 10, 25, 39, 44, 46, 47, 48, 49, 50, 51, 53, 54, 57, 59, 64, 68, 72, 76, 77, 78, 79, 81, 83, 85, 86, 87, 101, 106, 108, 111, 113, 116], "fusion": 4, "algorithm": [4, 21, 28, 29, 63, 67, 78, 94], "sound": [4, 67, 100, 112], "state": [4, 10, 19, 28, 35, 41, 60, 64, 68, 70, 72, 107, 111, 113], "represent": [4, 50, 51, 62, 63, 77, 78], "through": [4, 9, 35, 39, 40, 41, 45, 46, 48, 50, 51, 57, 59, 61, 63, 67, 68, 70, 74, 78, 79, 80, 81, 84, 85, 86, 87, 88, 90, 91, 93, 94, 97, 99, 101, 102, 105, 108, 109, 111, 112], "encapsul": 4, "util": [4, 5, 24, 25, 81, 85, 90, 93], "jason": 4, "gnc": [4, 110], "note": [4, 5, 7, 25, 27, 32, 40, 43, 48, 50, 51, 53, 57, 64, 71, 76, 81, 84, 85, 86, 87, 89, 90, 93, 94, 100, 109], "describ": [4, 50, 60, 64, 66, 71, 77, 78, 84, 87, 89, 90, 91, 94], "specif": [4, 9, 10, 30, 40, 41, 42, 46, 51, 52, 57, 59, 63, 64, 68, 70, 71, 77, 78, 80, 81, 84, 85, 86, 89, 90, 91, 94, 96, 98, 100, 108, 111, 116], "relev": [4, 46, 50, 57, 67, 68, 71, 74, 77, 78, 89, 100, 111], "rel": [4, 22, 63, 77, 78, 84, 94, 108, 111], "direct": [4, 63, 67, 68, 74, 77, 78, 87, 102, 109, 111], "implement": [4, 19, 43, 50, 51, 52, 57, 63, 64, 65, 68, 69, 75, 76, 78, 92, 94, 96, 108, 111], "too": [4, 21, 35, 50, 57, 63, 85, 87, 90, 108, 111, 116], "much": [4, 9, 43, 63, 78, 81, 85, 86, 87, 90, 93, 96, 108], "extra": [4, 40, 78, 85, 86, 109, 111, 114], "boilerpl": 4, "mostli": [4, 10, 39, 96, 108], "thank": [4, 93], "requir": [4, 9, 12, 21, 28, 29, 43, 50, 68, 78, 79, 81, 83, 84, 85, 86, 88, 93, 96, 97, 101, 108, 114, 116], "explicit": [4, 94], "calcul": [4, 50, 57, 62, 70, 78, 94, 96, 111], "huge": [4, 85], "jacobian": [4, 68], "matric": 4, "macro": 4, "metaprogram": 4, "oper": [4, 21, 34, 42, 50, 51, 57, 68, 70, 71, 77, 78, 79, 80, 85, 90, 93, 94, 96, 97, 108, 111], "section": [4, 68, 84, 85, 87, 89, 90, 93, 94, 97, 98], "5": [4, 25, 27, 41, 50, 51, 53, 59, 63, 67, 68, 71, 73, 78, 85, 91, 94, 108, 111, 113, 115], "There": [4, 30, 41, 80, 81, 85, 86, 87, 89, 93, 94, 105, 108, 110, 112, 116], "few": [4, 34, 43, 44, 79, 84, 85, 88, 93, 96, 108, 109, 111], "weird": [4, 85, 94], "surpris": [4, 91], "thing": [4, 23, 26, 34, 38, 48, 52, 68, 79, 84, 85, 86, 87, 90, 91, 93, 96, 99, 101, 108, 116], "veri": [4, 10, 43, 45, 51, 52, 81, 85, 87, 90, 91, 93, 94, 96, 108, 109, 110, 116], "concis": 4, "summari": 4, "kei": [4, 51, 57, 59, 71, 72, 78, 85, 86, 90, 94, 101, 111, 115], "concept": [4, 51], "abov": [4, 43, 49, 50, 57, 63, 78, 81, 85, 87, 90, 91, 93, 100, 108, 111, 116], "central": [4, 97], "space": [4, 61, 63, 68, 78, 80, 82, 85, 90, 111, 113], "local": [4, 22, 29, 30, 33, 57, 68, 69, 73, 79, 80, 84, 86, 88, 90, 94, 112], "look": [4, 5, 19, 46, 68, 71, 77, 81, 84, 85, 87, 89, 90, 93, 94, 96, 105, 116], "like": [4, 5, 9, 11, 25, 30, 35, 39, 43, 45, 50, 51, 59, 63, 67, 69, 71, 76, 77, 78, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100, 101, 102, 105, 108, 109, 116], "vector": [4, 51, 62, 63, 66, 67, 68, 69, 72, 74, 77, 78, 85, 109, 111], "global": [4, 10, 25, 57, 68, 69, 71, 73, 85, 89, 94], "have": [4, 9, 27, 28, 31, 33, 34, 35, 38, 39, 42, 43, 45, 46, 47, 48, 50, 51, 57, 59, 64, 66, 67, 68, 69, 71, 78, 79, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 101, 102, 107, 108, 109, 110, 111, 113, 114, 116], "more": [4, 9, 10, 29, 30, 38, 39, 43, 50, 51, 52, 55, 57, 59, 67, 68, 71, 77, 78, 81, 83, 84, 85, 86, 87, 90, 91, 93, 94, 96, 100, 105, 108, 109, 113, 114, 116], "complic": [4, 85], "behavior": [4, 12, 24, 49, 50, 52, 57, 64, 65, 67, 68, 76, 78, 79, 85, 89, 94, 97, 108, 113], "around": [4, 10, 30, 41, 43, 50, 63, 67, 71, 74, 77, 78, 79, 83, 84, 85, 86, 87, 91, 101, 108, 111, 114], "infinitesim": 4, "point": [4, 10, 21, 43, 45, 46, 49, 60, 66, 67, 68, 71, 72, 74, 77, 78, 81, 84, 89, 90, 93, 94, 100, 109, 111, 114], "call": [4, 5, 25, 46, 50, 51, 55, 57, 59, 64, 67, 68, 69, 70, 71, 72, 78, 81, 84, 90, 94, 96, 97, 100, 101, 108, 109, 111, 113], "tangent": 4, "dimens": [4, 63, 68, 72, 77, 111], "characterist": [4, 61], "re": [4, 9, 30, 35, 39, 48, 68, 69, 79, 84, 85, 86, 87, 90, 91, 93, 105, 111, 112, 116], "deal": [4, 35, 111], "exampl": [4, 5, 10, 33, 40, 46, 48, 50, 51, 54, 55, 59, 64, 68, 71, 78, 81, 83, 85, 86, 87, 90, 91, 93, 94, 96, 97, 100, 102, 108], "unit": [4, 35, 38, 41, 63, 77, 78, 85, 92, 94, 109], "quaternion": [4, 51, 62, 66, 68, 78], "three": [4, 11, 46, 57, 63, 77, 78, 81, 89, 94, 102, 109, 111, 116], "dimension": [4, 63, 68, 78], "isn": [4, 39, 50, 87, 93, 111], "t": [4, 25, 30, 31, 35, 39, 43, 46, 50, 51, 57, 61, 67, 68, 78, 79, 81, 84, 85, 86, 87, 89, 90, 93, 94, 96, 100, 105, 108, 109, 111], "rotat": [4, 10, 62, 63, 66, 68, 72, 78, 85, 89, 107, 108, 109, 111], "degre": [4, 78, 110, 111], "freedom": [4, 96, 97, 110], "e": [4, 21, 46, 48, 61, 79, 82, 85, 94], "g": [4, 21, 48, 63, 66, 74, 82, 111], "roll": [4, 109, 110, 111, 115], "pitch": [4, 109, 110], "yaw": [4, 68, 109, 110, 111], "euler": [4, 62, 111], "angl": [4, 20, 68, 78, 89, 107, 111], "n": [4, 46, 67, 68, 69, 78, 97, 111], "3": [4, 21, 46, 50, 51, 63, 66, 67, 68, 78, 81, 94, 96, 108, 109, 111], "scalar": [4, 68, 78], "1": [4, 5, 7, 15, 34, 41, 45, 46, 48, 50, 51, 53, 57, 59, 61, 63, 67, 68, 72, 73, 74, 75, 78, 81, 87, 93, 94, 96, 98, 108, 109, 111], "mind": [4, 43, 55, 79, 94], "defin": [4, 51, 57, 67, 68, 78, 89, 97, 111], "abstract": [4, 59, 67, 78, 85], "over": [4, 5, 7, 10, 30, 34, 35, 43, 45, 46, 50, 51, 52, 54, 57, 59, 63, 68, 69, 75, 78, 84, 85, 86, 90, 93, 94, 96, 97, 101, 105, 107, 108, 109, 111], "allow": [4, 6, 8, 29, 30, 33, 43, 45, 46, 50, 51, 52, 57, 64, 68, 69, 70, 72, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 89, 90, 94, 96, 97, 100, 108, 109, 111, 114, 116], "treat": [4, 110], "them": [4, 24, 35, 43, 51, 55, 68, 79, 81, 84, 85, 86, 87, 88, 89, 90, 93, 94, 96, 97, 99, 101, 105, 107, 108, 111, 112, 116], "given": [4, 10, 28, 30, 33, 34, 46, 50, 51, 52, 64, 66, 68, 69, 70, 71, 73, 75, 78, 111, 115], "find": [4, 35, 38, 39, 40, 43, 45, 46, 51, 59, 62, 63, 67, 68, 69, 71, 77, 78, 79, 80, 83, 85, 86, 87, 89, 90, 91, 93, 94, 108, 109, 111, 116], "d": [4, 30, 39, 46, 57, 61, 78, 79, 84, 85, 86, 90, 93, 94, 101, 111, 116], "box": [4, 32, 33, 35, 36, 38, 42, 43, 47, 68, 78, 87, 97, 105, 107, 108, 115], "plu": [4, 68, 87, 109], "offset": [4, 63], "plane": [4, 26, 35, 43, 63, 77], "manifold_point": 4, "x": [4, 33, 50, 51, 57, 62, 63, 64, 66, 68, 71, 72, 76, 77, 78, 84, 85, 90, 93, 94, 97, 109, 110, 111], "new_manifold_point": 4, "minu": 4, "invers": [4, 51, 111], "write": [4, 57, 61, 70, 74, 75, 76, 81, 85, 87, 89, 90, 91, 92, 93, 94, 108, 111, 115], "handl": [4, 45, 46, 50, 51, 53, 55, 57, 59, 60, 67, 75, 78, 85, 94, 97, 108, 109, 111, 113], "from": [4, 7, 10, 24, 25, 31, 33, 34, 35, 36, 38, 42, 45, 46, 50, 51, 53, 54, 56, 57, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 100, 101, 102, 106, 109, 110, 111, 116], "assum": [4, 33, 50, 57, 67, 78, 94, 111], "suffici": [4, 78, 96], "close": [4, 6, 30, 47, 51, 52, 64, 70, 71, 78, 84, 86, 87, 107, 111, 115], "act": [4, 51, 68, 71], "roughli": [4, 34, 94, 109], "linear": [4, 10, 38, 63, 66, 68, 72, 111], "between": [4, 6, 17, 19, 24, 30, 34, 46, 50, 51, 57, 59, 63, 67, 68, 77, 78, 85, 86, 89, 90, 93, 97, 101, 107, 108, 109, 116], "just": [4, 24, 50, 64, 78, 110, 111], "take": [4, 35, 48, 51, 64, 67, 68, 73, 76, 79, 81, 87, 89, 90, 91, 93, 94, 101, 108, 110, 111], "chang": [4, 20, 29, 30, 34, 46, 48, 50, 52, 64, 71, 75, 77, 78, 85, 86, 89, 90, 91, 92, 95, 96, 97, 101, 108, 109, 111, 115], "addit": [4, 12, 59, 78, 82, 93, 97, 111], "subtract": [4, 51, 68, 94, 96], "valu": [4, 20, 46, 49, 50, 51, 57, 59, 61, 63, 64, 66, 67, 68, 70, 71, 72, 73, 74, 77, 78, 81, 85, 86, 94, 96, 101, 108, 109, 110, 111], "let": [4, 39, 81, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 101, 114], "perturb": [4, 78], "distribut": [4, 88], "store": [4, 7, 9, 10, 30, 31, 34, 36, 39, 43, 46, 50, 51, 57, 59, 63, 68, 69, 74, 76, 78, 89, 94, 101, 111], "mean": [4, 57, 67, 71, 77, 78, 79, 85, 86, 93, 96, 101, 108, 109, 111], "covari": [4, 63, 66, 77], "dxd": 4, "matrix": [4, 62, 66, 68, 78, 85, 109, 111], "includ": [4, 6, 8, 9, 11, 35, 39, 51, 52, 54, 57, 68, 71, 77, 78, 79, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 108, 111, 116], "h": [4, 33, 46, 59, 67, 68, 85, 111], "cartesian": 4, "product": [4, 28, 41, 62], "give": [4, 55, 67, 68, 71, 78, 84, 88, 89, 90, 93, 94, 96, 105, 109], "sever": [4, 6, 9, 10, 11, 39, 43, 50, 51, 59, 63, 68, 71, 72, 78, 89, 94, 96, 101, 108, 116], "lump": 4, "togeth": [4, 7, 43, 51, 63, 78, 81, 85, 87, 90, 94, 108, 111, 116], "struct": [4, 50, 57, 63, 78, 85], "except": [4, 18, 50, 53, 59, 60, 61, 67, 71, 73, 78, 81, 87, 89, 93, 107], "also": [4, 12, 30, 35, 38, 39, 41, 42, 44, 45, 50, 53, 57, 59, 61, 63, 64, 68, 78, 81, 82, 84, 85, 86, 89, 90, 91, 93, 94, 96, 97, 100, 108, 109, 110, 111, 113, 116], "correspond": [4, 57, 68, 78, 111], "compos": [4, 30, 62], "exist": [4, 21, 50, 51, 52, 53, 59, 63, 68, 73, 79, 85, 86, 94, 97, 102, 109], "ones": [4, 85, 86, 109], "mayb": [4, 43, 87, 90], "even": [4, 35, 38, 43, 68, 79, 81, 84, 86, 91, 93, 94, 96, 108], "build": [4, 43, 48, 79, 84, 87, 90, 91, 93, 96, 101, 115], "repres": [4, 27, 46, 49, 50, 51, 57, 59, 62, 63, 64, 66, 67, 68, 69, 70, 71, 74, 75, 77, 78, 81, 85, 87, 90, 93, 94, 108, 111], "variabl": [4, 33, 49, 51, 57, 67, 68, 94, 101], "try": [4, 34, 48, 50, 52, 53, 78, 81, 84, 85, 86, 87, 90, 91, 93, 94, 101, 105, 109, 111, 113], "These": [4, 31, 43, 45, 50, 54, 57, 60, 64, 76, 78, 81, 85, 86, 87, 88, 89, 93, 94, 96, 100, 102, 105, 108, 109, 114, 116], "transform": [4, 62, 67, 69, 71, 77, 78, 111], "unscented_transform": 4, "certain": [4, 10, 51, 59, 81, 84, 88, 90, 94, 108], "both": [4, 10, 27, 34, 35, 47, 48, 50, 51, 57, 59, 62, 68, 70, 78, 81, 83, 85, 86, 87, 89, 93, 109], "fashion": [4, 51, 94, 108], "due": [4, 35, 50, 51, 68, 84, 86, 108, 111], "previous": [4, 24, 51, 52, 90, 109], "support": [4, 11, 51, 57, 63, 74, 81, 86, 87, 90, 93, 94, 96, 108, 111, 116], "raw": [4, 57, 67, 78, 83, 102], "gp": [4, 10, 34, 41, 109], "intern": [4, 32, 38, 50, 63, 68, 69, 70, 71, 74, 78, 94], "held": [4, 46], "predict": [4, 63], "function": [4, 8, 24, 25, 30, 33, 34, 43, 44, 50, 56, 57, 59, 64, 68, 69, 70, 71, 73, 86, 87, 89, 91, 93, 96, 100, 108, 109, 110], "written": [4, 43, 61, 78, 84, 86, 89, 90, 91, 93, 96, 110], "need": [4, 6, 7, 9, 30, 34, 35, 38, 39, 40, 43, 45, 46, 50, 51, 52, 59, 64, 66, 67, 69, 71, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 100, 105, 108, 109, 110, 111], "compens": [4, 109], "fictiti": 4, "forc": [4, 63, 66, 68, 72, 89, 96, 111, 114], "aris": 4, "when": [4, 7, 30, 31, 35, 39, 41, 43, 46, 48, 50, 51, 52, 53, 55, 56, 57, 59, 64, 67, 68, 70, 71, 72, 77, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 105, 108, 109, 111, 113, 114, 116], "refer": [4, 35, 54, 67, 68, 78, 79, 81, 83, 86, 87, 91, 110], "frame": [4, 25, 63, 66, 67, 68, 69, 71, 74, 77, 78, 108, 111], "ecef": [4, 25, 77], "back": [4, 10, 24, 25, 43, 45, 46, 59, 69, 77, 84, 89, 90, 91, 95, 111], "forth": 4, "pretti": [4, 50, 51, 76, 86, 93, 94, 108, 111], "often": [4, 10, 34, 38, 43, 49, 51, 57, 85, 89, 91, 94, 96], "inertial_from_ecef": 4, "howev": [4, 30, 43, 48, 50, 51, 52, 57, 79, 81, 83, 85, 86, 89, 90, 93, 94, 96, 100, 111, 113], "said": [4, 68], "neglig": 4, "detect": [4, 5, 46, 60, 63, 67, 77, 84], "qualiti": [4, 30, 43, 57, 84, 96, 116], "difficult": [4, 83, 91, 96, 108, 109], "were": [4, 43, 64, 70, 77, 78, 81, 84, 94, 108], "rewritten": 4, "would": [4, 9, 21, 39, 43, 67, 80, 81, 85, 94, 100, 108], "probabl": [4, 19, 78, 94], "enu": [4, 63, 71, 77], "clearer": [4, 85, 87], "result": [4, 9, 49, 51, 55, 57, 63, 64, 66, 67, 69, 75, 78, 79, 81, 85, 89, 90, 94, 96, 105, 110, 115, 116], "roslaunch": [5, 20, 24, 25, 27, 48, 52, 89, 90, 101, 109, 110, 113], "subjugator_launch": [5, 89, 90, 101, 109, 110, 113], "passive_sonar": 5, "download": [5, 30, 34, 61, 80, 87, 90, 98], "oof": 5, "bin": [5, 67, 82, 86, 97], "rosrun": [5, 74, 83, 96, 99], "mil_tool": [5, 24, 25, 58, 59, 61, 62, 66, 73, 74, 75, 76, 99], "stream_tcp_dump": 5, "batch_siz": 5, "960000": 5, "advance_on_arrow": 5, "true": [5, 25, 46, 48, 50, 51, 53, 57, 59, 61, 63, 64, 68, 70, 77, 78, 81, 84, 85, 93, 96, 100, 109, 111], "rate": [5, 21, 22, 25, 51, 57, 63, 67, 70, 73, 75, 78], "10": [5, 25, 27, 51, 59, 67, 68, 78, 81, 85, 96, 108, 114], "mil_common": [5, 76], "mil_ros_tool": [5, 59, 66, 74], "plotter": [5, 67, 97], "py": [5, 57, 78, 83, 93, 94, 96, 97, 99], "plot": [5, 59, 67, 68], "batch": [5, 67], "topic": [5, 25, 46, 50, 51, 53, 56, 59, 67, 68, 71, 73, 74, 78, 83, 91, 99, 102, 111, 116], "cv2": [5, 59, 78], "imag": [5, 22, 60, 68, 78, 83, 85, 88, 89, 90, 95, 97, 102, 111, 112, 113], "most": [5, 10, 21, 43, 46, 48, 50, 51, 54, 56, 69, 78, 79, 81, 85, 86, 87, 89, 90, 91, 93, 95, 96, 97, 101, 106, 108, 111], "processiong": 5, "max": [5, 22, 68, 69], "convolut": 5, "gradient": [5, 67], "caus": [5, 30, 34, 51, 52, 68, 81, 85, 90, 93, 94, 96, 107, 108], "recent": [5, 46, 50, 51, 56, 69, 78, 90, 109, 111], "onli": [5, 22, 26, 33, 43, 45, 50, 51, 57, 59, 64, 67, 68, 76, 78, 79, 81, 83, 84, 85, 86, 88, 89, 90, 91, 93, 94, 105, 108, 109, 111, 113], "0": [5, 27, 33, 46, 48, 50, 51, 53, 57, 59, 62, 63, 68, 69, 71, 73, 74, 78, 81, 85, 87, 89, 91, 93, 94, 96, 98, 111], "trigger_debug": [5, 67], "should": [5, 7, 10, 35, 38, 39, 43, 45, 46, 47, 48, 50, 51, 57, 59, 62, 64, 66, 67, 68, 69, 71, 74, 76, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 98, 101, 105, 107, 108, 109, 111, 113, 114, 115], "someth": [5, 51, 64, 67, 84, 85, 90, 91, 93, 109, 111], "30khz": [5, 67], "sample_at_trigger_debug": 5, "open": [5, 6, 35, 44, 45, 70, 83, 84, 85, 87, 89, 90, 93, 96, 97, 103, 108, 109, 111], "filter_debug": [5, 67], "rviz": [5, 20, 24, 25, 33, 60, 69, 111], "Then": [5, 41, 45, 55, 80, 85, 87, 89, 90, 93, 94, 101, 105, 109], "panel": [5, 20, 24, 25, 27, 34, 48, 71, 90, 113], "rosservic": 5, "filter_debug_trigg": [5, 67], "go": [5, 10, 18, 23, 25, 35, 43, 48, 68, 81, 84, 85, 86, 87, 89, 90, 93, 95, 97, 105, 108, 109, 111, 112, 113, 115, 116], "see": [5, 20, 27, 30, 50, 51, 57, 59, 68, 78, 79, 80, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 101, 103, 105, 109, 111], "crop": 5, "rang": [5, 50, 57, 63, 67, 85, 93, 94, 110, 111], "vertic": [5, 63, 111], "line": [5, 12, 45, 74, 78, 80, 82, 84, 86, 87, 89, 93, 96, 97], "ping_loc": [5, 67], "samples_debug": 5, "where": [5, 9, 10, 25, 30, 36, 39, 40, 45, 46, 48, 51, 61, 64, 67, 68, 69, 74, 77, 78, 79, 81, 86, 87, 89, 90, 91, 93, 94, 96, 100, 105, 108, 109, 111, 113, 116], "channel": [5, 63, 67, 78, 91], "90deg": 5, "right": [5, 7, 20, 59, 67, 68, 77, 78, 84, 85, 86, 87, 90, 93, 96, 97, 102, 109, 111, 116], "delai": [5, 43, 72, 94], "cross_correlation_debug": 5, "neg": [5, 21, 51, 111], "paramet": [5, 27, 46, 50, 51, 53, 56, 57, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 83, 85, 87, 89, 93, 94, 96, 111, 113], "expect": [5, 51, 57, 64, 68, 70, 78, 79, 81, 96], "tuin": 5, "param": [5, 68, 78, 87, 111], "initi": [5, 19, 28, 46, 49, 50, 51, 55, 57, 59, 68, 69, 71, 72, 78, 85, 91, 97, 100, 108, 111, 113], "yaml": [5, 86, 109, 110, 111], "roscd": [5, 99], "cp": 5, "config": [5, 34, 69, 86, 89, 100, 110, 111], "my_passive_sonar": 5, "rose": [5, 24, 25], "whatev": [5, 41, 48, 64, 81, 84, 85, 90, 109], "config_fil": 5, "ie": [5, 48, 51, 57, 70, 77, 81, 85, 87], "rosparam": [5, 57], "target_frequ": 5, "25000": 5, "reset": [5, 45, 67, 68, 69, 72, 76, 91, 92, 111], "servic": [5, 25, 50, 52, 59, 60, 67, 69, 70, 71, 72, 73, 85, 97], "tcp": [5, 46, 54, 67], "dump": [5, 50, 111], "run": [5, 10, 27, 31, 32, 33, 43, 49, 50, 51, 52, 53, 56, 57, 59, 63, 64, 65, 67, 68, 72, 74, 77, 80, 81, 83, 84, 85, 86, 87, 88, 91, 94, 96, 97, 98, 99, 100, 101, 103, 105, 107, 108, 109, 110, 111, 114], "mil_passive_sonar": [5, 59, 60, 63, 91], "sylphase_sonar_ros_bridg": 5, "_port": 5, "10001": 5, "_ip": 5, "127": 5, "either": [5, 38, 50, 51, 52, 55, 57, 59, 63, 67, 68, 78, 79, 81, 84, 85, 86, 87, 94, 95, 108], "stream": [5, 48, 57, 59, 67, 113], "driver": [5, 23, 57, 67, 70, 75, 88, 91, 92, 109], "port": [5, 7, 34, 45, 46, 57, 67, 70, 75, 93, 109], "ip": [5, 33, 45, 46, 63, 67, 101], "On": [5, 34, 51, 86, 98, 116], "sub8": [5, 109, 110], "actual": [5, 25, 43, 44, 48, 49, 52, 57, 63, 64, 71, 72, 77, 79, 81, 84, 85, 88, 90, 96, 97, 100, 108, 113], "cd": [5, 79, 90, 100], "sylphas": [5, 21, 67, 108], "publish": [5, 24, 46, 50, 54, 55, 56, 59, 67, 68, 69, 71, 72, 74, 78, 81, 97, 102, 111], "sure": [5, 9, 18, 34, 38, 39, 43, 48, 68, 79, 83, 84, 85, 87, 89, 90, 91, 93, 97, 108, 109, 111, 114, 115], "rostop": [5, 20, 27, 48, 59, 101, 113], "echo": [5, 20, 48, 57, 61, 101, 113], "respons": [6, 8, 9, 37, 39, 46, 50, 51, 57, 59, 63, 67, 68, 69, 70, 71, 74, 77, 108, 109, 110, 111, 116], "control": [6, 17, 23, 29, 30, 38, 41, 49, 50, 51, 55, 57, 60, 63, 68, 77, 79, 85, 86, 89, 90, 93, 97, 106, 116], "valv": [6, 70, 107, 108, 111], "power": [6, 7, 10, 34, 45, 47, 51, 63, 87, 96, 97, 108, 109, 111, 114, 115], "system": [6, 8, 9, 10, 11, 23, 24, 28, 32, 41, 42, 43, 44, 46, 48, 49, 52, 57, 60, 63, 64, 67, 68, 69, 70, 71, 72, 79, 80, 85, 89, 91, 93, 94, 96, 97, 98, 107, 108, 109, 111, 114, 116], "daniel": [6, 40, 70], "volya": 6, "former": [6, 10, 81], "now": [6, 9, 10, 25, 43, 48, 50, 57, 68, 78, 79, 80, 81, 84, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 100, 101, 105], "hi": 6, "wai": [6, 35, 38, 43, 51, 52, 76, 77, 78, 80, 81, 85, 86, 89, 91, 93, 94, 96, 108, 113], "achiev": [6, 81, 89, 90, 91, 93, 105], "phd": 6, "To": [6, 8, 20, 23, 30, 31, 34, 35, 36, 37, 39, 45, 51, 52, 57, 68, 71, 78, 79, 80, 84, 85, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 105, 109, 113], "send": [6, 41, 46, 50, 51, 57, 64, 67, 70, 71, 75, 76, 110, 111], "byte": [6, 46, 51, 57, 63, 70, 75, 76, 78, 111], "command": [6, 25, 63, 64, 74, 75, 77, 78, 79, 80, 82, 84, 86, 89, 90, 91, 93, 97, 98, 100, 110, 111, 115], "xor": [6, 70], "0xff": [6, 70], "checksum": [6, 46, 70, 75], "receiv": [6, 10, 11, 35, 45, 46, 50, 51, 52, 53, 59, 63, 64, 67, 68, 70, 74, 75, 76, 78, 81, 83, 97, 109, 111], "opcod": 6, "0x10": [6, 70], "ping": [6, 34, 67, 70, 109], "0x20": [6, 70], "air": [6, 38, 43, 107, 111, 114, 116], "flow": [6, 63], "0x30": [6, 70], "disallow": 6, "0x40": [6, 70], "switch": [6, 34, 45, 59, 72, 86, 89, 97, 98, 111], "check": [6, 7, 9, 20, 30, 35, 38, 39, 41, 43, 47, 48, 50, 51, 52, 67, 68, 73, 74, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 94, 96, 99, 108, 109, 111, 115], "repli": [6, 51], "0x11": [6, 70], "number": [6, 43, 45, 46, 50, 51, 57, 59, 61, 63, 67, 68, 69, 70, 72, 73, 76, 77, 78, 79, 81, 85, 89, 90, 94, 96, 101, 109, 111], "ex": [6, 40, 59, 94], "0x04": [6, 57], "4": [6, 50, 53, 56, 57, 62, 63, 66, 67, 68, 74, 78, 84, 85, 94, 108, 111], "0x24": 6, "0x01": [6, 57, 70], "prevent": [6, 7, 43, 48, 73, 81, 90, 96, 108], "0x0b": 6, "11": [6, 57, 74, 85, 89], "0x3b": 6, "0x00": [6, 57, 70], "0x09": 6, "9": [6, 39, 90, 114], "0x49": 6, "press": [6, 7, 25, 45, 61, 72, 77, 80, 86, 89, 95, 111, 113], "2018": [6, 11, 93], "kevin": 6, "allen": [6, 115], "bridg": [6, 59, 78], "class": [6, 46, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 61, 63, 65, 66, 67, 68, 70, 71, 72, 74, 75, 76, 77, 78, 79, 81, 87, 96, 97, 99, 108, 111, 116], "mil_pneumatic_actu": [6, 60], "pnuematicactuatordriv": [6, 70], "method": [6, 38, 43, 46, 50, 51, 52, 56, 57, 59, 61, 64, 66, 67, 68, 70, 71, 72, 74, 75, 76, 78, 81, 85, 86, 87, 93, 96, 97, 105, 107, 109, 111], "test": [7, 10, 11, 24, 25, 28, 30, 33, 34, 42, 43, 46, 50, 51, 53, 57, 73, 78, 80, 81, 85, 86, 89, 92, 94, 100, 105, 108, 109, 110], "charg": [7, 47], "deplet": 7, "sub": [7, 25, 33, 50, 51, 53, 67, 89, 101, 102, 104, 105, 107, 108, 109, 110, 111, 112, 113, 114, 115], "water": [7, 38, 41, 43, 44, 47, 50, 67, 105, 107, 108, 109, 110, 111, 116], "percentag": [7, 72, 108], "hitec": 7, "lipo": [7, 105], "checker": [7, 81, 108], "voltag": [7, 50, 56, 63, 108], "equil": 7, "plug": [7, 20, 34, 38, 86, 90, 105, 111], "devic": [7, 20, 21, 33, 34, 45, 57, 75, 76, 80, 88, 90, 95, 98, 108, 109, 111], "connector": [7, 45, 107, 108, 109, 114, 115], "balanc": [7, 47], "white": [7, 38, 61, 78, 89], "80": [7, 45, 85, 94], "further": [7, 70, 85, 93, 97, 98, 110], "action": [7, 30, 50, 51, 55, 57, 60, 63, 64, 68, 70, 72, 78], "cabl": [7, 10, 34, 45, 105, 108, 109, 114, 115], "wall": [7, 34, 105, 115], "remov": [7, 35, 47, 50, 59, 61, 63, 69, 71, 76, 78, 81, 85, 93, 108, 111, 114], "ch1": 7, "side": [7, 47, 51, 78, 84, 85, 89, 110, 113], "connect": [7, 31, 32, 34, 42, 45, 46, 47, 50, 51, 52, 57, 59, 64, 67, 68, 70, 73, 75, 84, 87, 89, 94, 97, 101, 105, 108, 111, 114, 115], "anderson": 7, "red": [7, 24, 25, 34, 45, 63, 77, 78, 84, 89, 90, 115], "black": [7, 78, 93], "wire": [7, 38, 108], "same": [7, 10, 25, 43, 48, 50, 51, 59, 61, 68, 70, 74, 78, 81, 83, 84, 85, 86, 90, 91, 93, 97, 105, 108, 109, 110, 111, 113], "ch2": 7, "phystart": 7, "center": [7, 17, 63, 77, 78, 85, 108, 111], "dial": 7, "select": [7, 39, 41, 51, 72, 80, 84, 85, 89, 90, 95, 97, 98, 102], "default": [7, 20, 48, 50, 51, 57, 59, 61, 64, 66, 68, 71, 74, 75, 78, 85, 86, 87, 89, 90, 94, 97, 100], "ye": [7, 85], "pop": [7, 47], "icon": [7, 80, 89, 90, 97], "start": [7, 8, 11, 17, 19, 23, 25, 30, 33, 37, 40, 43, 47, 48, 50, 51, 52, 53, 55, 57, 59, 63, 64, 67, 68, 69, 76, 77, 79, 81, 86, 89, 91, 92, 93, 94, 101, 108, 109, 110, 111, 115, 116], "blink": 7, "upper": [7, 67, 78, 85, 93], "corner": [7, 78, 89, 90], "cell": [7, 68], "shown": [7, 20, 46, 57, 59, 63, 79, 84, 87, 90, 114], "configur": [7, 32, 33, 45, 63, 69, 89, 100, 108, 109, 111, 113], "until": [7, 23, 28, 34, 46, 51, 59, 68, 73, 81, 90, 94, 108, 113, 114], "90": 7, "issu": [7, 25, 34, 39, 43, 51, 54, 81, 84, 85, 90, 93, 108], "dure": [7, 29, 43, 50, 64, 68, 84, 96, 107, 108, 110, 114], "robosub": 7, "competit": [7, 10, 11, 28, 29, 34, 35, 42, 43, 44, 46, 48, 65, 93, 106, 108], "ch": 7, "2": [7, 34, 46, 50, 51, 53, 57, 63, 66, 68, 75, 78, 81, 82, 84, 85, 94, 96, 111, 114, 115], "burn": 7, "fix": [7, 25, 43, 52, 71, 77, 84, 85, 87, 91, 93, 96, 100, 108], "do": [7, 10, 11, 21, 23, 26, 30, 34, 35, 38, 39, 43, 48, 51, 52, 55, 57, 64, 67, 68, 76, 78, 79, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 95, 96, 97, 99, 100, 101, 105, 108, 111, 113, 114, 115, 116], "NOT": [7, 78, 115], "manual": [7, 41, 46, 48, 49, 84, 86, 93, 96, 111], "welcom": [8, 9, 11, 17, 37, 39, 42, 85, 90, 93, 94], "regard": [8, 37, 42, 68, 85, 91, 111], "construct": [8, 21, 37, 39, 46, 50, 51, 52, 57, 59, 62, 63, 64, 66, 67, 70, 74, 75, 78, 111, 116], "mainten": [8, 37], "firmwar": [8, 41, 90], "circuitri": [8, 9], "embed": [8, 9, 57], "bot": [8, 68, 108], "highest": [8, 50, 90], "capac": 8, "checkout": [8, 18, 37, 79, 84, 91], "onboard": [8, 11, 37, 43, 108, 116], "batteri": [8, 32, 47, 57, 60, 105, 108, 111, 114, 115], "charger": [8, 47, 115], "here": [9, 11, 26, 34, 39, 40, 78, 79, 80, 84, 86, 89, 90, 93, 94, 96, 97, 98, 100, 109, 111, 116], "special": [9, 34, 35, 45, 51, 57, 67, 81, 111, 113], "hardwar": [9, 17, 28, 50, 56, 83, 90, 109, 114], "visit": [9, 39, 45, 90, 98], "overview": [9, 39, 84, 103, 116], "pleas": [9, 11, 31, 36, 39, 48, 59, 82, 85, 90, 91, 94, 101, 102, 109, 111], "primari": [9, 18, 39, 64, 81, 85, 108, 116], "commun": [9, 33, 34, 39, 41, 51, 54, 60, 69, 70, 85, 96, 111, 116], "workspac": [9, 39, 90, 116], "http": [9, 21, 28, 34, 39, 41, 48, 51, 79, 86, 89, 90, 93, 98, 100, 116], "uf": [9, 18, 31, 36, 39, 40, 48, 79, 90, 116], "com": [9, 28, 39, 41, 48, 63, 79, 86, 90, 93, 98, 100, 109, 116], "someon": [9, 39, 84, 85, 90, 91, 96, 110, 116], "invit": [9, 39, 90, 116], "email": [9, 18, 35, 39, 90, 108, 116], "em": [9, 116], "ufl": [9, 18, 39, 116], "edu": [9, 18, 39, 116], "onc": [9, 34, 39, 48, 55, 59, 68, 73, 79, 83, 84, 86, 89, 90, 93, 97, 98, 101, 108, 109], "post": [9, 39, 47], "import": [9, 33, 39, 43, 50, 51, 53, 57, 59, 64, 73, 79, 81, 84, 85, 89, 96, 97, 100], "updat": [9, 18, 25, 31, 32, 34, 39, 41, 43, 46, 50, 51, 59, 64, 66, 68, 69, 71, 75, 78, 80, 84, 89, 91, 92, 96, 97, 98, 100, 111, 115], "meet": [9, 11, 39, 43, 78, 87, 90, 96, 97, 116], "time": [9, 11, 21, 24, 25, 29, 30, 31, 38, 39, 43, 46, 47, 48, 49, 50, 51, 55, 57, 59, 61, 63, 64, 66, 67, 68, 69, 72, 73, 78, 79, 81, 84, 86, 87, 89, 90, 91, 93, 94, 96, 97, 105, 107, 108, 109, 110, 111, 115, 116], "unlik": [9, 51, 111], "mechan": [9, 11, 16, 21, 40, 42, 87, 116], "repositori": [9, 10, 11, 43, 48, 63, 65, 79, 81, 84, 85, 86, 87, 91, 93, 98, 101], "separ": [9, 30, 35, 46, 48, 56, 85, 90, 96, 101, 109], "ad": [9, 24, 35, 43, 57, 59, 66, 67, 69, 75, 79, 81, 85, 93, 94, 96, 102, 108], "organ": [9, 10, 39, 43, 85, 89, 90, 116], "ve": [9, 42, 47, 79, 84, 85, 90, 93, 96, 100, 101, 116], "leader": [9, 34, 36, 39, 43, 84, 86, 88, 108, 116], "add": [9, 25, 39, 50, 51, 52, 59, 62, 68, 69, 71, 74, 77, 78, 79, 84, 85, 86, 87, 89, 90, 93, 94, 96, 98, 100, 102, 108, 111], "typic": [9, 45, 51, 81, 85, 90, 105, 116], "one": [9, 20, 30, 31, 33, 34, 35, 40, 43, 48, 49, 50, 51, 56, 57, 59, 63, 64, 68, 77, 78, 79, 81, 83, 84, 85, 86, 87, 89, 90, 93, 94, 96, 100, 105, 107, 108, 109, 111, 113, 115, 116], "repo": [9, 18, 30, 34, 48, 86, 88, 90, 91, 100], "hold": [9, 34, 49, 50, 63, 68, 71, 84, 90, 95, 109, 113], "design": [9, 11, 18, 24, 39, 40, 43, 51, 70, 86, 89, 96, 106, 107, 108, 109, 111, 116], "walk": [9, 86, 93, 97, 105], "gain": [9, 57, 68, 90, 97, 101, 110], "skill": 9, "becom": [9, 28, 41, 43, 50, 51, 55, 68, 78, 81, 85, 86, 96, 111, 116], "wizard": 9, "part": [9, 40, 43, 46, 65, 68, 78, 81, 86, 89, 94, 96, 97, 100, 107, 108, 109, 116], "contact": [9, 38], "list": [10, 20, 32, 33, 39, 40, 43, 46, 47, 49, 50, 51, 56, 59, 62, 63, 64, 66, 67, 68, 71, 74, 77, 78, 80, 84, 85, 86, 89, 90, 93, 94, 97, 108, 111], "common": [10, 36, 40, 57, 81, 85, 86, 87, 90, 93, 94, 96, 97], "word": [10, 33, 62, 63, 84, 91, 94], "acronym": [10, 85], "past": [10, 83, 89, 91, 114], "jargon": 10, "alarm": [10, 46, 56, 60, 77, 111, 115], "boolean": [10, 77], "mani": [10, 35, 42, 43, 53, 55, 57, 60, 73, 84, 86, 89, 93, 94, 96, 108, 113, 116], "node": [10, 33, 46, 50, 51, 52, 53, 54, 55, 56, 57, 59, 63, 67, 71, 72, 73, 74, 78, 89, 96, 97, 99, 103, 111], "kill": [10, 24, 25, 27, 38, 43, 46, 49, 51, 56, 57, 63, 68, 72, 89, 109, 115], "auvsi": [10, 11], "A": [10, 22, 34, 45, 46, 49, 50, 51, 56, 57, 59, 61, 62, 63, 64, 66, 67, 68, 70, 73, 74, 76, 77, 78, 81, 84, 85, 86, 89, 90, 91, 93, 94, 96, 97, 108, 111], "non": [10, 23, 51, 61, 62, 68, 98, 108], "profit": 10, "particip": [10, 48, 106], "bag": [10, 24, 25, 31, 41, 50, 59, 99, 105, 109, 110, 111], "ro": [10, 29, 32, 41, 50, 51, 52, 57, 59, 60, 62, 63, 64, 66, 67, 68, 69, 70, 71, 78, 83, 86, 87, 89, 90, 91, 92, 93, 94, 97, 101, 102, 111, 113], "messag": [10, 24, 25, 46, 49, 50, 51, 52, 53, 56, 57, 58, 59, 60, 61, 62, 64, 67, 68, 69, 70, 71, 73, 74, 78, 81, 84, 85, 97, 98], "interv": [10, 56], "collect": [10, 81, 89, 109], "data": [10, 21, 22, 25, 45, 46, 50, 51, 57, 59, 63, 67, 68, 69, 70, 75, 76, 77, 78, 85, 102, 108, 109, 111, 115], "later": [10, 78, 81, 90, 93, 96, 110], "plai": [10, 24, 25, 79, 90], "debug": [10, 43, 59, 67, 78, 84, 89, 91, 94, 97, 108, 113], "drew": 10, "bagnel": 10, "extern": [10, 50, 85, 96, 114], "usb": [10, 34, 60, 80, 88, 90, 108], "hard": [10, 43, 85, 86, 89, 90, 94, 96, 111, 115], "drive": [10, 27, 38, 49, 80, 90], "after": [10, 27, 35, 38, 43, 45, 50, 51, 53, 55, 57, 59, 61, 64, 68, 69, 78, 79, 81, 84, 85, 86, 90, 93, 94, 96, 101, 105, 108, 109, 110, 111, 115], "legend": [10, 97], "cto": 10, "aurora": 10, "innov": [10, 85, 94, 116], "doppler": 10, "veloc": [10, 20, 63, 67, 68, 94, 109, 111], "log": [10, 30, 34, 50, 59, 73, 75, 94], "Is": [10, 57, 91], "primarili": [10, 50, 54, 102], "underwat": [10, 11, 107, 112, 116], "food": [10, 47, 116], "train": [10, 78, 116], "spontan": 10, "event": [10, 57, 81, 108], "peopl": [10, 84, 91, 96, 108, 113, 114], "somewher": [10, 81, 85, 100], "eat": [10, 116], "indic": [10, 34, 50, 51, 52, 57, 63, 70, 71, 78, 84, 85, 90, 93, 94, 96, 102, 111], "cannot": [10, 51, 68, 74, 78, 88, 90, 109, 114], "larg": [10, 21, 45, 50, 57, 108, 114, 115, 116], "safeti": [10, 50, 84, 113], "featur": [10, 11, 22, 43, 50, 51, 52, 68, 78, 86, 89, 90, 93, 97, 104, 111], "usual": [10, 21, 27, 45, 51, 65, 81, 84, 86, 87, 89, 90, 93, 102, 112, 113], "remot": [10, 60, 63, 84, 101], "mission": [10, 30, 41, 43, 46, 48, 51, 60, 63, 71, 81, 89, 108], "program": [10, 51, 76, 78, 81, 85, 86, 89, 90, 91, 93, 94, 96, 101, 105], "make": [10, 12, 18, 34, 35, 39, 43, 46, 48, 50, 51, 57, 64, 66, 67, 68, 69, 74, 78, 80, 81, 83, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 97, 100, 108, 109, 111, 114, 115], "high": [10, 21, 43, 51, 70, 78, 81, 84, 96, 101, 116], "level": [10, 43, 47, 50, 51, 57, 67, 68, 70, 81, 85, 89, 90, 91, 94, 101, 108], "decis": [10, 12, 96], "waypoint": [10, 12], "percept": [10, 29, 46, 63, 64], "boat": [10, 40, 44, 45, 46, 68], "perform": [10, 62, 64, 81, 83, 89, 90, 93, 94, 101, 107], "purpos": [10, 43, 53, 78, 87, 90, 94, 97, 108, 111], "attempt": [10, 12, 31, 46, 50, 51, 52, 55, 57, 64, 67, 68, 71, 73, 78, 84, 85, 86, 93, 94, 108, 111], "camera": [10, 47, 59, 74, 77, 78, 85, 92, 106, 108, 111, 113], "lidar": [10, 42, 43, 47, 48, 69, 77, 78], "radar": 10, "etc": [10, 31, 34, 43, 64, 68, 78, 80, 81, 84, 85, 86, 89, 90, 91, 94, 108, 109, 111], "poe": [10, 34, 45, 115], "ethernet": [10, 34, 45, 105, 109, 115], "varieti": [10, 60, 63, 78, 84, 87, 94, 96], "protocol": [10, 46, 57, 70, 101], "so": [10, 24, 34, 35, 43, 46, 50, 51, 59, 64, 67, 68, 69, 75, 78, 79, 81, 84, 85, 86, 87, 89, 90, 91, 93, 94, 96, 100, 101, 102, 105, 107, 108, 109, 110, 111, 113], "transmit": [10, 45, 57], "posit": [10, 21, 43, 46, 57, 63, 66, 67, 68, 71, 74, 77, 78, 85, 89, 94, 97, 108, 109, 111], "world": [10, 21, 48, 68, 90, 111, 116], "orient": [10, 21, 63, 66, 68, 78, 109, 111], "robotx": [10, 11, 42, 44, 46, 48], "compet": [10, 11, 42, 93], "root": [10, 48, 59, 87, 90, 93, 95, 97], "administr": [10, 92], "superus": 10, "account": [10, 18, 31, 39, 78, 80, 90, 101, 111], "linux": [10, 89, 91, 98, 101], "permiss": 10, "anyth": [10, 35, 40, 67, 84, 89, 105, 108, 109, 113], "top": [10, 34, 45, 76, 78, 80, 81, 82, 84, 86, 89, 90, 94, 95, 97, 98, 116], "directori": [10, 26, 31, 61, 78, 87, 89, 90, 96, 97, 100, 109, 110], "entir": [10, 43, 49, 50, 55, 57, 78, 85, 89, 90, 91, 94, 96, 109], "filesystem": [10, 95], "instal": [10, 40, 53, 79, 81, 88, 92, 94, 101], "catkin_w": [10, 48, 90, 91], "src": [10, 48, 78, 90, 91, 96, 97, 100, 111], "shuttl": [10, 30, 98], "comput": [10, 21, 30, 34, 40, 47, 57, 60, 62, 63, 67, 70, 80, 83, 84, 85, 86, 88, 89, 92, 93, 101, 105, 108, 116], "simul": [10, 29, 33, 48, 51, 57, 68, 69, 70, 75, 76, 86, 88, 89, 92, 93, 101, 105, 106, 110], "replac": [10, 41, 50, 51, 63, 87, 89, 93, 95, 108, 109], "zobelisk": [10, 92], "determin": [10, 21, 50, 51, 52, 57, 62, 63, 68, 71, 78, 85, 94, 96, 109, 110], "multipl": [10, 30, 35, 48, 51, 62, 63, 73, 78, 80, 86, 90, 94, 97, 99, 100, 101, 108, 111, 116], "imu": [10, 110], "produc": [10, 21, 38, 46, 57, 61, 67, 78, 83, 93, 102, 111], "vrx": [10, 11, 42, 44, 93], "virtual": [10, 11, 44, 69, 78, 80, 89, 111], "physic": [10, 45, 57, 70, 75, 89, 111, 113], "compon": [10, 34, 39, 44, 45, 50, 51, 63, 66, 68, 89, 93, 96, 97, 109, 110, 111, 113], "travel": [10, 43], "involv": [10, 85, 86, 108, 112, 116], "david": 10, "zobel": 10, "site": [11, 30, 35, 36, 43, 46, 47, 79, 108], "gainesvil": [11, 108], "built": [11, 50, 68, 79, 84, 90, 93, 94], "sinc": [11, 41, 46, 50, 67, 79, 85, 110, 111], "incept": [11, 94], "decad": [11, 81, 116], "ago": 11, "submarin": [11, 37, 40, 90, 105, 106, 108, 111], "vehicl": [11, 21, 22, 29, 33, 34, 41, 42, 68, 85, 92, 112, 116], "champion": 11, "onr": 11, "surfac": [11, 112, 116], "asv": [11, 116], "maritim": 11, "won": [11, 35, 50, 86, 87, 96, 100], "2016": 11, "challeng": [11, 17, 43, 47, 48, 80, 81, 108], "fourth": [11, 63], "extens": [11, 60, 73, 81, 85, 86, 87, 92, 94, 96, 97, 108, 115], "fall": [11, 78, 93, 108, 116], "2021": [11, 116], "season": [11, 46], "record": [11, 23, 24, 43, 63, 67, 94, 105, 109, 110, 116], "introduc": [11, 85, 96], "tour": [11, 116], "It": [11, 29, 30, 34, 36, 38, 43, 51, 52, 56, 68, 78, 79, 80, 81, 84, 85, 86, 87, 89, 90, 93, 94, 96, 97, 102, 105, 109, 111], "great": [11, 43, 79, 81, 85, 86, 87, 91, 93, 94, 96, 100, 101, 116], "introduct": [11, 87, 92, 116], "watch": [11, 25, 38, 40, 73, 116], "interest": [11, 40, 71, 77, 78, 86, 111, 116], "guid": [11, 33, 48, 68, 79, 80, 86, 87, 91, 92, 93, 97, 98, 105], "electr": [11, 38, 39, 42, 106, 116], "sourc": [11, 44, 46, 50, 51, 56, 57, 58, 59, 61, 62, 64, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 79, 84, 85, 89, 90, 91, 111], "github": [11, 30, 41, 43, 48, 79, 84, 86, 90, 91, 93, 100], "brand": 11, "cultur": 11, "glossari": [11, 91], "practic": [11, 18, 30, 85, 92, 93, 108], "script": [11, 31, 48, 63, 67, 78, 79, 82, 83, 85, 86, 88, 89, 92, 94, 97, 101, 109], "procedur": [11, 108, 111], "deprec": [11, 63, 66, 91], "follow": [12, 18, 20, 31, 33, 42, 46, 47, 48, 51, 52, 53, 57, 60, 68, 71, 79, 81, 82, 83, 85, 89, 90, 91, 92, 93, 94, 95, 97, 102, 108, 109, 111], "optim": [12, 38, 68, 90, 94], "race": 12, "suppli": [12, 45, 51, 52, 57, 59, 63, 68, 78, 94, 96, 105, 111, 114], "aprior": 12, "track": [12, 19, 22, 39, 49, 68, 71, 78, 89, 90, 100, 109], "must": [12, 34, 40, 44, 46, 50, 51, 53, 55, 57, 68, 71, 78, 85, 88, 93, 98, 100, 101, 108, 109, 111, 113, 115], "contend": 12, "racer": [12, 22], "obstacl": [12, 102], "avoid": [12, 50, 51, 59, 81, 85, 102, 108], "todo": [13, 14, 69], "sm2337d": 15, "sylpas": 15, "infix": 15, "gnss": 15, "INS": [15, 21], "velodyn": [15, 44, 63], "puck": 15, "vlp": 15, "16": [15, 57, 63, 115], "see3cam_cu20": 15, "electron": 16, "mechatron": 16, "tbd": 16, "gator": 17, "doubl": [17, 85, 89, 94, 111], "dragon": 17, "collabortaion": 17, "kookmin": 17, "cimar": [17, 18, 40], "laboratori": [17, 116], "nonlinear": [17, 116], "ncr": 17, "autonomi": [17, 78, 112], "architectur": [17, 32, 42, 44, 90, 97, 102], "join": [18, 57, 84, 86, 87, 96], "keep": [18, 38, 39, 41, 43, 48, 51, 52, 64, 68, 71, 78, 79, 84, 85, 86, 94, 96, 100, 107, 108, 110], "valid": [18, 61, 63, 70, 78, 93, 94, 96, 109], "cad": [18, 39, 40, 43], "workbench": 18, "manag": [18, 45, 50, 51, 54, 60, 68, 69, 86, 90, 97], "solidwork": [18, 40], "indyav": [19, 25, 28], "joydriv": 19, "No": [19, 22, 28, 43, 59, 68, 77, 78, 84, 85, 109], "yet": [19, 22, 43, 51, 56, 64, 68, 69, 84, 87, 97], "simpl": [19, 51, 68, 89, 97], "path": [19, 20, 26, 46, 51, 57, 59, 60, 87, 89, 96, 97, 102, 109], "consist": [19, 50, 52, 57, 63, 85, 89, 97, 107, 108, 109], "combin": [19, 57, 63, 78, 85], "proport": [19, 63, 78], "deriv": [19, 50, 59, 68, 71, 74], "error": [19, 21, 49, 50, 51, 54, 57, 58, 63, 64, 67, 68, 70, 77, 79, 81, 84, 85, 86, 87, 91, 94, 96, 97, 108, 110, 111], "delta": [19, 67], "desir": [19, 49, 50, 51, 65, 67, 68, 70, 75, 76, 78, 85, 89, 93, 94, 97, 111, 116], "forward": [19, 25, 48, 51, 72, 108, 111, 113], "mpc": 19, "indyav_launch": [20, 24, 25, 27], "gazebo": [20, 24, 25, 44, 90, 92, 101, 108], "launch": [20, 24, 25, 44, 46, 57, 71, 83, 89, 90, 96, 101, 109, 110, 111], "recogn": [20, 98, 112], "ls": [20, 86, 95], "dev": [20, 48, 57, 115], "input": [20, 60, 72, 74, 77, 78, 85, 94, 110, 111], "output": [20, 30, 60, 63, 64, 68, 78, 79, 89, 94, 96, 108, 109, 111, 115], "id": [20, 25, 46, 49, 51, 57, 63, 68, 69, 74, 77, 78, 81, 90, 101, 111], "event0": 20, "event2": 20, "event4": 20, "event6": 20, "event8": 20, "mouse0": 20, "mouse2": 20, "uinput": 20, "event1": 20, "event3": 20, "event5": 20, "event7": 20, "js0": 20, "mice": 20, "mouse1": 20, "joystick": [20, 72], "jsx": 20, "By": [20, 43, 50, 52, 64, 78, 86, 89, 93, 96, 97], "pass": [20, 30, 50, 51, 53, 57, 59, 61, 64, 67, 68, 72, 73, 78, 81, 84, 85, 86, 94, 96, 97, 108, 111, 112], "js": 20, "argument": [20, 50, 51, 57, 58, 61, 64, 81, 85, 87, 93, 94, 96], "js1": 20, "indyviz": [20, 27], "client": [20, 45, 46, 50, 51, 52, 54, 64, 65, 67, 68, 71, 72, 77, 81, 89], "gazebogui": [20, 27, 89, 90, 113], "left": [20, 22, 43, 59, 68, 77, 78, 90, 93, 111], "steer": [20, 68], "car": [20, 27, 85, 89], "depress": 20, "trigger": [20, 45, 50, 59, 67, 90, 111], "acceler": [20, 72, 90, 111], "releas": [20, 93], "brake": 20, "option": [20, 33, 46, 50, 51, 56, 57, 59, 61, 64, 66, 67, 68, 71, 72, 73, 74, 78, 80, 85, 86, 89, 92, 94, 95, 96, 97, 105], "view": [20, 30, 51, 64, 71, 86, 94, 97, 111], "wheel": [20, 89], "throttl": 20, "investig": 21, "type": [21, 43, 46, 49, 50, 51, 56, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 70, 71, 73, 74, 75, 76, 77, 84, 87, 89, 90, 93, 95, 96, 97, 100, 108, 109], "coupl": 21, "singl": [21, 50, 57, 61, 63, 67, 68, 69, 78, 85, 94, 108], "directli": [21, 34, 59, 68, 79, 81, 90, 94, 111], "yield": [21, 57, 59], "minim": [21, 107], "rtk": 21, "correct": [21, 24, 52, 63, 78, 90, 94, 115], "greatli": [21, 81], "boost": [21, 78, 111], "accuraci": [21, 78], "slow": [21, 90], "10hz": 21, "drift": 21, "reliant": 21, "known": [21, 45, 51, 54, 57, 64, 71, 78, 81, 86, 90, 94, 109], "environment": 21, "condit": [21, 50, 51, 68, 96], "affect": 21, "signal": [21, 46, 67, 70, 94], "definit": [21, 63, 68, 78, 85, 86, 89], "geometr": [21, 22], "compar": [21, 50, 51, 78, 84, 101], "know": [21, 27, 39, 43, 50, 79, 84, 85, 86, 87, 90, 91, 93, 94, 95, 108, 111, 113], "cloud": [21, 60, 63, 66, 78, 111], "plenti": [21, 38], "ndt": 21, "match": [21, 51, 57, 67, 68, 78, 94], "almost": [21, 85], "light": [21, 45, 47, 89, 109], "acquisit": 21, "speed": [21, 29, 52, 66, 68, 72, 75, 81, 85, 90, 94, 111], "spin": [21, 51, 57, 72, 84, 108, 115], "captur": [21, 67], "correctli": [21, 83, 91, 101], "somewhat": [21, 84, 85], "costli": [21, 35], "bad": [21, 34, 51, 94, 109], "anymor": 21, "my": [21, 64, 86, 87, 97], "fast": [21, 48, 51, 52], "movement": [21, 49, 64, 68, 77, 86, 89, 110, 111], "base": [21, 35, 42, 47, 48, 50, 51, 57, 65, 68, 69, 70, 72, 74, 78, 79, 85, 90, 92, 94, 96], "reli": [21, 50, 66, 78, 93], "suchs": 21, "orb": 21, "slam": 21, "webdii": 21, "unizar": 21, "es": [21, 84], "raulmur": 21, "orbslam": 21, "respect": [21, 59, 91, 96, 97, 108, 111], "pre": [21, 85, 90], "map": [21, 22, 50, 69, 78, 111], "cheaper": 21, "than": [21, 30, 35, 43, 50, 51, 52, 55, 57, 59, 68, 69, 75, 82, 85, 86, 87, 90, 91, 93, 94, 111, 114, 116], "100": [21, 38, 59, 72, 85, 94], "fp": 21, "reduc": [21, 41, 43, 97, 101], "effect": [21, 48, 51, 91, 96, 97, 100, 107, 108, 111], "extrem": [21, 108], "usabl": [21, 51, 69], "assumpt": 22, "preconstruct": 22, "perceiv": 22, "potenti": [22, 86], "accur": [22, 46], "Not": [22, 48, 57, 87, 94, 108, 111], "rich": 22, "20hz": 22, "lot": [22, 43, 64, 81, 85, 86, 89, 90, 93, 94, 96, 99, 100, 108], "research": [22, 38, 41, 78, 97, 116], "previou": [22, 50, 57, 69, 84, 97, 101, 111], "experi": [22, 90, 108, 110], "plan": [23, 24, 29, 43, 49, 55, 60, 81, 88, 90, 102, 108, 112], "human": [23, 25, 85, 94, 116], "confid": [23, 63, 78, 93, 96, 108], "player": 23, "earlier": [24, 80, 84, 90, 93, 97], "relat": [24, 32, 42, 46, 50, 51, 52, 59, 60, 70, 78, 79, 84, 90, 92, 101, 111], "instanc": [24, 50, 51, 52, 55, 57, 68, 78, 90, 94], "topicrecord": [24, 25], "Its": 24, "sequenti": [24, 67], "inherit": [24, 25, 50, 51, 54, 57, 64, 70, 76, 94, 97, 111], "overridden": [24, 50, 57, 64, 78], "clear": [24, 25, 50, 51, 68, 69, 72, 78, 94, 97, 99, 111], "path_play": 24, "visual": [24, 25, 48, 68, 69, 78, 89, 97, 111, 113], "wit": 24, "arrow": [24, 25, 89], "trace": 24, "indyav_path": [24, 25], "pathplay": 24, "cpp": [24, 25, 48, 85, 100], "topicplay": 24, "header": [24, 25, 27, 49, 51, 57, 59, 66, 68, 72, 74, 77, 85, 87, 109, 111], "topic_play": 24, "hpp": [24, 25, 85, 91], "save": [25, 78, 84, 86, 89, 90, 97, 111], "overrid": [25, 64, 68, 69, 76], "callback": [25, 50, 51, 52, 56, 59, 64, 67, 68, 71, 74, 78, 111], "odometri": [25, 46, 50, 66, 68, 101, 111, 115], "bring": [25, 43, 86, 89, 94, 108], "subviz": [25, 113], "odom": [25, 46, 48, 50, 66, 68, 101, 110, 111, 113], "path_record": 25, "record_top": 25, "spew": 25, "warn": [25, 50, 68, 73, 86, 87, 93, 108], "safe": [25, 40, 43, 51, 57, 78, 90, 101, 113], "ignor": [25, 46, 51, 68, 77, 78, 93], "enabl": [25, 50, 51, 59, 67, 71, 78, 86, 89, 90, 106], "submov": [25, 113], "f": [25, 50, 53, 79, 84, 85, 87, 94, 97], "5m": [25, 48, 113], "window": [25, 59, 78, 80, 97, 103, 109], "stop": [25, 50, 51, 52, 53, 63, 67, 85, 86, 90, 111], "doesn": [25, 30, 61, 67, 84, 94, 96, 108, 111], "matter": [25, 80, 84, 85, 111], "fals": [25, 48, 50, 51, 57, 59, 67, 68, 70, 71, 75, 77, 78, 87, 93, 110, 111], "termin": [25, 33, 48, 51, 68, 82, 86, 89, 90, 94, 97, 98, 101, 109, 113], "ctrl": [25, 27, 61, 90, 109], "c": [25, 46, 51, 61, 68, 73, 89, 91, 92, 94, 96, 97, 98, 109, 111, 113], "normal": [25, 48, 50, 61, 62, 63, 67, 76, 77, 78, 96, 100, 111], "rosbag": [25, 59, 109], "odom2": 25, "l": 25, "click": [25, 30, 34, 39, 74, 80, 83, 86, 89, 90, 93, 97, 116], "advanc": [25, 90], "approxim": [25, 78], "second": [25, 46, 50, 51, 53, 56, 57, 59, 63, 64, 67, 68, 70, 73, 75, 77, 78, 81, 82, 90, 94, 111], "pathrecord": 25, "topic_record": 25, "docker": [27, 30, 48, 90], "ground": [27, 35, 41, 47, 69, 102, 108, 113], "truth": [27, 69, 113], "done": [27, 33, 35, 38, 43, 44, 45, 51, 55, 64, 67, 68, 81, 84, 85, 90, 93, 94, 98, 108, 109, 111, 115], "isrequir": 27, "custom": [27, 41, 43, 49, 63, 76, 79, 88, 89, 113], "alia": [27, 51, 69, 90, 113], "setup": [27, 30, 32, 33, 40, 45, 51, 53, 55, 64, 71, 80, 81, 84, 86, 91, 93, 96, 113, 115], "pub": [27, 59, 67, 74, 81], "indyav_control": 27, "steeringstamp": 27, "r": [27, 46, 62, 63, 66, 68, 74, 78, 79, 86, 87, 111], "seq": [27, 63, 78], "stamp": [27, 50, 51, 63, 66, 68, 72, 74, 77, 78], "sec": 27, "nsec": 27, "frame_id": [27, 63, 66, 111], "steering_angl": 27, "revsstamp": 27, "radians_per_second": 27, "30": [27, 94], "000": [27, 96], "circl": [27, 63, 77, 78, 84, 111], "offici": [28, 46, 48, 84, 85, 89, 97], "avail": [28, 33, 40, 43, 48, 50, 57, 64, 68, 78, 84, 86, 87, 89, 90, 97, 109, 113], "www": [28, 98], "interfac": [28, 41, 45, 50, 51, 57, 64, 69, 70, 75, 78, 80, 84, 86, 96, 97, 98, 109, 111, 116], "eas": [29, 108], "prototyp": [29, 85], "earli": [29, 108], "possibl": [29, 34, 43, 57, 78, 84, 90, 94, 108, 109], "cours": [29, 40, 50, 108], "real": [29, 48, 51, 57, 64, 68, 84, 89, 93, 97, 105, 116], "encount": [29, 50, 52, 58, 64, 67, 81, 91], "becaus": [29, 30, 41, 43, 44, 50, 51, 52, 57, 64, 79, 81, 85, 86, 87, 89, 90, 93, 94, 100, 107, 108, 109, 111], "engin": [30, 89], "ensur": [30, 35, 38, 43, 45, 47, 51, 52, 56, 64, 72, 78, 79, 83, 84, 85, 89, 93, 96, 97, 108, 109, 115], "long": [30, 45, 73, 78, 81, 85, 86, 90, 93, 94, 96, 101, 108], "period": [30, 50, 52, 111], "your": [30, 31, 33, 34, 39, 45, 48, 57, 68, 78, 79, 80, 81, 83, 85, 86, 87, 88, 89, 90, 93, 94, 95, 96, 97, 98, 100, 105, 109, 116], "newli": [30, 62, 69, 87], "problem": [30, 41, 50, 63, 67, 85, 91, 93, 96, 107], "fail": [30, 49, 50, 51, 64, 68, 71, 77, 78, 82, 84, 89, 90, 93, 96, 108, 109, 111], "merg": [30, 43, 86, 100], "master": [30, 43, 51, 52, 79, 84, 91, 100, 108], "branch": [30, 43, 48, 79, 91, 100], "quick": [30, 38, 43, 79, 86, 90, 93, 94, 98, 108], "marker": [30, 69, 71, 74, 90, 111, 112], "unlimit": 30, "resourc": [30, 37, 39, 51, 52, 54, 60, 64, 81, 85, 90, 96], "host": [30, 48, 68, 90, 106], "quickli": [30, 43, 52, 85, 86, 90, 91, 96, 99, 108], "insid": [30, 34, 38, 41, 45, 54, 57, 63, 69, 85, 86, 87, 89, 94, 99, 100, 108, 109, 114], "piec": [30, 63, 70, 81, 85, 86, 90, 93, 94, 96], "largest": [30, 86], "sum": [30, 85, 94], "spun": 30, "15": [30, 57], "dockerfil": 30, "specifi": [30, 46, 50, 51, 57, 61, 64, 67, 68, 69, 72, 78, 81, 86, 89, 94, 96, 97, 108, 111, 112], "python": [30, 48, 51, 57, 68, 79, 81, 90, 92, 97, 109], "compil": [30, 48, 85, 87, 88, 90, 96], "packag": [30, 35, 43, 47, 50, 54, 57, 67, 78, 79, 80, 85, 88, 91, 93, 94, 96, 98, 99, 108], "associ": [30, 36, 50, 51, 57, 58, 63, 66, 68, 77, 78, 85, 101, 111, 116], "graph": [30, 97, 103], "relationship": [30, 42, 51, 89], "depend": [30, 46, 52, 70, 78, 79, 90, 93, 95, 96, 97, 105], "well": [30, 39, 57, 78, 83, 86, 87, 89, 90, 91, 93, 94, 108, 111, 116], "why": [30, 35, 71, 77, 78, 85, 86, 91, 93, 113], "might": [30, 41, 43, 64, 78, 84, 85, 86, 87, 89, 90, 91, 94, 96, 107, 108], "aim": [30, 43, 45, 108, 116], "automat": [30, 33, 34, 51, 61, 86, 87, 96, 98, 105], "fulfil": [30, 69], "push": [30, 48, 74, 85, 90, 91, 100], "sometim": [30, 43, 84, 85, 87, 88, 94, 100], "tab": [30, 84, 90, 97], "next": [30, 33, 41, 51, 67, 68, 69, 80, 84, 93, 95, 96, 97, 98, 101, 109, 111, 116], "statu": [30, 46, 49, 50, 51, 56, 57, 72, 73, 99, 111], "exactli": [30, 90, 91, 93, 113], "execut": [30, 50, 51, 57, 59, 64, 72, 73, 78, 81, 82, 85, 89, 94, 96], "restart": [30, 52, 90, 109], "button": [30, 34, 86, 89, 90, 97, 105], "stuck": [30, 91], "cancel": [30, 51, 53, 64, 72, 81], "befor": [30, 43, 45, 46, 47, 48, 50, 51, 52, 57, 59, 64, 68, 69, 71, 72, 73, 78, 80, 81, 84, 85, 86, 87, 90, 91, 93, 94, 96, 97, 100, 107, 108, 111, 114], "workflow": [30, 48], "whenev": [30, 35, 50, 57, 81, 94, 97, 100, 105, 113], "head": [30, 67, 68, 71, 77, 84, 90, 111, 115, 116], "how": [30, 41, 43, 51, 52, 53, 55, 57, 64, 68, 71, 73, 78, 81, 84, 85, 86, 87, 90, 91, 93, 94, 97, 98, 100, 103, 108, 109, 111], "video": [31, 40, 43, 98, 110], "fileserv": 31, "access": [31, 34, 36, 39, 43, 45, 50, 52, 68, 79, 80, 84, 88, 89, 90, 92, 102, 108, 109], "anywher": [31, 86, 114], "network": [31, 32, 42, 43, 47, 50, 57, 74, 92, 101, 105, 115, 116], "doc": [31, 32, 41, 79, 87], "consider": 31, "amount": [31, 43, 49, 50, 51, 57, 59, 64, 67, 68, 73, 76, 81, 87, 90, 94, 105, 108, 111, 114, 116], "caution": [31, 34, 114], "mount_fileserv": 31, "usernam": [31, 39, 80, 90, 95, 101], "activ": [31, 34, 51, 56, 63, 64, 72, 78, 86], "slack": [31, 39, 84, 90], "don": [31, 35, 79, 84, 85, 86, 87, 89, 90, 93, 94, 105, 109, 111], "chose": 31, "unmount": 31, "umount_fileserv": 31, "server": [32, 33, 34, 46, 48, 50, 51, 52, 63, 64, 71, 77, 80, 81, 92, 96, 101], "lan": [32, 34], "dhcp": [32, 34], "usag": [32, 59, 78, 101], "io": [32, 41, 78], "backup": [32, 45, 84], "restor": [32, 97], "wan": 32, "terminolog": 32, "runner": [32, 64, 96], "job": [32, 85, 93, 96], "step": [32, 35, 41, 63, 79, 80, 86, 89, 90, 91, 95, 96, 101, 114, 116], "ci": [32, 84, 85, 86, 90, 96], "mount": [32, 95, 109], "ubuntu": [32, 86, 89, 92, 98, 101], "solar": [32, 108], "park": [32, 108], "ship": [32, 36, 42, 96, 114], "pack": [32, 42, 43, 57, 68, 75, 108], "materi": [32, 36, 43, 101, 107, 108], "infrastruct": 33, "room": 33, "duplic": [33, 34], "field": [33, 50, 63, 77, 97, 109], "subnet": [33, 34], "192": [33, 34, 45, 101, 109], "168": [33, 34, 45, 101, 109], "37": [33, 34, 45, 101, 109], "mask": [33, 78, 94, 111], "255": [33, 57, 63, 68, 78], "ipv4": [33, 51], "address": [33, 45, 46, 51, 63, 75, 76, 101, 111], "form": [33, 57, 59, 62, 78, 87, 90, 93, 96, 108], "assign": [33, 39, 57, 69, 84, 85, 90, 101], "static": [33, 57, 75, 78], "unus": [33, 90], "pool": [33, 108, 109, 110, 115], "within": [33, 34, 50, 59, 63, 64, 68, 77, 78, 81, 87, 89, 99], "150": [33, 59], "249": 33, "talk": [33, 36, 40, 51, 108], "anoth": [33, 44, 57, 59, 64, 67, 68, 78, 79, 80, 83, 84, 85, 86, 89, 93, 94, 100, 108], "ros_connect": 33, "date": [33, 46, 81, 87, 93, 116], "children": [33, 64], "tmux": [33, 101, 115], "session": [33, 43, 51, 86, 101, 115], "pelican": [34, 35, 36, 43, 108], "case": [34, 35, 36, 43, 50, 52, 67, 84, 85, 87, 88, 90, 91, 94, 108], "while": [34, 43, 44, 45, 51, 52, 53, 58, 64, 73, 78, 81, 84, 85, 86, 87, 89, 90, 93, 94, 96, 97, 100, 105, 108, 110, 111, 113, 114], "intend": [34, 76, 84, 85, 111], "seamless": [34, 97], "portabl": 34, "hour": [34, 84, 91], "outlet": [34, 114], "turn": [34, 41, 48, 66, 84, 89, 90, 109, 113], "down": [34, 47, 51, 55, 64, 71, 72, 85, 93, 95, 97, 102, 108, 111, 114], "ON": [34, 115], "hear": [34, 39, 50, 111], "beep": 34, "led": 34, "laptop": [34, 41, 115], "via": [34, 57, 59, 108], "besid": 34, "label": [34, 39, 45, 69, 78, 93, 97, 108, 109], "Be": [34, 68, 84, 87, 91, 108, 109], "doe": [34, 43, 45, 48, 50, 51, 52, 53, 57, 64, 67, 68, 70, 73, 76, 78, 79, 80, 81, 84, 85, 86, 87, 90, 93, 94, 96, 100, 101, 108, 109, 111, 112, 113, 116], "rj45": 34, "adapt": [34, 51, 67, 68, 78, 108, 110], "ubiquitii": 34, "antenna": [34, 42, 47, 109], "wait": [34, 50, 51, 53, 59, 64, 67, 71, 73, 76, 78, 81, 87, 90, 93, 108], "minut": [34, 81, 108, 109], "report": [34, 46, 50, 53, 63, 99, 108, 111], "verifi": [34, 57, 68, 70, 75, 79, 83, 90, 94, 96, 108, 115], "7": [34, 57, 63, 94, 96, 109, 111, 115], "outsid": [34, 69, 77, 78, 94, 116], "ubiqu": [34, 47], "injector": [34, 45], "ubuiqu": 34, "pfsens": 34, "router": 34, "wifi": [34, 47], "antena": 34, "off": [34, 35, 43, 63, 79, 84, 107, 108], "trednet": 34, "ti": [34, 108, 111, 115], "g80": 34, "8": [34, 39, 59, 63, 78, 85, 87, 90, 105, 108, 109, 110, 114], "gigabit": [34, 45], "xtreme": 34, "j60": 34, "oe350": 34, "ac": [34, 42, 43, 105], "protectli": 34, "fw10408": 34, "12v": 34, "5a": 34, "dc": 34, "splice": 34, "a240": 34, "050g": 34, "amazon": 34, "basic": [34, 43, 59, 86, 89, 96, 101, 108], "velcrow": 34, "lid": 34, "break": [34, 43, 84, 85, 93, 94, 96, 105, 108, 114], "proce": [34, 90], "internet": [34, 81, 84, 108], "web": [34, 45, 79, 86], "accept": [34, 50, 51, 59, 74, 78, 81, 84, 85, 87, 93, 94, 96], "invalid": [34, 51, 57, 63, 70, 77], "certif": 34, "login": [34, 101], "credenti": [34, 45], "xml": [34, 57, 96], "diag_backup": 34, "php": 34, "seriou": 34, "At": [34, 43, 50, 51, 79, 89, 96, 99, 108, 109], "eventu": [35, 51, 53, 100, 105], "locat": [35, 45, 59, 61, 67, 69, 71, 72, 78, 87, 89, 108, 109, 110, 111], "thei": [35, 43, 46, 51, 57, 64, 68, 69, 79, 81, 85, 87, 88, 90, 93, 94, 96, 100, 103, 107, 108, 116], "big": [35, 63, 68, 108, 111], "carri": [35, 43, 70, 108], "everyth": [35, 53, 84, 86, 87, 91, 93, 96, 108], "miss": [35, 43, 51, 108, 111], "item": [35, 43, 46, 93, 94, 108], "annoi": [35, 100], "absolut": [35, 67, 111], "alreadi": [35, 46, 49, 50, 51, 59, 70, 71, 78, 79, 81, 84, 85, 86, 90, 91, 93, 96, 98, 102, 111], "wonder": [35, 43, 85, 90, 96], "referenc": [35, 64, 74], "didn": [35, 90, 108], "accident": [35, 84, 94, 96, 108], "freight": [35, 108], "shipper": 35, "massiv": 35, "heavi": [35, 90, 113], "meant": [35, 50, 51, 67, 85, 90, 94, 111], "carrier": [35, 108, 109], "offer": [35, 85, 89], "dr": [35, 94, 108, 116], "schwartz": [35, 94, 108, 116], "One": [35, 43, 44, 45, 68, 78, 81, 85, 86, 87, 96, 108, 109], "problemat": [35, 108], "lithium": [35, 38], "ion": 35, "precaut": 35, "review": [35, 43], "easier": [35, 43, 50, 81, 86, 89, 90, 93, 94, 96, 97, 108, 110, 114], "bui": [35, 43], "rather": [35, 43, 50, 51, 57, 65, 75, 79, 82, 85, 87, 91, 93, 94, 108, 111], "sent": [35, 46, 50, 51, 57, 59, 61, 67, 70, 77, 97, 108, 111], "sender": [35, 57], "pictur": [35, 114], "receipt": 35, "storag": [36, 90], "wam": 36, "v": [36, 62, 93, 94], "facil": [36, 40], "structur": [37, 50, 57, 89, 94, 96], "clean": [38, 55, 86, 90, 94, 96], "dust": 38, "compress": 38, "blow": [38, 114], "brush": 38, "tool": [38, 43, 44, 45, 84, 85, 92, 93, 96, 101, 108], "could": [38, 41, 43, 50, 51, 61, 68, 71, 77, 78, 84, 85, 87, 90, 91, 93, 94, 96, 108, 111], "electrostat": 38, "screw": [38, 84, 115], "rail": 38, "lube": 38, "weekli": [38, 108], "hg50": 38, "bear": [38, 41], "provis": 38, "conduct": [38, 85, 116], "preserv": [38, 93, 111], "life": [38, 48, 86], "frequenc": [38, 63, 67, 73, 77], "decreas": [38, 96], "coolant": 38, "legit": 38, "spindl": 38, "antifreez": 38, "mixtur": 38, "bacteria": 38, "least": [38, 43, 46, 50, 51, 68, 77, 84, 90, 96, 108, 109, 114, 115], "better": [38, 57, 67, 91, 96, 110], "cool": [38, 64, 84, 85, 86], "properti": [38, 50, 57, 59, 67, 76, 77, 78, 89, 111], "buildup": 38, "slimi": 38, "altern": [38, 39, 68, 86, 87, 109], "distil": [38, 114], "block": [38, 51, 59, 73, 77, 79, 81, 85, 86, 93, 94], "sediment": 38, "tube": [38, 106, 107, 108, 114, 115], "isopropyl": 38, "hand": [38, 43, 84], "aluminum": 38, "ballscrew": 38, "sprai": 38, "good": [38, 39, 43, 78, 84, 86, 87, 90, 93, 94], "far": [38, 107], "knowledg": [38, 43, 84, 108], "goe": [38, 64, 84, 86, 90, 108], "excit": [39, 63, 93, 116], "engag": 39, "andrespulido": 39, "contribut": [39, 43, 86, 90, 92, 96], "notic": [39, 81, 84, 91, 93], "super": [39, 43, 57, 64, 76, 84, 85, 86, 97], "unless": [39, 50, 84, 90, 94, 105], "those": [39, 57, 78, 79, 84, 90, 91, 94], "dropdown": 39, "choos": [39, 64, 68, 84, 86, 93, 97, 116], "did": [39, 43, 51, 79, 85, 96, 108], "yourself": [39, 55, 85, 86, 91, 100, 111], "ui": [39, 45, 89], "righthand": 39, "sidebar": 39, "assigne": 39, "wip": 39, "drone": [39, 42], "killer": 40, "aid": 40, "manufactur": 40, "3d": [40, 44, 62, 74, 77, 78, 83, 89, 107, 111], "model": [40, 43, 44, 59, 74, 78, 83, 98, 111, 116], "assembl": [40, 43, 47, 57, 69, 78], "webpag": 40, "prof": 40, "crane": 40, "advisor": 40, "he": [40, 41, 108], "teach": [40, 91], "dml": 40, "ton": [40, 85], "feel": [40, 79, 84, 85, 86, 87, 90, 93, 94, 116], "free": [40, 79, 85, 86, 87, 90, 94, 98], "dfm": 40, "senior": 40, "present": [40, 43, 94], "machineri": 40, "cnc": 40, "made": [40, 43, 46, 50, 51, 52, 67, 68, 79, 81, 84, 91, 93, 94, 100, 108], "prestridg": 40, "os": [41, 51, 53, 76, 87, 90, 108], "confirm": [41, 80], "autopilot": 41, "telemetri": 41, "ardupilot": 41, "jarrod": 41, "sander": 41, "volunt": 41, "familiar": [41, 81, 90], "But": [41, 93, 100], "user": [41, 45, 50, 51, 57, 60, 64, 69, 78, 80, 85, 88, 94, 95, 97, 100, 101, 111], "lai": 41, "mention": [41, 52, 87, 97], "ar2": 41, "bit": [41, 57, 111], "outdat": [41, 43, 91], "pixhawk": 41, "awai": [41, 77, 78, 107], "properli": [41, 59, 64, 68, 78, 100, 109, 110], "corros": 41, "expand": [41, 85, 89], "teflon": 41, "semiperm": 41, "enclosur": [41, 108], "exposur": 41, "motor": [41, 56, 75, 111], "resist": 41, "consid": [41, 43, 59, 64, 78, 85, 89, 94], "rubber": 41, "gasket": 41, "planner": 41, "rmackay9": 41, "irlock": 41, "readm": [41, 86], "ir": 41, "lock": [41, 57, 73, 77, 108, 109], "precis": [41, 89, 91, 96, 107], "land": [41, 116], "kit": 41, "restrict": 42, "particular": [42, 50, 51, 52, 57, 61, 64, 70, 78, 84, 85, 86, 87, 91, 94, 111], "instead": [42, 43, 46, 50, 51, 57, 68, 78, 85, 87, 90, 93, 94, 96, 100, 101, 108, 111], "simpli": [42, 48, 64, 76], "prepar": [42, 43, 65], "novemb": 42, "sydnei": 42, "australia": [42, 43, 46], "am": [42, 46, 94, 100], "dai": [42, 84, 108, 115], "checklist": [42, 107], "rocket": 42, "station": [42, 46, 47, 48], "throughout": [42, 43, 63, 78, 85, 93, 94, 116], "overal": [42, 63, 73, 96, 111], "improv": [42, 81, 96, 97, 100, 108, 109], "april": 42, "had": [43, 49, 50, 57, 59, 64, 91, 93, 107, 108], "fun": [43, 94], "accomplish": [43, 69], "met": [43, 50, 51], "friend": [43, 69, 84], "everi": [43, 50, 56, 57, 59, 68, 84, 85, 91, 94, 96, 100, 102, 107, 108, 111, 115], "finish": [43, 46, 51, 59, 64, 68, 81, 84, 90, 94, 101], "month": 43, "unfortun": [43, 84, 85, 90], "necessarili": 43, "perfect": [43, 78, 105, 111], "readi": [43, 46, 59, 64, 67, 84, 85, 93, 108, 114], "got": [43, 108], "discuss": [43, 78, 85, 86], "enough": [43, 51, 77, 87, 90, 100, 109], "sustain": 43, "progress": [43, 46, 51, 59, 78, 84, 89, 116], "becam": 43, "confus": [43, 85, 91, 94, 100, 102], "lost": [43, 50, 51, 108, 111], "sync": [43, 57, 59, 111], "regular": [43, 56, 89], "toward": [43, 45, 67, 68, 77, 112], "goal": [43, 49, 63, 64, 68, 72, 85, 96, 112], "mentor": [43, 108], "catch": [43, 51, 61, 81, 85, 86, 94, 96], "flaw": 43, "quicker": [43, 90, 108], "frequent": [43, 46, 70, 78, 93, 102, 105, 111, 116], "cost": [43, 68, 90, 108], "ourselv": 43, "hastl": 43, "subject": [43, 85], "ons": 43, "luggag": 43, "furthermor": [43, 45, 54, 55, 85, 86, 87, 90, 96], "less": [43, 68, 78, 85, 90, 94], "shorten": [43, 94], "manifest": [43, 108], "equip": [43, 108, 109], "toss": 43, "signific": [43, 50, 85, 94], "cautious": [43, 85], "damag": [43, 108], "failur": [43, 51, 63, 64, 73, 85, 96, 108], "critic": [43, 45, 107], "broke": 43, "layer": [43, 63], "bubbl": [43, 107, 114, 115], "wrap": [43, 50, 51, 57, 63, 85, 93, 94], "place": [43, 50, 67, 68, 69, 78, 85, 86, 87, 94, 102, 107, 108, 115, 116], "shipment": [43, 108], "destroi": 43, "breakag": 43, "taken": [43, 68, 78, 91, 95, 108, 114], "weren": [43, 108], "whether": [43, 46, 50, 51, 56, 57, 59, 63, 67, 68, 70, 71, 73, 75, 77, 78, 87, 93, 94, 96, 111], "brought": [43, 86, 91, 108], "everyon": [43, 84, 85, 108], "saniti": [43, 48, 108], "bai": [43, 77], "tell": [43, 48, 85, 87, 93, 96], "gone": [43, 83, 84, 93], "spot": [43, 114], "acquaint": 43, "deep": 43, "focu": [43, 49, 54, 68], "stai": [43, 56, 72, 116], "compactli": 43, "distinct": [43, 46, 94], "miscellan": 43, "fulli": [43, 68, 72, 85, 90, 97, 108], "identifi": [43, 46, 57, 63, 69, 78, 96, 111], "individu": [43, 50, 51, 52, 57, 64, 66, 67, 77, 83, 94, 108, 116], "toolbox": 43, "disassembl": 43, "toolset": 43, "return": [43, 46, 50, 51, 57, 58, 59, 61, 62, 63, 64, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 81, 85, 87, 93, 94, 108, 111], "refil": 43, "stress": 43, "readili": 43, "taught": 43, "tutori": [43, 48, 85, 86, 97], "cover": [43, 47, 84, 90, 93, 96, 107, 114, 116], "altium": 43, "circuit": [43, 63, 108], "pcb": [43, 109], "barrier": 43, "alright": 43, "lengthi": [43, 85], "pdf": 43, "random": [43, 51, 57, 59, 68, 94, 111], "interact": [43, 50, 51, 67, 69, 71, 89, 90, 97, 103, 108], "reader": [43, 85, 94], "youtub": 43, "streamlin": [43, 97], "drop": [43, 91, 97, 108, 112], "suggest": [43, 57, 85, 86, 90, 94], "frustrat": 43, "soon": [43, 108], "end": [43, 45, 50, 51, 56, 57, 65, 67, 71, 75, 78, 81, 85, 86, 87, 93, 94, 105, 108], "diverg": 43, "significantli": [43, 97], "transpar": 43, "redund": [43, 108], "solut": [43, 85, 90, 101], "took": 43, "shortcut": [43, 86], "skimp": 43, "approach": [43, 52, 97, 110], "broken": [43, 55, 93, 96], "older": 43, "core": [43, 64, 68, 84, 90, 96], "librari": [43, 50, 64, 68, 79, 81, 93, 96, 97], "wrong": [43, 49, 51, 64, 77, 78, 81, 84, 90], "nede": 43, "intens": [43, 63], "logic": [43, 63, 85, 94], "necessari": [44, 46, 47, 67, 70, 78, 87, 89, 90], "instrument": [44, 89], "pointcloud": [44, 69, 77, 78, 111], "surround": [44, 78, 94], "area": [44, 85, 96, 111, 112], "pioneer": 44, "foundat": 44, "plugin": [44, 86, 108, 113], "beam": 44, "shore": [45, 63, 114], "reliabl": [45, 51, 52, 57, 77], "extend": [45, 51, 58, 64, 68, 72, 76, 97, 111], "suit": [45, 51, 89, 90, 96, 97], "middl": [45, 108, 111], "row": [45, 63, 78, 85], "ll": [45, 81, 84, 85, 86, 87, 90, 91, 93, 100, 105], "notabl": [45, 57, 81, 108, 116], "rare": [45, 81, 85], "touch": [45, 93], "html": [45, 61, 79, 87, 93, 96], "pin": 45, "disrupt": [45, 70], "infrastructur": 45, "stand": [45, 63, 94, 108], "although": [45, 63, 90, 91], "perfectli": [45, 78], "straight": 45, "airo": 45, "xxx": 45, "20": [45, 59, 67, 78, 90, 94, 96, 106], "81": 45, "browser": [45, 79], "attribut": [46, 49, 50, 51, 56, 57, 58, 59, 63, 64, 67, 68, 69, 70, 71, 74, 75, 76, 77, 78, 85, 94, 111], "ams_statu": 46, "color": [46, 61, 63, 66, 74, 77, 78, 79, 83, 97], "navigator_msg": [46, 49, 63, 77], "srv": [46, 50, 71, 77, 111], "messagedetectdockrequest": 46, "request": [46, 50, 51, 57, 64, 67, 69, 70, 71, 77, 78, 85, 96, 111], "shape": [46, 59, 63, 67, 68, 77, 78, 111], "str": [46, 49, 50, 51, 57, 58, 59, 61, 63, 64, 66, 68, 70, 71, 72, 73, 74, 75, 76, 77, 78, 87, 93, 94, 111], "int": [46, 49, 50, 51, 57, 59, 61, 63, 64, 67, 68, 70, 72, 74, 75, 76, 77, 78, 81, 85, 94, 111], "messagedetectdockrespons": 46, "entrance_g": 46, "exit_g": 46, "messageentranceexitgaterequest": 46, "entranc": 46, "gate": [46, 63, 77, 112], "exit": [46, 50, 51, 78, 87, 89, 90, 95, 101], "messageentranceexitgaterespons": 46, "messagefindflingrequest": 46, "scan": [46, 63], "fling": 46, "messagefindflingrespons": 46, "messagefollowpathrequest": 46, "bool": [46, 49, 50, 51, 56, 57, 59, 61, 63, 67, 68, 69, 70, 71, 73, 75, 77, 78, 85, 87, 93, 94, 111], "sai": [46, 84, 85, 91, 94, 108], "messagefollowpathrespons": 46, "animal_arrai": 46, "messagereactreportrequest": 46, "anim": [46, 77, 89], "p": [46, 51, 62, 76, 78, 85, 90, 111], "platypu": 46, "turtl": [46, 77], "croc": 46, "string": [46, 49, 50, 51, 57, 59, 61, 63, 64, 66, 69, 76, 77, 78, 85, 91, 93, 96, 97, 111], "messagereactreportrespons": 46, "item_statu": 46, "uav_statu": 46, "messageuavreplenishmentrequest": 46, "uav": 46, "stow": [46, 47], "deploi": [46, 47, 72, 115], "fault": [46, 63, 94, 96], "pick": [46, 78, 84, 89, 108], "deliv": [46, 57, 63], "messageuavreplenishmentrespons": 46, "object1": 46, "object1_e_w": 46, "object1_latitud": 46, "object1_longitud": 46, "object1_n_": 46, "object2": 46, "object2_e_w": 46, "object2_latitud": 46, "object2_longitud": 46, "object2_n_": 46, "messageuavsearchreportrequest": 46, "object": [46, 49, 50, 51, 57, 59, 60, 63, 64, 66, 67, 70, 71, 76, 77, 78, 81, 85, 89, 93, 94, 102, 107, 112], "latitud": [46, 77], "float64": [46, 63], "longitud": [46, 77], "w": [46, 59, 62, 63, 66, 87, 114], "messageuavsearchreportrespons": 46, "scanthecodemissionrequest": 46, "perceptionobject": [46, 69, 77], "observ": [46, 77, 78, 82, 83], "scanthecodemissionrespons": 46, "buoi": [46, 63, 89], "outlin": [46, 87], "message_id": 46, "def": [46, 50, 51, 53, 56, 57, 59, 61, 64, 67, 68, 70, 71, 72, 73, 74, 75, 76, 78, 81, 87, 93, 94, 96, 97, 111], "from_str": 46, "to_str": 46, "navigator_robotx_comm": 46, "pertain": 46, "edit": [46, 48, 79, 87, 93, 101], "delim": 46, "tupl": [46, 50, 51, 57, 59, 66, 68, 70, 71, 74, 78, 111], "delimit": 46, "split": [46, 85, 87, 94, 97, 116], "encod": [46, 57, 59, 63, 78], "team_id": 46, "aedt_date_tim": 46, "use_test_data": 46, "accord": [46, 50, 51, 67, 90, 111], "convert": [46, 50, 57, 59, 61, 62, 63, 66, 67, 68, 77, 78, 93], "aedt": 46, "dock": [46, 48, 63, 77], "heartbeat": [46, 50, 74, 87, 91, 111], "rxhrb": 46, "comma": [46, 94], "element": [46, 47, 63, 68, 77, 78, 85, 94, 97], "gps_arrai": 46, "system_mod": 46, "presum": [46, 78], "datetim": [46, 94], "none": [46, 50, 51, 56, 57, 59, 61, 64, 66, 67, 68, 71, 72, 73, 74, 75, 76, 78, 87, 94, 108, 111], "empti": [46, 50, 51, 57, 63, 64, 76, 78, 85, 89, 96], "zero": [46, 50, 51, 62, 67, 68, 72, 78, 81, 111], "mode": [46, 63, 72, 90], "sampl": [46, 63, 67, 68, 83], "react": 46, "equal": [46, 49, 50, 51, 57, 63, 67, 68, 70, 71, 77, 78, 111], "rxcod": 46, "color_pattern": 46, "pattern": [46, 63, 67, 68, 91, 94, 100], "replenish": 46, "wav": 46, "search": [46, 51, 68, 69, 86, 89, 90, 94, 111], "robotx_cli": 46, "wrench": [46, 47, 66, 68, 72, 110, 111, 115], "get_aedt_date_tim": 46, "gps_coord_callback": 46, "gps_odom_callback": 46, "handle_detect_dock_messag": 46, "handle_entrance_exit_gate_messag": 46, "handle_find_fling_messag": 46, "handle_follow_path_messag": 46, "handle_heartbeat_messag": 46, "handle_react_report_messag": 46, "handle_scan_code_messag": 46, "handle_uav_replenishment_messag": 46, "handle_uav_search_report_messag": 46, "kill_callback": 46, "scan_the_code_callback": 46, "system_mode_callback": 46, "uav_status_callback": 46, "update_system_mod": 46, "wrench_callback": 46, "robotx_comms_cli": 46, "subscrib": [46, 50, 53, 54, 59, 64, 67, 68, 73, 74, 78, 81, 111], "facilit": [46, 50, 51], "transmiss": [46, 57], "director": [46, 116], "m": [46, 51, 67, 78, 84, 90, 92, 111], "y": [46, 51, 62, 63, 66, 68, 71, 72, 77, 78, 85, 94, 97, 110, 111], "self": [46, 50, 51, 57, 59, 64, 68, 81, 94, 96, 97, 108, 111], "lla": [46, 77], "pointstamp": [46, 67, 68, 71, 74, 77, 81], "_": [46, 53, 56, 57, 68, 87, 94, 111], "timer": [46, 57, 68, 111], "rais": [46, 50, 51, 55, 56, 57, 59, 61, 63, 64, 67, 68, 70, 73, 78, 81, 87, 94, 99, 111], "scan_the_cod": [46, 63], "scanthecod": 46, "auv": [46, 112, 116], "experienc": [46, 50, 63, 64, 70, 71, 108, 111], "socket_connect": 46, "tcp_port": 46, "tcp_ip": 46, "allot": [46, 68, 80, 90], "intact": 46, "socket": [46, 67], "establish": [46, 50, 70, 87, 96], "sleep": [46, 51, 53, 57, 81, 108], "retri": 46, "leav": [47, 51, 68, 73, 74, 78, 85], "again": [47, 50, 51, 67, 68, 84, 85, 89, 90, 91, 93, 111], "radio": 47, "handset": 47, "ga": 47, "funnel": [47, 114], "prep": [47, 107], "attach": [47, 50, 51, 66, 68, 72, 78, 114], "rf": 47, "strap": 47, "main": [47, 51, 53, 63, 78, 81, 86, 87, 89, 90, 93, 96, 97, 108, 109, 114], "pontoon": 47, "gatorad": 47, "snack": 47, "spare": [47, 108, 109], "multimet": [47, 115], "bolt": [47, 85], "lanyard": 47, "fuel": 47, "unstrap": 47, "disconnect": [47, 111], "chock": 47, "cooler": 47, "chair": [47, 114, 115], "ic": 47, "drink": 47, "under": [48, 50, 51, 56, 79, 87, 89, 90, 93, 96, 98, 101, 102, 106, 108], "navigator_launch": [48, 83], "screen": [48, 61, 85, 89], "vrxviz": 48, "nmove": 48, "content": [48, 50, 51, 61, 74, 76, 78, 79, 80, 85, 87, 91, 97, 113], "isol": [48, 68, 101], "cheat": 48, "run_task": 48, "worldfil": 48, "vrx_gazebo": 48, "stationkeeping_task": 48, "scenario": [48, 50, 85, 96], "wish": [48, 64, 84], "example_cours": 48, "flag": [48, 57, 68, 78, 79, 84, 93, 111], "immedi": [48, 50, 51, 67, 81, 96, 111], "submit": [48, 84, 85], "run_development_contain": 48, "ever": [48, 51, 84, 89, 108], "editor": [48, 81, 84, 86, 90, 94, 111], "bulk": 48, "stage": [48, 63], "satisfi": 48, "against": [48, 70, 86, 96], "evalu": [48, 94, 110], "osrf": 48, "trial": 48, "git": [48, 79, 86, 91, 115], "hub": 48, "my_branch": 48, "me": 48, "build_vrx_trial_contain": 48, "run_vrx_trial_contain": 48, "instruct": [48, 71, 83, 90], "bitbucket": 48, "org": [48, 51, 78, 89, 98], "vrx_log": 48, "download_log": 48, "bash": [48, 90, 92, 101], "play_log": 48, "year": [48, 90, 106, 108, 109, 112], "download_video": 48, "mplayer": 48, "vrx_2019_video": 48, "mp4": 48, "dock1": 48, "mil_repo": [48, 86], "action_feedback": 49, "action_go": 49, "action_result": 49, "navigator_path_plann": [49, 68], "msg": [49, 50, 51, 53, 56, 59, 63, 64, 67, 68, 71, 73, 81, 97, 111], "feedback": [49, 51, 56, 64, 68, 71, 96, 111], "goalstatu": [49, 51, 64], "goal_id": 49, "goalid": 49, "distanc": [49, 69, 77, 78, 94, 107, 111], "time_till_next_branch": 49, "tree_siz": 49, "descript": [49, 50, 51, 57, 63, 77, 78, 84, 85, 87, 94, 97, 108], "size": [49, 57, 59, 63, 74, 78, 94, 97, 111], "lqrrt": [49, 60], "tree": [49, 87], "float": [49, 50, 51, 56, 57, 59, 62, 63, 64, 66, 67, 68, 71, 72, 73, 74, 75, 77, 78, 94, 111], "bypass": 49, "drive_smooth": 49, "skid": 49, "spiral": [49, 68], "blind": [49, 96], "initial_plan_tim": 49, "move_typ": [49, 68], "speed_factor": 49, "constant": [49, 57, 63, 69, 77, 85, 94], "smooth": [49, 97, 105], "focal": [49, 90], "failure_reason": 49, "reason": [49, 51, 78, 85, 86, 94, 108, 111], "time_remain": 49, "remain": [49, 50, 51, 68], "rospi": [49, 50, 52, 56, 57, 59, 66, 67, 68, 73, 74, 78, 97], "durat": [49, 50, 51, 68, 78, 87], "shooterdo": 49, "public": [49, 50, 67, 69, 77, 78, 85, 94, 111], "already_loada": 49, "already_run": 49, "manual_control_us": 49, "not_load": 49, "success": [49, 50, 57, 67, 68, 71, 77, 83, 84, 111], "enumer": [49, 50, 63, 64, 77, 78, 85, 94, 108], "load": [49, 57, 61, 72, 78, 80, 87, 89, 90, 108], "went": [49, 51, 64, 77], "live": [50, 63, 78, 85, 86, 94], "aliv": 50, "maintain": [50, 51, 85, 96, 99], "serv": [50, 51, 56, 57, 59, 67, 68, 70, 74, 78, 85, 86, 94, 97, 111], "lifecycl": 50, "regist": [50, 51, 57, 84, 90, 96], "broadcast": 50, "listen": [50, 51, 53, 57, 67, 74, 87, 112], "overwrit": [50, 111], "alarm_serv": 50, "print": [50, 51, 53, 57, 61, 64, 68, 73, 76, 78, 93, 94, 101, 107, 111], "alarm_nam": [50, 63, 77], "add_callback": 50, "call_when_rais": 50, "raise_alarm": 50, "cleared_cb": 50, "node_nam": [50, 63, 73], "problem_descript": [50, 63], "raised_cb": 50, "cl": [50, 51, 57, 64, 78, 111], "blank": [50, 89], "from_msg": 50, "as_msg": [50, 69], "as_srv_resp": 50, "unknown": [50, 63, 64, 108], "dict": [50, 51, 57, 64, 74, 78, 93, 94, 111], "exclud": [50, 85], "seri": [50, 57, 70, 90, 92, 93, 94, 97], "equival": [50, 51, 71, 76, 78], "repr": [50, 51, 76, 111], "json": [50, 63, 64, 78], "otherwis": [50, 51, 57, 64, 78, 94, 105, 111], "callabl": [50, 51, 59, 61, 64, 67, 68, 94], "funct": 50, "call_when_clear": 50, "severity_requir": 50, "similarli": [50, 85], "ran": [50, 90, 91, 93, 96], "swallow": 50, "statement": [50, 78, 85, 94], "minimum": [50, 67, 68, 78, 94, 111], "maximum": [50, 59, 67, 68, 69, 78], "alarmmsg": 50, "alarmgetrespons": [50, 77], "alarmget": 50, "classmethod": [50, 51, 57, 64, 78, 111], "low": [50, 51, 78, 108, 111, 114], "alarmset": 50, "handler": [50, 51, 57, 60, 67, 94, 111], "meta_alarm": 50, "make_tagged_alarm": 50, "set_alarm": 50, "appropri": [50, 51, 57, 85, 87, 90, 91, 111, 115], "meta": [50, 57, 89], "union": [50, 51, 57, 64, 67, 68, 74, 78, 94, 111], "succeed": [50, 51, 63, 77], "clear_alarm": 50, "wait_for_serv": [50, 51], "nowarn": 50, "disabl": [50, 59, 67, 78, 85, 89, 90, 110], "kwarg": [50, 51, 57, 59, 61, 70, 72, 74, 75, 76, 94, 111], "keyword": [50, 51, 61, 81, 85, 91, 94], "dumpabl": 50, "dictionari": [50, 51, 57, 74, 78, 111], "integ": [50, 51, 57, 59, 64, 68, 69, 70, 75, 78, 85, 94], "successfulli": [50, 51, 53, 57, 64, 68, 77, 96, 101, 109], "timeout": [50, 51, 59, 64, 70, 73, 78, 87], "forev": [50, 67, 87, 96], "fetch": [50, 84, 91, 100], "clear_callback": 50, "get_alarm": 50, "is_clear": 50, "is_rais": 50, "callback_funct": 50, "worth": [50, 81, 85, 86, 111], "cach": [50, 67, 79, 84, 111], "topic_nam": [50, 59, 78, 111], "msg_class": 50, "prd": 50, "predic": 50, "current_alarm": 50, "meta_pred": 50, "on_set": 50, "comment": [50, 84, 85, 87, 93], "deni": [50, 85], "_alarm": 50, "child": [50, 57, 63, 64, 78, 89], "itself": [50, 51, 78, 81, 85, 87, 94], "new_alarm": 50, "notifi": 50, "reject": [50, 96], "defer": [50, 51, 81], "json_paramet": 50, "func": [50, 67, 69, 78, 111], "proper": [50, 78, 85, 86, 108, 109], "inlin": [50, 63, 78], "constructor": [50, 51, 59, 61, 67, 78, 96], "std": [50, 69, 78, 85, 111], "this_nod": 50, "ros_alarms_msg": [50, 63, 77], "proxi": [50, 51, 54], "full": [50, 57, 63, 68, 69, 72, 85, 108, 109], "const": [50, 67, 69, 78, 87, 111], "readabl": [50, 85, 94], "overload": [50, 64, 78], "getalarm": 50, "updatesever": 50, "nodehandl": [50, 52, 53, 54, 55, 59, 67, 69, 71, 78, 81, 96, 111], "nh": [50, 51, 53, 59, 64, 67, 69, 71, 78, 81, 96, 111], "nullptr": [50, 69], "void": [50, 67, 69, 78, 85, 111], "sev": 50, "alongsid": [50, 90, 111], "modifi": [50, 57, 64, 68, 69, 71, 76, 79, 84, 89, 93, 96, 97, 110], "reprocuss": 50, "addcb": 50, "addclearcb": 50, "addraisecb": 50, "clearcallback": 50, "getcachedalarm": 50, "getlastupdatetim": 50, "getnumconnect": 50, "gettimesinceupd": 50, "isclear": 50, "israis": 50, "ok": [50, 78, 90, 97], "queryclear": 50, "queryrais": 50, "waitforconnect": [50, 87], "waitforupd": 50, "templat": [50, 67, 78, 85, 111], "typenam": [50, 78, 111], "callable_t": 50, "never": [50, 51, 52, 73, 78, 84, 85, 93, 94], "async": [50, 51, 53, 64, 71, 81, 96, 111], "spinner": 50, "queri": [50, 69, 77, 78], "cb": [50, 67], "invok": [50, 94], "severity_lo": 50, "severity_hi": 50, "lowest": [50, 67], "last": [50, 51, 59, 67, 68, 78, 79, 93, 105, 108], "length": [50, 51, 57, 63, 66, 67, 68, 74, 76, 78, 109], "call_scenario": 50, "cb_func": 50, "severity_check": 50, "regul": 50, "enum": [50, 51, 57, 78, 111], "callscenario": 50, "alarm_handl": 50, "monitor": [50, 57, 60, 64, 74, 99], "bu": [50, 57], "noth": [50, 51, 57, 73, 76, 78], "height": [50, 59, 63, 78, 111], "rise": 50, "limit": [50, 63, 68, 81, 96], "obtain": [50, 51, 61, 74, 78, 87, 89, 94], "dynam": [50, 52, 57, 68, 69, 89, 90], "reconfigur": [50, 52, 57, 69], "2hz": 50, "bottom": [50, 78, 79, 90], "hw": [50, 111], "hardware_kill_grace_period_second": 50, "bagger_dump": 50, "set_mobo_kil": [50, 111], "thread": [50, 57, 59, 81, 94], "motherboard": [50, 57, 108, 111], "reinstat": 50, "6": [50, 53, 63, 68, 85, 93, 108, 110, 111], "unset": [50, 111], "deactiv": 50, "arg": [50, 51, 57, 68, 70, 72, 75, 87, 93, 94, 111], "serviceexcept": 50, "hm": 50, "loss": [50, 81, 108], "grace_period": 50, "launch_tim": 50, "max_jump": 50, "ab": 50, "check_continu": 50, "clear_kil": [50, 72], "need_kil": 50, "Will": [50, 51, 78], "discontinu": 50, "disappear": 50, "meter": [50, 68, 74, 78, 111, 113], "jump": [50, 101], "grace": [50, 111], "new_odom_msg": 50, "old": [50, 51, 69, 78, 87, 89, 93, 102, 108, 109], "impos": 50, "update_layout": 50, "thruster": [50, 56, 72, 108, 115], "layout": [50, 79, 80, 90], "offlin": 50, "axrosexcept": 51, "notsetup": 51, "alreadysetup": 51, "xmlrpcexcept": 51, "rosmastererror": 51, "rosmasterfailur": 51, "serviceerror": 51, "toopasterror": 51, "node_handl": 51, "axro": [51, 52, 53, 55, 60, 63, 71, 96], "txro": [51, 67], "shutdown": [51, 55, 64, 71, 81, 96, 111], "solv": [51, 67, 68, 91, 96, 108], "request_bodi": 51, "xmlrpc": 51, "caught": [51, 59], "bodi": [51, 64, 66, 84, 85, 96, 105, 111, 116], "ros_messag": 51, "explain": [51, 64, 79, 84, 85, 93, 94], "outgo": 51, "visibl": [51, 83], "histori": [51, 78, 84, 94, 110, 116], "buffer": [51, 57, 59, 68, 69, 76, 78], "wrap_timeout": 51, "fut": [51, 81], "await": [51, 53, 64, 81, 96, 111], "genpi": [51, 59, 63, 66, 72, 78], "asyncio": [51, 53, 67, 92], "wrap_time_notic": 51, "coroutin": 51, "timeouterror": 51, "wall_sleep": 51, "xmlrpclegaltyp": 51, "master_proxi": 51, "master_uri": 51, "shutdown_callback": 51, "tcpros_handl": 51, "xmlrpc_handler": 51, "xmlrpc_server_uri": 51, "from_argv": [51, 53, 81, 96], "from_argv_with_remain": 51, "advertis": [51, 53, 81], "advertise_servic": 51, "delete_param": [51, 53], "get_nam": [51, 53, 96], "get_param": [51, 53, 67], "get_param_nam": 51, "get_service_cli": 51, "get_tim": [51, 53], "has_param": 51, "is_run": 51, "is_shutdown": 51, "resolve_nam": 51, "resolve_name_without_remap": 51, "search_param": 51, "set_param": [51, 53], "sleep_until": 51, "namespac": [51, 69, 74, 78], "addr": 51, "remap": 51, "asynchron": [51, 54, 96], "helper": [51, 57, 59, 72, 75, 78, 81, 93, 94, 111], "constructe": 51, "upon": [51, 57, 59, 67, 71, 74, 76, 78, 83, 90, 111], "context": [51, 94, 97], "spawn": [51, 55, 64, 71, 81], "initiail": 51, "enter": [51, 80, 89, 90, 95, 108], "uri": [51, 52], "incom": [51, 52, 57, 69], "tcpro": 51, "rout": [51, 57, 78], "tcprosprotocol": 51, "put": [51, 75, 78, 84, 85, 86, 89, 91, 94, 107, 108, 113], "nsexampl": 51, "append": [51, 56, 69, 76], "localhost": [51, 53], "message_typ": 51, "latch": [51, 53], "service_messag": 51, "servicemessag": 51, "delet": [51, 57, 69, 71, 77, 78, 84, 86, 94], "typeerror": [51, 94], "default_nam": 51, "argv": 51, "anonym": [51, 53], "always_default_nam": [51, 96], "constructionf": 51, "complex": [51, 78, 85, 89, 94, 108], "stronger": 51, "retriev": [51, 78, 94], "rosmasterexcept": [51, 53], "service_typ": 51, "conjunct": [51, 109], "opposit": 51, "resolv": [51, 73], "term": [51, 85, 94, 101, 111, 113], "wiki": [51, 86, 96, 97], "assertionerror": [51, 78], "shutdown_serv": 51, "shut": [51, 55, 64, 71, 97], "loop": [51, 81, 94, 108], "els": [51, 57, 84, 85, 93, 94, 96, 105, 108], "resourcewarn": 51, "emit": 51, "valueerror": [51, 68], "future_tim": 51, "from_sec": 51, "lambda": 51, "get_connect": 51, "get_last_messag": 51, "get_last_message_tim": 51, "get_next_messag": [51, 52, 53], "recently_read": [51, 52], "callerid": 51, "caller": [51, 94], "overhead": [51, 94], "queu": 51, "still": [51, 52, 63, 68, 84, 85, 87, 90, 93, 94, 96, 100], "claim": [51, 94, 96], "onto": [51, 57, 62, 78, 84, 90, 97, 109, 111, 114], "serial": [51, 57, 60, 63, 70, 75, 111], "parent": [51, 64, 81, 89, 94], "aspect": [51, 85, 89, 94, 116], "servicetyp": 51, "wait_for_servic": [51, 73], "request_class": 51, "appear": [51, 52, 78, 83, 84, 85, 89, 90, 93, 94, 97, 98, 100], "per": [51, 63, 64, 67, 68, 83, 108], "transport": [51, 108], "iter": [51, 68, 69, 78, 85, 93], "aiohttp": 51, "clientsess": 51, "asynciotransport": 51, "ros_master_uri": [51, 53, 101, 108], "caller_id": 51, "discret": 51, "contract": [51, 96], "__getattr__": 51, "master_api": 51, "behalf": 51, "outbound": 51, "hasparam": 51, "always_tru": 51, "attr": 51, "multitud": [51, 86], "status_msg": 51, "goal_msg": 51, "actiongo": 51, "status_text": 51, "actionlib_msg": [51, 63, 64], "origin": [51, 62, 64, 68, 74, 76, 78, 84, 89, 91, 93, 100, 109, 111], "uint8": [51, 63], "forget": [51, 108], "get_feedback": 51, "get_result": 51, "action_cli": 51, "instanti": [51, 59], "actionfeedback": 51, "actionresult": 51, "is_act": 51, "is_cancel_request": 51, "is_new_goal_avail": 51, "is_preempt_request": 51, "publish_feedback": 51, "set_abort": 51, "set_preempt": 51, "set_succeed": 51, "action_typ": 51, "goal_cb": 51, "preempt_cb": 51, "simplifi": [51, 96, 97, 100], "arriv": [51, 78, 108], "greater": [51, 68, 69, 96, 111], "timestamp": [51, 59, 66, 68, 78, 97, 111], "bump": [51, 108], "test_act": 51, "turtle_actionlib": 51, "shapeact": 51, "accept_new_go": 51, "shapefeedback": 51, "preempt": [51, 63, 68], "wahoo": 51, "shaperesult": 51, "apothem": 51, "shortli": 51, "independ": [51, 57, 60, 100], "abort": [51, 64], "cancel_all_go": 51, "cancel_goals_at_and_before_tim": 51, "send_goal": 51, "final": [51, 57, 62, 64, 71, 83, 89, 93, 94], "assist": [51, 59, 72, 86], "from_pose_messag": 51, "from_transform_messag": 51, "ident": [51, 78], "q": [51, 62], "tf": [51, 77, 111], "multipli": [51, 62, 63, 94], "geometry_msg": [51, 63, 66, 78, 81, 111], "z": [51, 62, 63, 66, 68, 72, 77, 78, 86, 110, 111], "coordin": [51, 68, 69, 74, 77, 111, 116], "send_transform": 51, "broadast": 51, "transformstamp": 51, "history_length": [51, 94], "10000000000": 51, "modul": [52, 54, 57, 65, 68, 93, 96, 100, 108, 109], "understood": [52, 94], "roscor": 52, "rosmasterproxi": 52, "incorrectli": [52, 94], "improperli": 52, "respond": [52, 77], "modern": [52, 93], "effici": [52, 108], "poll": [52, 73], "latter": 52, "sublish": 53, "rosgraph_msg": 53, "clock": 53, "uvloop": 53, "subsub": 53, "count": [53, 63, 76, 78], "recv": 53, "heard": 53, "clock2": 53, "gather": [53, 81], "subsub_task": 53, "create_task": [53, 81], "__name__": [53, 64, 81, 96], "__main__": [53, 81, 96], "special_nod": 53, "special_param": 53, "std_msg": [53, 63, 78, 97], "int32": [53, 63], "running_tim": 53, "cancellederror": 53, "across": [54, 56, 71, 78, 116], "neighbor": [54, 69], "api": [54, 96], "improp": [55, 94], "runtimeerror": 55, "hw_kill_rais": 56, "pub_voltag": 56, "supply_voltag": [56, 63], "add_voltag": 56, "hw_kill_cb": 56, "publish_voltag": 56, "navigator_battery_monitor": 56, "batterymonitor": 56, "averag": [56, 63, 78], "battery_monitor": 56, "four": [56, 66, 75, 78, 85], "1000": [56, 59, 101], "entri": [56, 78, 94], "battery_voltag": 56, "float32": [56, 63, 97], "voltage_check": 56, "board": [57, 60, 67, 108, 109], "sub8_driv": 57, "addition": [57, 59, 85, 87, 89, 93, 94, 97, 109], "pkg": [57, 96], "usb_to_can_driv": 57, "tty0": 57, "ftdi_ft232r_usb_uart_a800ghcf": 57, "if00": 57, "port0": 57, "baudrat": [57, 75], "115200": 57, "can_id": [57, 76, 111], "device_handl": 57, "18": [57, 92, 98], "sub8_thrust_and_kill_board": [57, 111], "thrusterandkillboard": 57, "83": [57, 111], "sub8_actuator_board": 57, "actuatorboard": 57, "simulated_devic": 57, "thrusterandkillboardsimul": 57, "actuatorboardsimul": 57, "is_simul": 57, "wherea": 57, "0xc0": 57, "payload": [57, 111], "tabl": [57, 87, 91, 94, 98, 115], "0xc1": 57, "binari": [57, 78, 85], "slightli": [57, 90], "formula": [57, 85], "modulo": 57, "applicationpacketwrongidentifierexcept": 57, "usb2canexcept": 57, "checksumexcept": 57, "payloadtoolargeexcept": 57, "invalidflagexcept": 57, "invalidstartflagexcept": 57, "invalidendflagexcept": 57, "thrown": [57, 94], "usb2can": 57, "cantousb": 57, "can2usb": 57, "sof": 57, "eof": [57, 61], "from_byt": 57, "sendalettermessag": 57, "0xaa": 57, "struct_format": 57, "b": [57, 62, 63, 66, 68, 73, 74, 78, 79, 81, 84, 91, 94, 108, 111], "__init__": [57, 94, 97], "letter": [57, 85], "ord": 57, "unpack": [57, 68], "suitabl": [57, 77], "expected_identifi": 57, "arrai": [57, 59, 62, 63, 66, 67, 68, 69, 71, 74, 78, 94, 111], "ser": 57, "read_packet": 57, "send_data": 57, "baud": [57, 70, 75], "9600": [57, 70, 75], "wrapper": [57, 94], "ttyusb0": 57, "succefulli": 57, "device_id": 57, "larger": [57, 78], "on_data": [57, 111], "exampleechodevicehandl": 57, "last_sent": 57, "send_new_str": 57, "to_sec": [57, 97], "choic": [57, 68, 90], "ascii_lett": 57, "parse_module_dictionari": 57, "process_in_buff": 57, "runtim": [57, 68, 85], "pars": [57, 58, 111], "sim_board": 57, "send_to_bu": 57, "whole": [57, 78, 84, 109], "from_mobo": 57, "mark": [57, 68, 80, 81, 85, 94, 111], "begin": [57, 64, 68, 69, 78, 81, 85, 86, 90, 93, 94, 96, 111], "partial": 57, "charact": [57, 61, 85, 94], "create_receive_packet": 57, "strip": [57, 115], "filter_id": 57, "is_rec": 57, "length_byt": 57, "create_request_packet": 57, "create_send_packet": [57, 76], "receive_length": 57, "0x37": 57, "famili": [57, 85], "belong": [57, 63, 78], "subclass": [57, 69, 111], "65535": 57, "fletcher": 57, "thrust": 57, "heartbeatpacket": 57, "bf": 57, "thrustsetpacket": 57, "0x02": 57, "killsetpacket": 57, "0x03": 57, "killreceivepacket": 57, "sub9_thrust_and_kill_board": [57, 111], "heartbeatsetpacket": 57, "heartbeatreceivepacket": 57, "sub8_battery_monitor_board": 57, "batterypollrequestpacket": 57, "ffff": 57, "batterypollresponsepacket": 57, "bb": 57, "sub_actuator_board": [57, 111], "actuatorsetpacket": 57, "actuatorpollrequestpacket": 57, "actuatorpollresponsepacket": 57, "0x05": 57, "sub9_system_status_board": 57, "setledrequestpacket": 57, "guarante": 57, "incomplet": [57, 78], "inbound_packet": 57, "simulatedusbtocanstream": 57, "decor": [57, 78, 81], "dataclass": 57, "annot": [57, 87, 93, 94], "rest": [57, 85, 86, 87, 90, 108], "examplepacket": 57, "msg_id": 57, "subclass_id": 57, "payload_format": 57, "bhhf": 57, "example_char": 57, "example_short": 57, "example_short_two": 57, "example_float": 57, "acknowledg": 57, "argumentparserexcept": 58, "throwingargumentpars": 58, "bag_path": 59, "image_info_top": 59, "image_top": 59, "crawl": 59, "opencv": [59, 78, 83, 93], "compat": [59, 87, 88, 90, 93, 109], "sensor_msg": [59, 63, 66, 69, 78, 111], "is_imag": 59, "max_msg": 59, "inf": 59, "tqdm": 59, "bar": [59, 78, 89, 90, 91, 113], "camerainfo": [59, 78], "cam": [59, 78], "hor_num": 59, "max_height": 59, "max_width": 59, "total": [59, 68, 73, 85, 90, 93, 94, 108, 111], "width": [59, 63, 67, 78, 111], "win_nam": 59, "add_imag": 59, "800": 59, "gui": [59, 64, 78, 80, 83, 86, 89, 90, 92, 113], "smaller": [59, 78, 85, 87, 108], "img": [59, 68, 78], "33": [59, 78], "imshow": [59, 78], "im_pub": 59, "bgr8": [59, 78], "queue_siz": [59, 78], "mat": [59, 78, 111], "convers": [59, 78], "cvbridg": [59, 78], "creation": 59, "queue": [59, 78], "cv_imag": 59, "ndarrai": [59, 62, 66, 67, 68, 71, 74, 78, 111], "cvbridgeerror": 59, "camera_info": 59, "im_sub": 59, "info_sub": 59, "last_image_head": 59, "last_image_tim": 59, "info_cb": 59, "wait_for_camera_info": 59, "wait_for_camera_model": 59, "behav": 59, "convent": [59, 111], "unregist": [59, 97], "pinholecameramodel": [59, 74, 78, 111], "camera_info_left": 59, "camera_info_right": 59, "last_image_left": 59, "last_image_left_tim": 59, "last_image_right": 59, "last_image_right_tim": 59, "left_image_top": 59, "right_image_top": 59, "slop": 59, "synchron": [59, 81], "numpi": [59, 62, 66, 67, 71, 78, 94, 111], "front": [59, 83, 94, 102, 108], "image_rect_color": [59, 78], "signatur": [59, 85, 93, 94], "foo": 59, "left_img": 59, "right_img": 59, "pair": [59, 66, 85, 94, 108], "latest": [59, 80, 84, 91, 93, 98, 111], "exact": [59, 68, 91], "throw": [59, 64, 85, 94], "unsubscrib": [59, 97], "enable_dis": 59, "is_go": 59, "publish_plot": 59, "dpi": 59, "2d": [59, 63, 78, 97, 111], "np": [59, 62, 66, 67, 68, 71, 74, 78, 94, 111], "init_nod": 59, "my_nod": 59, "my_plott": 59, "my_plotter_top": 59, "titl": [59, 61, 84, 85], "sin": 59, "wave": 59, "data_s": 59, "y1": [59, 85], "rand": [59, 94], "x1": [59, 85], "arang": 59, "x2": [59, 85], "linspac": 59, "y2": [59, 85], "vstack": 59, "req": [59, 67, 69, 71, 111], "setboolrequest": [59, 67, 77, 111], "setboolrespons": [59, 67, 77, 111], "v_line": 59, "subsystem": [60, 90, 109], "mathemat": 60, "sanit": 60, "mil_miss": [60, 64], "pcodar": 60, "remote_control_lib": 60, "ros_alarm": [60, 77, 99], "mil_usb_to_can": 60, "vision": [60, 63, 77, 102, 108, 116], "mil_poi": [60, 77], "poi": 60, "sabertooth2x12": 60, "sabertooth": 60, "2x12": 60, "get_ch": 61, "stdin": 61, "keyboardinterrupt": 61, "eoferror": 61, "characetr": 61, "fprint": 61, "msg_color": 61, "auto_bold": 61, "newlin": [61, 85], "factori": 61, "printer": 61, "bold": 61, "url": [61, 85, 87, 90, 94, 100], "output_filenam": 61, "filenam": [61, 75, 78], "download_and_unzip": [61, 87], "output_dir": [61, 87], "zip": [61, 87, 115], "unzip": [61, 87], "ioerror": [61, 87], "slugifi": 61, "lowercas": 61, "alpha": [61, 63], "hyphen": 61, "rotate_vect_by_quat": 62, "quaterion": 62, "vq": 62, "skew_symmetric_cross": 62, "skew": 62, "symmetr": 62, "cross": [62, 63, 68, 77], "deskew": 62, "dtype": [62, 78], "scalartyp": 62, "revers": [62, 72, 78, 108], "divid": [62, 68, 94], "norm": 62, "arraylik": [62, 78], "compose_transform": 62, "translat": [62, 63, 78, 111], "make_rot": 62, "vector_a": 62, "vector_b": 62, "align": [62, 85, 89, 108], "dot": [62, 90], "quat_to_rotvec": 62, "quat": [62, 85], "euler_to_quat": 62, "rotvec": 62, "pend": 63, "simpleactioncli": [63, 64], "truli": 63, "third": [63, 77, 81, 98, 111], "theta": [63, 66, 78], "36": [63, 101], "child_frame_id": 63, "angular": [63, 66, 68, 111], "torqu": [63, 66, 68, 72, 111], "mil_msg": [63, 69, 78, 111], "nav_msg": 63, "pa": 63, "pf": 63, "remote_conn": 63, "sa": 63, "sf": 63, "induc": 63, "acoustic_ping": 63, "buoy_field": 63, "coral_survei": 63, "detect_deliver_platform": 63, "empty_spac": 63, "fake_identify_and_dock": 63, "fake_scan_the_cod": 63, "fake_shoot": 63, "find_the_break": 63, "gate1": 63, "gate2": 63, "gate3": 63, "identify_and_dock": 63, "start_gate_buoi": 63, "totem": 63, "pclinlier": 63, "shooter": [63, 70, 72, 77], "start_gat": [63, 71], "fake": 63, "gate_1": 63, "gate_2": 63, "gate_3": 63, "buoyfield": 63, "findbreak": 63, "coralsurvei": 63, "acoust": [63, 77], "pinger": [63, 67, 77, 112], "acousticping": 63, "emptyspac": 63, "point32": 63, "pcl": [63, 69, 78, 93, 111], "fit": [63, 78, 94], "hostnam": 63, "group": [63, 89], "nav": [63, 106, 108, 115], "wamv": [63, 74], "ubnt": 63, "vlp16": 63, "sick": 63, "lms111": 63, "sample_r": [63, 67], "hydrophon": [63, 67, 107], "h0": 63, "h1": 63, "h2": 63, "h3": 63, "hydrophone_sampl": 63, "amplitud": 63, "freq": [63, 67], "trigger_tim": 63, "sequenc": [63, 68, 78, 111], "consecut": 63, "increas": [63, 78, 86, 94, 96], "rostim": [63, 66, 72], "rgb": 63, "green": [63, 77, 84, 89, 90, 94, 109, 113], "blue": [63, 77, 78, 109], "is_bigendian": 63, "endian": 63, "int16": 63, "int8": 63, "uint16": 63, "uint32": 63, "datatyp": 63, "is_dens": 63, "point_step": 63, "row_step": 63, "unord": 63, "channel_temperatur": 63, "commanded_veloc": 63, "measured_posit": 63, "measured_veloc": 63, "motor_curr": 63, "motor_pow": 63, "motor_temperatur": 63, "supply_curr": 63, "roboteq_msg": 63, "parti": [63, 98], "rad": [63, 111], "6m": 63, "volt": 63, "amp": 63, "temperatur": 63, "celsiu": 63, "fet": 63, "fault_emergency_stop": 63, "fault_mosfet_failur": 63, "fault_overheat": 63, "fault_overvoltag": 63, "fault_sepex_excitation_fault": 63, "fault_short_circuit": 63, "fault_startup_config_fault": 63, "fault_undervoltag": 63, "status_analog_mod": 63, "status_at_limit": 63, "status_microbasic_script_run": 63, "status_power_stage_off": 63, "status_pulse_mod": 63, "status_serial_mod": 63, "status_stall_detect": 63, "adc_voltag": 63, "ic_temperatur": 63, "internal_voltag": 63, "overh": 63, "littl": [63, 81, 83, 85, 86, 87, 90, 94, 109, 110], "short": [63, 84, 85, 94], "emerg": [63, 72], "32": [63, 67, 115], "mosfet": 63, "64": 63, "startup": 63, "128": [63, 75], "puls": [63, 70], "analog": [63, 109], "stall": 63, "microbas": 63, "chip": 63, "digit": 63, "centerx": 63, "centeri": 63, "triangl": [63, 77], "color_confid": 63, "shape_confid": 63, "presenc": [63, 108], "string_pattern": 63, "decode_paramet": 64, "get_miss": 64, "has_miss": 64, "setup_bas": 64, "shutdown_bas": 64, "run_submiss": 64, "send_feedback": 64, "send_feedback_child": 64, "submiss": 64, "decod": [64, 87], "parametersexcept": 64, "cli": 64, "mycoolmiss": 64, "moment": [64, 78, 84], "unrecogn": 64, "prefix": [64, 93], "movementmiss": 64, "myfancyrobotmiss": 64, "my_sub": 64, "my_top": 64, "mymessag": 64, "mission_runn": 64, "missionrunn": 64, "makechainwithtimeout": 64, "reus": 64, "missionexcept": 64, "timeoutexcept": 64, "explanatori": 64, "inconsist": [64, 108], "submissionexcept": 64, "available_miss": 64, "cancel_miss": 64, "run_miss": 64, "bootstrap": [64, 78], "done_cb": 64, "active_cb": 64, "feedback_cb": 64, "_goalstatu": 64, "transit": [64, 93], "orchestr": [65, 111], "mil_missions_cor": 65, "pose_to_numpi": 66, "rosmsg_to_numpi": 66, "twist_to_numpi": 66, "twist": [66, 111], "posetwist_to_numpi": 66, "posetwist": [66, 111], "odometry_to_numpi": 66, "wrench_to_numpi": 66, "numpy_to_point": 66, "numpy_to_point2d": 66, "point2d": [66, 78, 111], "numpy_to_quaternion": 66, "np_quaternion": 66, "numpy_to_twist": 66, "linear_vel": 66, "angular_vel": 66, "numpy_to_wrench": 66, "forcetorqu": 66, "numpy_matrix_to_quaternion": 66, "np_matrix": 66, "3x3": [66, 78, 109, 111], "numpy_pair_to_pos": 66, "np_translat": 66, "np_rotation_matrix": 66, "numpy_quat_pair_to_pos": 66, "numpy_to_polygon": 66, "polygon": [66, 69, 78], "numpy_to_vector3": 66, "vec": [66, 78], "vector3": [66, 77], "numpy_to_pose2d": 66, "pose2d": 66, "numpy_to_colorrgba": 66, "colorrgba": [66, 74], "numpy_to_pointcloud2": 66, "pointcloud2": [66, 111], "make_head": 66, "make_wrench_stamp": 66, "wrenchstamp": [66, 68], "make_pose_stamp": 66, "posestamp": [66, 68, 77], "v_sound": 67, "dist_h": 67, "dist_h4": 67, "tradit": [67, 85, 94], "fresh": [67, 71, 101], "1497": 67, "zero_mean": 67, "rescap": 67, "li": [67, 96], "compute_freq": 67, "freq_rang": 67, "solid": 67, "bin_to_freq": 67, "fft_length": 67, "freq_to_bin": 67, "preprocess": 67, "desired_sample_r": 67, "upsampl": 67, "approx": [67, 78], "bandpass": 67, "appli": [67, 78, 85, 90, 110, 111], "fir": 67, "compute_delta": 67, "max_delai": 67, "template_dur": 67, "subsequ": [67, 79], "make_templ": 67, "25": [67, 78], "lower": [67, 68, 78, 108], "match_templ": 67, "calculate_error": 67, "slide": 67, "find_minimum": 67, "quadrat": 67, "interpol": [67, 68, 94], "compute_pos_4hyd": 67, "declin": 67, "sph_dist": 67, "bunch": [67, 81, 86, 116], "trig": 67, "phrase": [67, 85], "nllsq": 67, "dir_callback": 67, "get_direct": 67, "get_last_posit": 67, "get_posit": 67, "heading_cb": 67, "set_callback": 67, "asycio": 67, "heading_msg": 67, "vector3stamp": [67, 74], "trans_width": 67, "convolv": 67, "is_ready_to_make_filt": 67, "make_filt": 67, "streamed_bandpass": 67, "care": [67, 81, 85, 87, 109, 111], "overlap": 67, "bound": [67, 69, 78], "magic": [67, 85, 105], "higher": [67, 78, 89, 90, 96, 108], "slower": 67, "remez": 67, "general_low": 67, "general_upp": 67, "window_tim": 67, "filter_respons": 67, "hydrophones_cb": 67, "happen": [67, 84, 96], "target": [67, 71, 77, 78, 85, 108, 111, 112], "khz": 67, "hydrophonesamplesstamp": 67, "triggerrequest": 67, "triggerrespons": 67, "meth": 67, "ping_cb": 67, "samples_per_second": 67, "private_nh": 67, "privat": [67, 69, 78, 85], "hydrophonesampl": 67, "tri": [67, 68, 91, 110], "size_t": [67, 69, 78, 111], "2e6": 67, "set_buff": 68, "set_feasibility_funct": 68, "nstate": 68, "ncontrol": 68, "goal_buff": 68, "is_feas": 68, "effort": [68, 91, 111], "half": [68, 90, 113], "edg": [68, 78], "region": [68, 77, 78], "feasibl": [68, 107], "kill_upd": 68, "set_goal": 68, "set_resolut": 68, "set_runtim": 68, "set_system": 68, "unkil": [68, 89, 111, 113], "update_plan": 68, "lqr": 68, "horizon": 68, "dt": [68, 111], "05": [68, 111], "fpr": 68, "error_tol": 68, "erf": 68, "ufunc": 68, "min_tim": 68, "max_tim": 68, "max_nod": 68, "100000": 68, "goal0": 68, "sys_tim": 68, "u": [68, 84], "timestep": 68, "That": [68, 79, 85, 86, 93, 96, 105, 109, 116], "xnext": 68, "polici": 68, "k": [68, 78, 93, 94, 111, 113], "riccati": 68, "equat": [68, 111], "min": [68, 69], "heurist": 68, "retent": 68, "factor": [68, 78], "grown": 68, "infeas": 68, "fraction": 68, "retain": 68, "converg": 68, "xgoal": 68, "grow": [68, 94], "plan_reached_go": 68, "closest": [68, 77, 78], "stuff": [68, 94], "abrupt": 68, "routin": 68, "resolut": [68, 78, 111], "vi": 68, "versa": 68, "mistak": [68, 81, 84, 96, 108], "x0": 68, "sample_spac": 68, "goal_bia": 68, "xrand_gen": 68, "prune": 68, "finish_on_go": 68, "specific_tim": 68, "seed": 68, "get_stat": 68, "get_effort": 68, "motiv": [68, 108], "uniform": 68, "min1": 68, "max1": 68, "min2": 68, "max2": 68, "arbitrari": [68, 78], "Or": [68, 84, 94], "fastest": 68, "breach": 68, "nearest": [68, 69], "growth": 68, "nonholonom": 68, "hault": 68, "exce": 68, "dx": 68, "dy": [68, 114], "highlight": [68, 79], "trajectori": [68, 72, 110], "index": [68, 78, 94, 96], "add_nod": 68, "climb": 68, "seed_stat": 68, "seed_lqr": 68, "pid": [68, 106], "x_seq": 68, "u_seq": 68, "destin": 68, "x_seq_ful": 68, "u_seq_ful": 68, "node_seq": 68, "path_pub": 68, "ref_pub": 68, "revisit_period": 68, "tree_pub": 68, "unreach": 68, "action_check": 68, "angle_diff": 68, "boundary_analysi": 68, "move_cb": 68, "odom_cb": 68, "ogrid_cb": 68, "pack_odom": 68, "pack_pointstamp": 68, "pack_pos": 68, "pack_posestamp": 68, "pack_wrenchstamp": 68, "publish_expl": 68, "publish_path": 68, "publish_ref": 68, "publish_tre": 68, "reevaluate_plan": 68, "rotation_mov": 68, "select_behavior": 68, "select_explor": 68, "spiral_mov": 68, "tree_chain": 68, "unpack_odom": 68, "unpack_pos": 68, "path_plann": 68, "lqrrt_node": 68, "odom_top": 68, "ref_top": 68, "move_top": 68, "path_top": 68, "tree_top": 68, "goal_top": 68, "focus_top": 68, "effort_top": 68, "ogrid_top": 68, "ogrid_threshold": 68, "ogrid": [68, 69], "occupancygrid": 68, "refresh": [68, 90, 97], "posearrai": 68, "moveact": 68, "threshold": [68, 111], "simpleactionserv": 68, "occup": [68, 111], "grid": [68, 78, 111], "fill": [68, 78, 90, 111], "timerev": [68, 111], "angle_go": 68, "so2": 68, "grab": [68, 84], "boundari": 68, "contour": [68, 78, 111], "intup": 68, "pixel": [68, 74, 77, 78], "occupi": 68, "goal_stat": 68, "reevalu": 68, "polygonstamp": 68, "ref": [68, 115], "newest": 68, "escap": [68, 86], "tol": 68, "toler": [68, 77], "moduletyp": 68, "bia": [68, 109], "direc": 68, "mpr": 68, "revolut": 68, "axi": [68, 89, 97, 110], "expans": [68, 111], "radian": [68, 78, 111], "chain": 68, "databas": [69, 77, 89], "point_cloud_object_detection_and_recognit": 69, "pcodarconfig": 69, "point_t": 69, "pointxyz": [69, 78], "point_cloud": 69, "point_cloud_ptr": 69, "ptr": [69, 111], "pointer": [69, 78], "point_cloud_const_ptr": 69, "constptr": [69, 78, 111], "kdtree": 69, "kdtreeptr": 69, "cluster_t": 69, "pointindic": [69, 111], "cluster": [69, 111], "clusters_t": 69, "set_bound": 69, "set_robot_footprint": 69, "set_robot_pos": 69, "footprint": 69, "pc": [69, 111], "vertici": 69, "eigen": [69, 78, 111], "vector4f": 69, "affine3d": [69, 111], "update_mark": 69, "classif": [69, 78], "shared_ptr": [69, 78, 111], "objects_": 69, "publishedj": 69, "update_config": 69, "persist": [69, 78], "prev_object": 69, "get_clust": 69, "nearbi": [69, 114], "get_cent": 69, "get_point": 69, "get_points_ptr": 69, "get_search_tre": 69, "set_classif": 69, "set_id": 69, "update_point": 69, "metadata": [69, 78], "uint": 69, "search_tre": 69, "mil_gazebo": 69, "pcodargazebo": 69, "highest_id_": 69, "just_removed_": 69, "databasequeri": 69, "add_object": 69, "erase_object": 69, "to_msg": 69, "decltyp": 69, "perceptionobjectarrai": [69, 111], "objectdbqueri": [69, 111], "eras": [69, 111], "unordered_map": 69, "draw_boundari": 69, "update_ogrid": 69, "updateobject": 69, "processes": 69, "pcodar_gazebo": 69, "velodyne_cb": 69, "pointcloud2constptr": 69, "pcloud": 69, "add_point_cloud": 69, "get_point_cloud": 69, "accumul": [69, 83], "oldest": [69, 78, 94, 111], "pnuematicactuatordrivererror": 70, "pnuematicactuatordriverchecksumerror": 70, "checksum_i": 70, "checksum_should_b": 70, "pnuematicactuatordriverresponseerror": 70, "pnuematicactuatortimeouterror": 70, "close_port": 70, "get_port": 70, "open_port": 70, "set_port": 70, "dropper": 70, "grabber": 70, "nname": 70, "malfunct": [70, 109], "hexadecim": 70, "close_respons": 70, "open_respons": 70, "do_open": 70, "anywai": [70, 85, 86], "checksum_cod": 70, "close_request_bas": 70, "open_request_bas": 70, "ping_request": 70, "ping_respons": 70, "read_request_bas": 70, "create_checksum": 70, "deserialize_packet": 70, "serialize_packet": 70, "verify_checksum": 70, "deseri": 70, "packet": [70, 75, 111], "landscap": 71, "headstart": 71, "poi_serv": 71, "addpoirequest": [71, 77], "addpoirespons": [71, 77], "deletepoirequest": [71, 77], "deletepoirespons": [71, 77], "movepoirequest": [71, 77], "movepoirespons": [71, 77], "points_of_interest": 71, "visualization_msg": 71, "interactivemarkerupd": 71, "update_top": 71, "sphere": [71, 74], "ax": [71, 97], "submerg": 71, "global_fram": 71, "initial_poi": 71, "marker_scal": 71, "add_poi_cb": 71, "delete_poi_cb": 71, "move_poi_cb": 71, "process_feedback": 71, "transform_posit": 71, "radiu": [71, 111], "addpoi": 71, "deletepoi": 71, "remove_poi": 71, "movepoi": 71, "interactivemarkerfeedback": 71, "ps": 71, "only_fresh": 71, "3x1": 71, "deconstruct": 71, "clear_wrench": 72, "deploy_thrust": 72, "publish_wrench": 72, "retract_thrust": 72, "select_autonomous_control": 72, "select_emergency_control": 72, "select_keyboard_control": 72, "select_next_control": 72, "select_rc_control": 72, "set_disc_spe": 72, "shooter_cancel": 72, "shooter_fir": 72, "shooter_linear_extend": 72, "shooter_linear_retract": 72, "shooter_load": 72, "shooter_reset": 72, "station_hold": 72, "toggle_kil": 72, "remotecontrol": 72, "controller_nam": 72, "wrench_pub": 72, "regardless": 72, "retract": 72, "keyboard": [72, 77, 80, 86, 90], "teleoper": [72, 116], "xbox": 72, "disc": 72, "scale": [72, 74, 78, 89, 109], "fire": [72, 105], "6s": 72, "toggl": 72, "toggle_kill_button": 72, "thread_lock": 73, "allocate_lock": 73, "decortor": 73, "my_funct": 73, "wait_for_param": 73, "param_nam": 73, "poll_rat": 73, "intention": 73, "duti": 73, "hz": 73, "came": [73, 108], "wait_for_subscrib": 73, "subscript": [73, 78], "estalish": 73, "warn_tim": 73, "warn_msg": 73, "fanci": 73, "logwarn": 73, "draw_spher": 74, "m_id": 74, "base_link": 74, "draw": [74, 78, 97, 99, 108], "draw_ray_3d": 74, "pix_coord": 74, "camera_model": [74, 78, 111], "stereo_front": 74, "35": 74, "rai": 74, "stereo_font": 74, "make_rai": 74, "infinit": 74, "lifetim": 74, "vector_to_mark": 74, "vector_top": 74, "marker_top": 74, "fact": [74, 96], "argpars": 74, "point_cb": 74, "point_to_dict": 74, "write_fil": 74, "clicked_point_record": 74, "csv": [74, 78, 97], "network_broadcast": 74, "recur": [74, 96, 111], "make_packet": 75, "sim": [75, 108], "send_packet": 75, "set_motor1": 75, "set_motor2": 75, "regen": 75, "unsign": [75, 78], "simulatedseri": 75, "hexifi": 76, "buff": 76, "hex": 76, "commandpacket": 76, "p_byte": 76, "to_byt": 76, "c0": 76, "14": 76, "09": 76, "48": 76, "45": 76, "4c": 76, "4f": 76, "c1": [76, 78], "in_wait": 76, "reset_input_buff": 76, "candid": 76, "inspect": [76, 96], "acousticbeaconrequest": 77, "settabl": 77, "beacon_posit": 77, "setvalu": 77, "acousticbeaconrespons": 77, "beacon": 77, "circle_direct": 77, "target_anim": 77, "chooseanimalrequest": 77, "platyu": 77, "crocodil": 77, "clockwis": 77, "anti": 77, "movement_complet": 77, "chooseanimalrespons": 77, "colorrequestrequest": 77, "colorrequestrespons": 77, "findpingerrequest": 77, "num_sampl": 77, "pinger_posit": 77, "findpingerrespons": 77, "getdockbaysrequest": 77, "getdockbaysrespons": 77, "getdockshaperequest": 77, "invalid_request": 77, "node_dis": 77, "shape_not_found": 77, "too_small_sampl": 77, "symbol": [77, 94], "getdockshaperespons": 77, "dockshap": 77, "viabl": [77, 90], "getdockshapesrequest": 77, "getdockshapesrespons": 77, "explan": [77, 93, 94], "feeder": 77, "shootermanualrequest": 77, "shootermanualrespons": 77, "startgaterequest": 77, "startgaterespons": 77, "alarmgetrequest": 77, "alarmsetrequest": 77, "succe": 77, "alarmsetrespons": 77, "cameradbqueryrequest": 77, "cameradbqueryrespons": 77, "target_p": 77, "movetowaypointrequest": 77, "movetowaypointrespons": 77, "cmd": 77, "objectdbqueryrequest": 77, "yyi": 77, "objectdbqueryrespons": 77, "setfrequencyrequest": 77, "setfrequencyrespons": 77, "roi": [77, 78], "setroirequest": 77, "regionofinterest": 77, "outside_of_fram": 77, "setroirespons": 77, "detection_switch": 77, "model_param": 77, "num_point": 77, "processing_typ": 77, "stereoshapedetectorrequest": 77, "detector": 77, "stereoshapedetectorrespons": 77, "target_nam": [77, 111], "visionrequestrequest": 77, "covariance_diagon": 77, "visionrequestrespons": 77, "std_srv": [77, 111], "cameratolidartransformrequest": 77, "seen": [77, 78, 94, 108], "cloud_not_found": 77, "no_point": 77, "cameratolidartransformrespons": 77, "to_fram": 77, "coordinateconversionrequest": 77, "altitud": 77, "east": [77, 111], "north": [77, 111], "earth": 77, "coordinateconversionrespons": 77, "keycod": 77, "uuid": 77, "keyboardcontrolrequest": 77, "generated_uuid": 77, "is_lock": 77, "keyboardcontrolrespons": 77, "mil_vision_tool": 78, "auto_canni": 78, "sigma": 78, "median": 78, "canni": 78, "tune": 78, "grayscal": 78, "aggress": 78, "nois": 78, "contour_centroid": 78, "centroid": 78, "recalcul": [78, 94], "contour_mask": 78, "img_shap": 78, "column": 78, "puttext_ul": 78, "fontfac": 78, "fontscal": 78, "thick": 78, "linetyp": 78, "bottomleftorigin": 78, "puttext": 78, "shift": [78, 89, 90, 95, 109, 110, 113], "font": [78, 97], "font_hershey_complex_smal": 78, "points_in_imag": 78, "mx2": 78, "camera_mod": 78, "nx3": 78, "roi_enclosing_point": 78, "border": 78, "slice": [78, 94], "enclos": 78, "easili": [78, 96], "object_point": 78, "img_object": 78, "pinhol": 78, "ymin": 78, "ymax": 78, "xmin": 78, "xmax": 78, "rect_from_roi": 78, "rectangl": 78, "style": [78, 87, 92, 93, 97, 108], "tuple_from_slic": 78, "quaternion_from_rvec": 78, "rvec": 78, "solvepnp": 78, "create_object_msg": 78, "rect": 78, "objectinimag": 78, "vari": [78, 79, 90], "nx1x2": 78, "nx2": 78, "wide": [78, 86, 94, 108], "boundingrect": 78, "mil_vis": [78, 111], "larger_contour": 78, "c2": 78, "cv": [78, 111], "matnd": 78, "smooth_histogram": 78, "histogram": 78, "filter_kernel_s": 78, "generate_gaussian_kernel_1d": 78, "kernel_s": 78, "find_local_maxima": 78, "thresh_multipli": 78, "find_local_minima": 78, "select_hist_mod": 78, "histogram_mod": 78, "range_from_param": 78, "param_root": 78, "inparamrang": 78, "dest": [78, 111], "rotatekernel": 78, "kernel": 78, "deg": 78, "no_expand": 78, "version": [78, 86, 89, 90, 91, 98, 108], "counterclockwis": 78, "canva": 78, "makerotinvari": 78, "rotation": [78, 111], "invari": 78, "uniformli": 78, "spread": [78, 108], "angularli": 78, "getradialsymmetryangl": 78, "ang_r": 78, "radia": 78, "pcd": 78, "pcdptr": 78, "sptrvector": 78, "uptrvector": 78, "unique_ptr": [78, 111], "vector3d": [78, 111], "kanatani_triangul": 78, "pt1": [78, 111], "pt2": [78, 111], "matrix3d": 78, "essenti": [78, 90, 97, 109], "triangul": [78, 111], "kanatani": 78, "stereo": [78, 111], "horizont": 78, "codebas": [78, 86, 93, 94], "calcaul": 78, "statistical_image_segment": 78, "debug_img": 78, "hist_siz": 78, "image_nam": 78, "unnam": 78, "ret_dbg_img": 78, "low_thresh_gain": 78, "high_thresh_gain": 78, "triangulate_linear_l": [78, 111], "mat_p_l": 78, "mat_p_r": 78, "undistorted_l": 78, "undistorted_r": 78, "lindstrom_triangul": 78, "image_dir": 78, "labelfil": 78, "training_fil": 78, "class_to_str": 78, "classifi": 78, "classify_featur": 78, "extract_label": 78, "feature_prob": 78, "get_featur": 78, "read_from_csv": 78, "save_csv": 78, "score": 78, "string_to_class": 78, "train_from_csv": 78, "gaussiancolorclassifi": 78, "concret": 78, "red_mean": 78, "blue_mean": 78, "green_mean": 78, "numer": 78, "probab": 78, "extract": [78, 114], "labelbox": 78, "_supportsarrai": 78, "_nestedsequ": 78, "npt": 78, "n_sampl": 78, "m_featur": 78, "correct_classifici": 78, "len": [78, 93, 94], "conversion_cod": 78, "in_spac": 78, "thresh_spac": 78, "from_dict": [78, 111], "from_param": 78, "create_trackbar": 78, "bgr": 78, "colorpac": 78, "180": [78, 96], "50": [78, 90], "190": 78, "200": 78, "hsv": 78, "colorspac": 78, "color_rgb2grai": 78, "attributeerror": 78, "trackbar": 78, "adjust": [78, 89, 90, 110, 111], "66": 78, "border_color": 78, "border_thick": 78, "keep_ratio": 78, "pane_s": 78, "text_color": 78, "text_font": 78, "text_scal": 78, "text_thick": 78, "get_imag": 78, "set_imag": 78, "480": 78, "640": 78, "customiz": [78, 100], "squar": 78, "image_mnux": 78, "pane": [78, 86], "col": [78, 85], "stretch": 78, "insert": [78, 80, 90, 98, 105, 107], "resiz": 78, "color_encod": 78, "mono": 78, "rect_color": 78, "mono8": 78, "rectifi": [78, 83], "image_proc": 78, "processor": [78, 90], "debay": 78, "bitmask": 78, "raw_msg": 78, "intic": 78, "imagecolor": 78, "ag": 78, "created_at": 78, "expiration_second": 78, "max_dist": 78, "max_id": 78, "add_observ": 78, "clear_expir": 78, "get_persistent_object": 78, "disanc": 78, "metric": 78, "finicki": 78, "kept": [78, 85, 111], "THe": 78, "amongst": [78, 86, 116], "increment": [78, 96], "longest": 78, "expir": 78, "min_observ": 78, "min_ag": 78, "criteria": 78, "model_3d": 78, "sort_corn": 78, "from_polygon": 78, "draw_model": 78, "get_corn": 78, "get_pose_2d": 78, "get_pose_3d": 78, "to_polygon": 78, "verify_contour": 78, "shorter": [78, 90, 94], "500": 78, "drawn": 78, "whichev": [78, 87], "debug_imag": 78, "epsilon_rang": 78, "01": [78, 98], "epsilon_step": 78, "quadrilater": 78, "sort": [78, 84, 94], "epsilon": 78, "arclength": 78, "4x2": 78, "intrins": 78, "dist_coeff": 78, "intrinis": 78, "distort": [78, 83, 107], "coeffici": [78, 111], "rodrigu": 78, "comparison": [78, 94], "find_object": 78, "abc": [78, 81], "unifi": 78, "applyperturb": 78, "validatecurv": 78, "point2i": 78, "curv": 78, "compris": [78, 108], "uint8_t": 78, "idx": 78, "getcameramodelptr": 78, "get_color_observ": 78, "pcd_in_top": 78, "cam_top": 78, "image_geometri": [78, 111], "vecimg": 78, "xyz": 78, "mat_": 78, "var": 78, "_color_pcd": 78, "_transform_to_cam": 78, "input_pcd_top": 78, "output_pcd_top": 78, "rgb_cam_top": 78, "rgb_cam_fram": 78, "in_pcd_top": 78, "asid": 78, "_8uc1": 78, "_8sc1": 78, "_16uc1": 78, "_16sc1": 78, "_32sc1": 78, "_32fc1": 78, "_64fc1": 78, "_8uc2": 78, "_8sc2": 78, "_16uc2": 78, "_16sc2": 78, "_32sc2": 78, "_32fc2": 78, "_64fc2": 78, "_8uc3": 78, "_8sc3": 78, "_16uc3": 78, "_16sc3": 78, "_32sc3": 78, "_32fc3": 78, "_64fc3": 78, "_8uc4": 78, "_8sc4": 78, "_16uc4": 78, "_16sc4": 78, "_32sc4": 78, "_32fc4": 78, "_64fc4": 78, "_unknown": 78, "copyimgto": 78, "getimagescal": 78, "iscamerageometryknown": 78, "cam_model_ptr_t": 78, "img_scalar_t": 78, "time_t_": 78, "float_t": 78, "imageconstptr": [78, 111], "image_msg_ptr": 78, "cam_model_ptr": 78, "is_rectifi": 78, "store_at_scal": 78, "geometri": 78, "camrea": 78, "disort": 78, "rectif": 78, "image_tim": [78, 111], "info_msg_ptr": 78, "camerainfoconstptr": [78, 111], "_image_msg_ptr": 78, "_info_msg_ptr": 78, "history_s": 78, "frames_avail": 78, "get_frame_histori": 78, "image_callback": [78, 111], "portion": 78, "img_top": 78, "image_msg": 78, "info_msg": [78, 111], "frames_request": 78, "getframefromtim": 78, "isgeometryconst": 78, "camfram": 78, "camframeptr": 78, "camframeconstptr": 78, "camframesequ": 78, "circularbuff": 78, "circular_buff": 78, "forbidden": 78, "nth": 78, "frame_sequ": 78, "init": [78, 91, 100], "buffer_s": 78, "camera_top": 78, "desired_tim": 78, "switchactiv": 78, "output_t": 78, "input_t": 78, "boiler": 78, "plate": 78, "image_arg": 78, "getlastimagetim": 78, "imagecallbackcopi": 78, "imagecallbackrefer": 78, "infocallback": 78, "waitforcamerainfo": 78, "waitforcameramodel": 78, "valuabl": [78, 97], "gracefulli": 78, "use_copi": 78, "unsur": 78, "pinhole_camera": 78, "pineholecameramodel": 78, "fantast": [79, 85], "countless": [79, 91], "rememb": [79, 85, 93, 94], "flexibl": [79, 86, 87, 96, 116], "lite": 79, "preview": 79, "clone": 79, "j8": [79, 90], "recurs": [79, 90, 91, 100], "submodul": [79, 90, 91, 92], "collabor": 79, "pip3": [79, 86], "txt": [79, 85, 86, 96], "css": 79, "codeblock": 79, "haven": [79, 96, 100], "scratch": 79, "pygment": 79, "uf_mil_pyg": 79, "folder": [79, 84, 87, 89, 94, 96, 100], "pip": [79, 86], "docstr": [79, 93], "reflect": [79, 111], "syntax": [79, 81, 85, 92, 93, 108], "build_doc": [79, 93], "aren": [79, 84, 93, 94, 96], "sphinx": [79, 87], "ideal": [79, 81, 87], "permit": 80, "dual": 80, "boot": [80, 95, 105], "armv8": 80, "parallel": 80, "desktop": [80, 90, 101], "vm": [80, 90, 95], "iso": [80, 85, 90], "prompt": [80, 84, 86, 88, 95], "languag": [80, 81, 86, 90, 93], "english": [80, 94], "menu": [80, 90, 95, 97], "proceed": 80, "textual": 80, "partit": [80, 90], "disk": [80, 90], "dn": 80, "sudo": [80, 86, 90, 97, 98, 109], "apt": [80, 86, 90, 97, 98], "upgrad": [80, 86, 90, 98], "tasksel": 80, "reboot": [80, 91, 98], "sign": [80, 90, 93, 101, 108], "password": [80, 88, 90, 92], "concurr": 81, "predecessor": 81, "heavili": 81, "nearli": [81, 109], "shouldn": [81, 84], "figur": [81, 91, 96, 97, 109], "cancellableinlinecallback": 81, "inlinecallback": 81, "some_sleep_help": 81, "other_coroutin": 81, "returnvalu": 81, "other_exampl": 81, "enhanc": [81, 97], "nest": [81, 85, 89, 94, 100], "nice": [81, 85, 86, 87, 105], "abil": [81, 94, 97], "popul": 81, "paus": [81, 86, 89, 97], "reres": 81, "wait_for": 81, "manner": 81, "shield": 81, "weari": 81, "providd": 81, "entrypoint": 81, "hog": 81, "uh_oh": 81, "simplest": 81, "gimme_a_test": 81, "set_result": 81, "my_special_nod": 81, "special_point": 81, "faster": [81, 90, 91, 96], "euo": 82, "pipefail": 82, "my_script": 82, "rule": [82, 85, 94, 102], "indent": [82, 90], "reconstruct": 83, "scene": 83, "camera_calibr": 83, "cameracalibr": 83, "sturdi": 83, "checkerboard": 83, "curvi": 83, "misalign": 83, "scari": 84, "though": [84, 85, 87, 94], "person": [84, 86, 108, 115], "realli": [84, 86, 111, 113], "hurt": 84, "anyon": [84, 94], "mess": [84, 93], "sweet": [84, 93], "protect": [84, 85, 94], "approv": 84, "pressur": [84, 85, 94, 109, 114, 115], "okai": [84, 85, 90, 93], "spell": [84, 86], "trail": [84, 85], "whitespac": [84, 86], "chanc": [84, 86, 90, 108], "unfamiliar": 84, "think": [84, 85, 91, 96, 108], "branchnam": 84, "dash": [84, 94], "diff": 84, "unstag": 84, "sensit": [84, 108], "unrel": 84, "homework": 84, "aka": [84, 90], "dialog": 84, "pr": 84, "yellow": 84, "friendli": [84, 85, 97], "checkmark": 84, "prime": 84, "bright": 84, "bug": [84, 91, 93, 96], "strive": 84, "24": 84, "prodigi": 84, "lazi": 84, "hopefulli": [84, 108, 109], "tediou": 84, "rebas": [84, 100], "conflict": 84, "briefli": [85, 94], "crazi": [85, 94], "de": 85, "facto": 85, "question": [85, 91, 98], "propos": 85, "googl": [85, 91, 94], "complement": 85, "loos": [85, 108], "guidelin": [85, 94], "philosoph": 85, "pull": [85, 90, 91, 96, 111, 115], "noetic": [85, 86, 92, 97], "alabast": 85, "clang": 85, "plethora": 85, "compli": 85, "nut": 85, "brief": [85, 94, 116], "autom": [85, 96, 108], "innovt": 85, "p1": 85, "cryptic": 85, "specialobjectfind": 85, "getlocationfirstimag": 85, "oh": [85, 86, 87], "slim": 85, "cmakelist": [85, 96], "underscor": [85, 94], "guess": [85, 87], "cc": 85, "cxx": 85, "drschwartz": 85, "gcpuimplement": 85, "camel": 85, "capit": 85, "undotransform": 85, "exampleclass": 85, "constructfrommessag": 85, "accessor": 85, "mutat": 85, "set_spe": 85, "woah": 85, "setter": 85, "get_spe": 85, "speed_": 85, "snake": 85, "thisisnotgood": 85, "this_is_good": 85, "examplefunct": 85, "argon": 85, "awesomephras": 85, "arg_on": 85, "awesome_phras": 85, "needlessli": [85, 94], "suppos": [85, 93], "wsy": 85, "was_seen_yesterdai": 85, "ah": 85, "speed_of_light": 85, "internal_attribute_": 85, "prepend": [85, 94], "g_": 85, "g_global_attribut": 85, "qualifi": 85, "lookup": 85, "large_hadron_collid": 85, "120": 85, "prefer": [85, 86, 90, 94, 97, 109, 114], "guard": 85, "declar": [85, 87], "complain": 85, "radix": 85, "exponenti": 85, "notat": 85, "nope": 85, "ld": 85, "5l": 85, "0f": 85, "awesom": [85, 86, 93, 96], "f2": [85, 89], "1254e4": 85, "huge_again": 85, "1254": 85, "0e4": 85, "excess": [85, 105], "funnyfunct": 85, "huge_argument_number_one_oh_my_this_is_long": 85, "argument_two": 85, "argument_thre": 85, "arugmnet": 85, "weirdmathfunct": 85, "sqrt": 85, "scientist": 85, "createmagicsquar": 85, "x3": 85, "y3": 85, "z1": 85, "z2": 85, "z3": 85, "example_term": 85, "simple_test": 85, "simplecal": 85, "this_works_too": 85, "condition_is_tru": 85, "claus": 85, "parenthes": [85, 93, 94], "likewis": [85, 91, 94], "this_is_perfect": 85, "wow_you_did_it": 85, "fallthrough": 85, "exclus": 85, "17": 85, "tire": 85, "drinkcoffe": 85, "spin_forev": 85, "misread": 85, "char": 85, "charclass": 85, "sad": 85, "face": [85, 108, 109], "fine": [85, 86, 90, 114], "examin": 85, "test_condit": 85, "lets_go_crazi": 85, "startcrazymod": 85, "endif": [85, 96], "cleanup": [85, 96], "baseclass": 85, "somefunct": 85, "some_var_": 85, "special_char_": 85, "cook": 85, "pan": 85, "pourcupcak": 85, "cupcak": 85, "retrievecupcak": 85, "cupcakes_": 85, "semicolon": 85, "colon": [85, 94], "tradition": 85, "unari": 85, "thought": 85, "scope": 85, "troubl": [85, 86], "unfriendli": 85, "smile": 85, "hope": [85, 86, 96, 116], "pollut": 85, "love": [85, 116], "judici": [85, 94], "wherev": [85, 90], "viral": 85, "ros_assert": 85, "consol": 85, "rosconsol": 85, "ros_deprec": 85, "cardcount": 85, "myclass": 85, "specialfunct": 85, "stick": [86, 115], "polietli": 86, "lint": 86, "unneed": 86, "And": [86, 87, 91], "hook": [86, 108], "skip": [86, 111], "popular": [86, 90, 94], "diagnost": [86, 105], "vscode": [86, 94], "pycharm": 86, "clion": 86, "coordinta": 86, "book": 86, "game": [86, 89], "fork": [86, 90], "modif": 86, "painless": [86, 90], "spacevim": 86, "lunarvim": 86, "spf13": 86, "nvchad": 86, "inclin": 86, "walkthrough": 86, "jk": 86, "lsp": 86, "nvim": 86, "lspconfig": 86, "formatt": 86, "null": 86, "beauti": [86, 93, 94], "colorschem": 86, "vimawesom": 86, "famou": 86, "multiplex": 86, "sheet": 86, "tmuxcheatsheet": 86, "exteremli": 86, "consum": 86, "tx": 86, "tmuxinatorconfig": 86, "shell": [86, 90, 94, 101], "explor": 86, "sh": [86, 90], "shebang": [86, 93], "bashrc": 86, "alias": 86, "theme": [86, 112], "mainstream": 86, "zshrc": 86, "powerlevel10k": 86, "rst": 87, "render": [87, 113], "primer": 87, "parser": [87, 94], "md": 87, "evid": 87, "danger": 87, "alon": 87, "gosh": 87, "grasp": 87, "concaten": 87, "hint": 87, "fake_fil": 87, "stringio": 87, "zip_": 87, "zipfil": 87, "file_path": 87, "namelist": 87, "file_nam": 87, "file_lik": 87, "utf": 87, "wow": 87, "autofunct": 87, "autoclass": 87, "consult": 87, "javadoc": 87, "pois": 87, "sens": [87, 91, 94], "restructuredtext": 87, "focus": [87, 97], "subdirectori": 87, "deem": 87, "toctre": 87, "maxdepth": 87, "my_articl": 87, "meeting_schedul": 87, "hidden": [87, 89, 94], "toc": 87, "peek_a_boo": 87, "sdk": 88, "blueview": 88, "install_bvtsdk": 88, "pointgrei": 88, "flycaptur": 88, "install_flycap": 88, "encrypt": [88, 90], "x64": 88, "arm": [88, 90], "install_udev_rul": 88, "manipul": 89, "uniti": 89, "fidel": 89, "classic": 89, "app": [89, 90], "alt": 89, "fn": 89, "graphic": [89, 97, 98, 109, 114], "amonitor": [89, 113], "startgate2022": 89, "greet": 89, "drag": [89, 97, 110, 111], "hide": [89, 94], "mandatori": [89, 107, 108], "sdf": 89, "tag": [89, 96], "visual_0": 89, "mobil": 89, "cursor": 89, "diagram": [89, 90], "trackpad": 89, "dae": 89, "stl": 89, "mesh": 89, "slight": 89, "hierarchi": 89, "model1": 89, "model_1": 89, "collada": 89, "wavefront": 89, "obj": 89, "w3c": 89, "blender": 89, "gazebosim": 89, "finer": 89, "inspector": 89, "collis": 89, "constrain": 89, "motion": 89, "chassi": 89, "constraint": 89, "sky": 89, "ambient": 89, "crucial": 89, "grate": 89, "creator": 89, "computation": 90, "expens": 90, "especi": [90, 91, 96, 97, 109], "4gb": 90, "8gb": 90, "ram": 90, "cpu": [90, 114], "04": [90, 92, 98], "lt": 90, "alloc": 90, "tap": 90, "mac": 90, "intel": 90, "insight": [90, 97, 116], "amd64": 90, "arm64": 90, "appl": [90, 92], "silicon": 90, "subsect": 90, "bootabl": 90, "bitlock": 90, "secur": [90, 101], "secret": 90, "spy": 90, "uefi": 90, "troubleshoot": 90, "bio": 90, "shrink": 90, "volum": [90, 111], "50000": 90, "mb": 90, "gb": 90, "nine": 90, "poorer": 90, "strain": 90, "virtualbox": 90, "memori": 90, "tick": 90, "8192": 90, "vdi": 90, "50gb": 90, "certainli": 90, "30gb": 90, "optic": [90, 107], "stellar": 90, "bundl": 90, "39": 90, "99": 90, "purchas": [90, 109], "homebrew": 90, "brew": 90, "cask": 90, "22": 90, "dvd": 90, "16gb": 90, "quad": 90, "opengl": 90, "logo": 90, "retina": 90, "versu": 90, "ms": 90, "fat32": 90, "suffic": [90, 94], "regularli": 90, "lightweight": 90, "home": [90, 95], "emul": 90, "dollar": 90, "repl": 90, "upload": [90, 111], "upstream": 90, "catkin": 90, "mkdir": 90, "curiou": 90, "exec": [90, 94], "zsh": 90, "catkin_mak": [90, 96, 97], "cm": [90, 109, 115], "unabl": 90, "authent": 90, "store_git": 90, "congratul": [90, 97], "dive": [90, 94, 115], "harder": [91, 94, 108], "peer": 91, "fish": 91, "late": [91, 116], "blindli": 91, "txhydrophonescli": 91, "perhap": 91, "programm": 91, "sub8_rdi_dvl": 91, "rdi_explorer_dvl": 91, "ros_error_throttl": 91, "exc": 91, "decent": [91, 114], "circumst": 91, "discov": 91, "offic": 91, "rqt": 92, "rostest": 92, "migrat": [92, 108], "nvidia": 92, "rtx": 92, "2080": 92, "calibr": 92, "melod": 93, "2020": 93, "major": [93, 109], "greatest": 93, "easi": [93, 94, 96, 111], "peasi": 93, "skim": [93, 94], "memor": [93, 109], "2to3": 93, "chosen": 93, "refactoringtool": 93, "refactor": [93, 96], "__future__": 93, "print_funct": 93, "tip": [93, 94], "fixer": 93, "iteritem": [93, 94], "python3": [93, 109], "prop": 93, "crutch": 93, "handi": [93, 94], "multi": 93, "stackoverflow": [93, 95, 98], "11832677": 93, "postal_valid": 93, "no_spac": 93, "isdigit": 93, "isalpha": 93, "postal": 93, "instantli": 93, "opportun": [93, 108], "interlock": 93, "jenga": 93, "tower": 93, "simlul": 93, "relax": 94, "snazzi": 94, "excel": 94, "perman": 94, "nor": 94, "smarter": 94, "willing": 94, "bend": 94, "advantag": 94, "lower_with_und": 94, "_lower_with_und": 94, "capword": 94, "_capword": 94, "caps_with_und": 94, "_caps_with_und": 94, "__double_underscore_names__": 94, "reserv": [94, 111], "offens": 94, "meaningless": 94, "cool_const": 94, "fun_vari": 94, "pi": 94, "vd": 94, "role": 94, "dateutil": 94, "super_long_subpackage_nam": 94, "super_long": 94, "subfold": 94, "mod2": 94, "mitig": 94, "indirectli": 94, "quietli": 94, "comprehens": [94, 108], "yai": 94, "noooo": 94, "mini": 94, "sparingli": [94, 105], "really_long": 94, "evaluating_funct": 94, "really_long_variable_nam": 94, "other_really_long_var_nam": 94, "really_long_variable_name_on": 94, "this_iz_cool_func": 94, "cat": 94, "sneaki": 94, "benefit": 94, "complexion": 94, "do_someth": 94, "explicitli": 94, "implicitli": 94, "craft": 94, "cute": 94, "ecor": 94, "anger": 94, "sorta": 94, "recov": 94, "vim": [94, 100, 108], "colorcolumn": 94, "dr_seuss": 94, "egg": 94, "ham": 94, "sam": 94, "backslash": 94, "greenspac": 94, "redspac": 94, "rainbowspac": 94, "bracket": 94, "brace": 94, "quot": 94, "curli": 94, "ultimate_answ": 94, "42": 94, "ultim": 94, "answer": [94, 96], "grep": 94, "small": [94, 96, 100, 108, 114, 115], "demonstr": [94, 97, 112], "get_weath": 94, "set_weath": 94, "crazy_func": 94, "heck": 94, "overli": 94, "doctor": 94, "medic": 94, "profession": 94, "kid": 94, "narr": 94, "literari": 94, "sentenc": 94, "calc": 94, "subtract_mani": 94, "elabor": 94, "calculatorhistori": 94, "beyond": 94, "statist": [94, 116], "oldest_entri": 94, "retrieve_entri": 94, "history_fil": 94, "entries_index": 94, "return_only_sinc": 94, "historyentri": 94, "retrieve_rang": 94, "indexerror": 94, "esc": [95, 114], "grub": 95, "2nd": 95, "recoveri": 95, "hit": 95, "remount": 95, "o": [95, 109, 115], "rw": 95, "passwd": 95, "resum": [95, 97], "middlewar": 96, "gtest": 96, "seem": 96, "hundr": 96, "interdepend": 96, "anticip": 96, "fear": 96, "underli": 96, "framework": [96, 97], "regress": 96, "determinist": 96, "reproduc": 96, "patch": 96, "reintroduc": 96, "whoever": 96, "convinc": 96, "blame": 96, "violat": 96, "thu": 96, "contributor": 96, "driven": 96, "guesswork": 96, "har": 96, "workload": 96, "win": [96, 116], "matur": 96, "slowli": 96, "decid": 96, "amplifi": 96, "evolut": 96, "incorpor": 96, "principl": 96, "strong": [96, 116], "purposefulli": 96, "fizz": 96, "crash": 96, "unexpectedli": 96, "mutmut": 96, "package_nam": 96, "package_test": 96, "dir": 96, "tester": 96, "xdg": 96, "brows": 96, "calculator_packag": 96, "numtest": 96, "testcas": 96, "test_add": 96, "assertequ": 96, "test_sub": 96, "teardown": 96, "test_basic_oper": 96, "test_": 96, "assertx": 96, "assert": [96, 111], "asserttru": 96, "assertin": 96, "basicnodehandletest": 96, "isolatedasynciotestcas": 96, "asyncsetup": 96, "test_nam": 96, "asyncteardown": 96, "test_basic_nodehandl": 96, "analyz": [96, 97], "importantli": 96, "recognit": 96, "catkin_enable_test": 96, "find_packag": 96, "add_rostest": 96, "run_test": 96, "qt": 97, "tailor": 97, "capabl": [97, 101, 108], "tightli": 97, "toolbar": 97, "scheme": 97, "rearrang": 97, "perspect": 97, "rqt_gui_pi": 97, "rqt_gui_cpp": 97, "catkin_create_pkg": 97, "my_rqt_plugin": 97, "usr": 97, "env": 97, "python_qt_bind": 97, "qtwidget": 97, "qlabel": 97, "qvboxlayout": 97, "qwidget": 97, "myrqtplugin": 97, "setobjectnam": 97, "widget": 97, "_widget": 97, "setlayout": 97, "_label": 97, "addwidget": 97, "current_tim": 97, "_update_tim": 97, "add_widget": 97, "settext": 97, "shutdown_plugin": 97, "save_set": 97, "plugin_set": 97, "instance_set": 97, "restore_set": 97, "base_class_typ": 97, "qtgui": 97, "statustip": 97, "sophist": 97, "ros_data_plott": 97, "matplotlib": 97, "qcombobox": 97, "backend": 97, "backend_qt5agg": 97, "figurecanvasqtagg": 97, "figurecanva": 97, "rosdataplott": 97, "combo": 97, "_topic_field_selector": 97, "currentindexchang": 97, "_update_plot": 97, "_figur": 97, "_canva": 97, "add_subplot": 97, "111": 97, "selected_topic_field": 97, "currenttext": 97, "_plot_data": 97, "x_data": 97, "y_data": 97, "getattr": 97, "analysi": [97, 110], "versatil": 97, "georgiatech": 97, "robojacket": 97, "leverag": [97, 101, 107], "geforc": 98, "gtx": 98, "970": 98, "ppa": 98, "card": [98, 109, 114], "sy": 98, "pci0000": 98, "00": 98, "0000": 98, "modalia": 98, "pci": 98, "v000010ded000013c2sv00003842sd00002976bc03sc00i00": 98, "vendor": 98, "corpor": 98, "gm204": 98, "430": 98, "390": 98, "435": 98, "distro": 98, "440": 98, "410": 98, "415": 98, "xserver": 98, "xorg": 98, "nouveau": 98, "builtin": 98, "autoinstal": 98, "smi": 98, "verif": 98, "linuxconfig": 98, "bionic": 98, "beaver": 98, "cyberc": 98, "biz": 98, "faq": 98, "proprietari": 98, "31731535": 98, "cuda": 98, "ogrid_draw": 99, "online_bagg": 99, "keyboardcli": 99, "keyboardserv": 99, "navigator_keyboard_control": 99, "formal": 100, "themselv": [100, 112, 116], "essenc": 100, "chaconinc": 100, "dbconnector": 100, "gitmodul": 100, "repeatedli": [100, 108], "thankfulli": 100, "stabl": [100, 108], "OR": 100, "demand": 100, "ssh": [101, 115], "176": 101, "container": 101, "thoroughli": 101, "sshzobelisk": 101, "openssh": 101, "detach": 101, "export": 101, "began": 101, "pipelin": 102, "image_raw": [102, 111], "organiz": 102, "theori": [105, 116], "background": 105, "uninterrupt": 105, "grai": 105, "metal": [105, 114], "fan": 105, "24v": 105, "compart": 105, "misus": 105, "puffi": 105, "tether": [105, 108, 115], "annual": 106, "watercool": 106, "lesson": 106, "2019": [106, 112], "rub": 107, "dish": 107, "soap": 107, "pocket": 107, "vessel": [107, 108, 109, 114, 115], "biggest": 107, "molykot": [107, 115], "44": [107, 115], "medium": [107, 108], "hole": 107, "femal": 107, "robosub19": 107, "forgot": [107, 108], "flood": 107, "semifin": 107, "survei": 107, "3rd": 107, "arizona": 107, "prior": 108, "summer": 108, "biweekli": 108, "serious": 108, "bust": 108, "logist": 108, "assur": 108, "bystand": 108, "setback": 108, "unrespons": 108, "techniqu": 108, "night": [108, 116], "asleep": 108, "2am": 108, "6am": 108, "lack": 108, "chase": 108, "social": 108, "media": 108, "recruit": 108, "outreach": 108, "sponsorship": 108, "instagram": 108, "mysteri": 108, "slot": 108, "woke": 108, "radiat": 108, "rush": 108, "fedex": 108, "pain": 108, "arrang": 108, "week": 108, "wasn": 108, "catalog": 108, "catalogu": 108, "pickup": 108, "express": 108, "truck": 108, "couldn": 108, "takeawai": 108, "trip": [108, 116], "crunch": 108, "foam": [108, 115], "tired": 108, "paperwork": 108, "recip": 108, "benefici": 108, "bill": 108, "bom": 108, "cut": 108, "forrest": 108, "moistur": 108, "desicc": 108, "satur": 108, "misbehav": 108, "addr15": 108, "micro": [108, 116], "needless": 108, "janki": 108, "swap": 108, "weight": [108, 110], "detriment": 108, "litter": 108, "round": 108, "wooden": [108, 114], "diamet": 108, "rod": 108, "apart": 108, "rope": 108, "mass": [108, 111], "oppos": 108, "crouch": 108, "shoulder": 108, "lift": [108, 113], "kind": 108, "pad": 108, "stabil": 108, "villag": 108, "situat": 108, "prebuilt": 108, "orbit": 108, "dead": 108, "exacerb": 108, "churn": 108, "overhaul": 109, "gumstix": 109, "overo": 109, "teledyn": 109, "dopper": 109, "logger": 109, "inerti": 109, "newer": 109, "61": 109, "subconn": 109, "netplan": 109, "ifconfig": 109, "enpxs0": 109, "unplug": 109, "replug": 109, "AND": 109, "vigil": 109, "adis16405": 109, "obsolet": 109, "strength": 109, "magnet": [109, 111], "hardsoft": 109, "mag_raw": 109, "nav_box": 109, "substitut": 109, "frank": 109, "penelop": 109, "magnetic_compens": 109, "sub8_magnetic_hardsoft_compens": 109, "generate_config": 109, "fit_ellipsoid": 109, "colinear": 109, "thorough": 109, "adaptive_control": 110, "swim": 110, "elimin": 110, "rm": 110, "ki": 110, "kd": 110, "pd": 110, "use_learn": 110, "scp": 110, "screenshot": 110, "photo": 110, "bag_debugging_control": 110, "prefix_nam": 110, "my_prefix": 110, "pose_error": 110, "twist_error": 110, "dist": 110, "data_raw": 110, "wors": 110, "subjugator_control": 110, "debug_bag": 110, "andr": 110, "pulido": 110, "hyperlink": 111, "thruster_command": 111, "subjugator_msg": 111, "setvalverequest": 111, "setvalverespons": 111, "depict": 111, "set_valv": 111, "candevicehandl": 111, "ackpacket": 111, "cast": 111, "on_command": 111, "on_hw_kil": 111, "send_heartbeat": 111, "update_hw_kil": 111, "unassert": 111, "hall": 111, "soft": [111, 115], "unpress": 111, "statusmessag": 111, "is_assert": 111, "is_command": 111, "is_hard": 111, "is_respons": 111, "is_soft": 111, "is_unassert": 111, "create_kill_messag": 111, "applicationpacket": 111, "ordin": 111, "75": 111, "67": 111, "82": 111, "72": 111, "65": 111, "85": 111, "asserte": 111, "thruster_id": 111, "create_thrust_packet": 111, "pwm": 111, "84": 111, "hard_kill_mobo": 111, "hard_kill_plug_pul": 111, "hard_kil": 111, "heartbeat_timedout": 111, "soft_kill_mobo": 111, "soft_kill_plug_pul": 111, "soft_kil": 111, "send_upd": 111, "set_hard_kil": 111, "set_soft_kil": 111, "simulatedcandevic": 111, "simulate_hard_kil": 111, "simluat": 111, "simulate_soft_kil": 111, "backward_calibr": 111, "forward_calibr": 111, "effort_from_thrust": 111, "calib": 111, "backward": 111, "flh": 111, "frh": 111, "flv": 111, "frv": 111, "blh": 111, "brh": 111, "blv": 111, "brv": 111, "battery_low": 111, "board_heartbeat_lost": 111, "kill_switch": 111, "mobo_heartbeat_lost": 111, "software_request": 111, "buoy_radiu": 111, "cam_model": 111, "color_rang": 111, "compute_tim": 111, "current_cloud": 111, "data_sub": 111, "got_cloud": 111, "got_imag": 111, "image_pub": 111, "image_sub": 111, "image_transport": 111, "last_bump_target": 111, "last_cloud_tim": 111, "last_draw_imag": 111, "last_image_msg": 111, "line_ad": 111, "need_new_cloud": 111, "service_2d": 111, "service_3d": 111, "viewer": 111, "vp1": 111, "vp2": 111, "cloud_callback": 111, "compute_loop": 111, "determine_buoy_posit": 111, "get_last_imag": 111, "request_buoy_posit": 111, "request_buoy_position_2d": 111, "segment_buoi": 111, "last_imag": 111, "target_color": 111, "pointcloudt": 111, "point_cloud_raw": 111, "vector3f": 111, "input_imag": 111, "output_contour": 111, "visionrequest2d": 111, "resp": 111, "visionrequest": 111, "pclvisual": 111, "serviceserv": 111, "camerasubscrib": 111, "imagetransport": 111, "get_2d_feature_point": 111, "pure": 111, "segment": 111, "get_3d_feature_point": 111, "roscamerastream": 111, "rosimagestream": 111, "diffusion_tim": 111, "feature_block_s": 111, "feature_min_dist": 111, "image_proc_scal": 111, "left_corn": 111, "left_most_rec": 111, "max_featur": 111, "right_corn": 111, "right_most_rec": 111, "imagewithcamerainfo": 111, "matx34d": 111, "proj_l": 111, "proj_r": 111, "corners_l": 111, "corners_r": 111, "residu": 111, "pointt": 111, "voxel_filt": 111, "input_cloud": 111, "output_cloud": 111, "leaf_siz": 111, "statistical_outlier_filt": 111, "mean_k": 111, "std_dev_mul_thresh": 111, "closest_point_index_rayomp": 111, "direction_pr": 111, "line_pt": 111, "distance_to_rai": 111, "closest_point_index_rai": 111, "closest_point_rai": 111, "project_uv_to_cloud_index": 111, "image_point": 111, "project_uv_to_cloud": 111, "point_to_eigen": 111, "pcl_point": 111, "compute_norm": 111, "pointcloudnt": 111, "normal_radiu": 111, "segment_rgb_region_grow": 111, "target_cloud": 111, "colored_cloud": 111, "segment_box": 111, "edge_length": 111, "anisotropic_diffus": 111, "t_max": 111, "best_plane_from_combin": 111, "point_list": 111, "distance_threshold": 111, "result_coeff": 111, "calc_plane_coeff": 111, "pt3": 111, "plane_coeff": 111, "point_to_plane_dist": 111, "pt": 111, "roscamerastream_vec3": 111, "vec3b": 111, "typedef": 111, "pointnorm": 111, "pointnt": 111, "pointxyzrgb": 111, "pointxyzt": 111, "pointcloudcolorhandlercustom": 111, "colorhandlert": 111, "get_3d_pos": 111, "is_stereo_coher": 111, "sync_thresh_": 111, "max_z": 111, "intins": 111, "feature_pts_3d": 111, "z_vector_min": 111, "best_fit_plane_standard": 111, "rviz_pub": 111, "visualize_buoi": 111, "visualize_torpedo_board": 111, "rviz_top": 111, "quaterniond": 111, "corners3d": 111, "add_circl": 111, "found_mark": 111, "publish_grid": 111, "reset_grid": 111, "subjugator_vision_tool": 111, "starting_pos": 111, "search_grid": 111, "intoler": 111, "pose_2d": 111, "whatnot": 111, "check_search": 111, "polygon_gener": 111, "return_pos": 111, "searched_area": 111, "grid_r": 111, "position_offset": 111, "entireti": 111, "search_cent": 111, "search_radiu": 111, "12": 111, "farther": 111, "zonifi": 111, "pointxyzi": 111, "mat_ogrid": 111, "stampedtransform": 111, "mat_origin": 111, "clear_ogrid_callback": 111, "clear_pcl_callback": 111, "dvl_callback": 111, "get_objects_callback": 111, "populate_mat_ogrid": 111, "process_persistant_ogrid": 111, "publish_big_pointcloud": 111, "publish_ogrid": 111, "mil_blueview_driv": 111, "blueviewpingptr": 111, "ping_msg": 111, "rangestampedconstptr": 111, "point_cloud_plan": 111, "make_dict": 111, "start_cach": 111, "subjugator_gazebo_tool": 111, "diag_dir": 111, "post_cache_tim": 111, "topic_name_1": 111, "subscriber_1": 111, "topic_name_2": 111, "subscriber_2": 111, "time_step": 111, "pre_cache_tim": 111, "rise_6dof": 111, "air_dens": 111, "drag_coeff": 111, "water_dens": 111, "from_ros_param": 111, "gravity_and_buoy": 111, "inverse_dynam": 111, "inverse_dynamics_from_total_wrench": 111, "newton_euler_extra_term": 111, "subjugator_system_id": 111, "rotational_inertia": 111, "dynamci": 111, "kg": 111, "6x1": 111, "densiti": 111, "graviti": [111, 114], "inertia": 111, "accel": 111, "net": 111, "urdf": 111, "robot_paramt": 111, "world_to_bodi": 111, "buoyanc": [111, 115], "total_wrench": 111, "newton": 111, "from_odometri": 111, "from_odometry_top": 111, "from_pos": 111, "from_posetwiststamp": 111, "from_posetwiststamped_top": 111, "as_pos": 111, "as_posetwist": 111, "as_posetwiststamp": 111, "body_down": 111, "body_up": 111, "heading_deg": 111, "relative_depth": 111, "roll_left": 111, "roll_left_deg": 111, "roll_right": 111, "roll_right_deg": 111, "set_orient": 111, "set_posit": 111, "south": 111, "turn_left": 111, "turn_left_deg": 111, "turn_right": 111, "turn_right_deg": 111, "west": 111, "yaw_left": 111, "yaw_left_deg": 111, "yaw_right": 111, "yaw_right_deg": 111, "zero_rol": 111, "subjugator_miss": 111, "mutablesequ": 111, "examplemiss": 111, "subjugatormiss": 111, "3m": 111, "2m": 111, "7m": 111, "abs_po": 111, "posetwiststamp": 111, "rel_po": 111, "angle_degre": 111, "fundament": 112, "impact": 112, "shoot": 112, "torpedo": 112, "downfac": 112, "gzserver": 113, "stock": 113, "ty": 113, "gzclient": 113, "speak": 113, "stool": 114, "deioniz": 114, "biocid": 114, "vacuum": 114, "reservoir": 114, "bucket": 114, "longev": 114, "purifi": 114, "bonu": 114, "orang": 114, "exercis": 114, "hazard": 114, "floor": 114, "feed": 114, "natur": 114, "stove": 114, "pipe": 114, "expos": 114, "gap": 114, "inlet": 114, "psi": 114, "pinch": 114, "repeat": 114, "worri": [114, 116], "wiggl": 114, "trap": 114, "cord": 115, "duct": 115, "tape": 115, "scissor": 115, "plier": 115, "flat": 115, "screwdriv": 115, "wand": 115, "goggl": 115, "snorkel": 115, "noddl": 115, "fin": 115, "ring": 115, "greas": 115, "55": 115, "hot": 115, "glue": 115, "gun": 115, "clipper": 115, "towel": 115, "sunscreen": 115, "tent": 115, "graham": 115, "powerstrip": 115, "THAT": 115, "THE": 115, "relief": 115, "cap": 115, "IN": 115, "backflip": 115, "quit": 116, "championship": 116, "tournament": 116, "globe": 116, "five": 116, "fifteen": 116, "sixth": 116, "faculti": 116, "realiz": 116, "kinemat": 116, "neural": 116, "aav": 116, "quadcopt": 116, "mav": 116, "swarm": 116, "humanoid": 116, "household": 116, "inde": 116, "technolog": 116, "synergi": 116, "inclus": 116, "inspir": 116, "alumni": 116, "scatter": 116, "whom": 116, "compani": 116, "graciou": 116, "rigor": 116, "hang": 116, "weekend": 116, "restaur": 116, "bite": 116, "embark": 116, "eric": 116}, "objects": {"": [[78, 0, 1, "_CPPv422CameraLidarTransformer", "CameraLidarTransformer"], [78, 1, 1, "_CPPv4N22CameraLidarTransformer22CameraLidarTransformerEv", "CameraLidarTransformer::CameraLidarTransformer"], [111, 0, 1, "_CPPv414Classification", "Classification"], [111, 1, 1, "_CPPv4N14Classification14ClassificationEPN3ros10NodeHandleE", "Classification::Classification"], [111, 2, 1, "_CPPv4N14Classification14ClassificationEPN3ros10NodeHandleE", "Classification::Classification::nh"], [111, 1, 1, "_CPPv4N14Classification10clusteringEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::clustering"], [111, 2, 1, "_CPPv4N14Classification10clusteringEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::clustering::pointCloud"], [111, 1, 1, "_CPPv4N14Classification8filteredEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::filtered"], [111, 2, 1, "_CPPv4N14Classification8filteredEN3pcl10PointCloudIN3pcl9PointXYZIEE8ConstPtrE", "Classification::filtered::pointCloud"], [111, 1, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::mat_ogrid"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::mat_origin"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::resolution"], [111, 2, 1, "_CPPv4N14Classification6zonifyERN2cv3MatEfRKN2tf16StampedTransformERN2cv5PointE", "Classification::zonify::transform"], [78, 0, 1, "_CPPv414ImagePublisher", "ImagePublisher"], [78, 1, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::encoding"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::nh"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::queue_size"], [78, 2, 1, "_CPPv4N14ImagePublisher14ImagePublisherERKN3ros10NodeHandleERKNSt6stringERKNSt6stringEi", "ImagePublisher::ImagePublisher::topic"], [78, 1, 1, "_CPPv4N14ImagePublisher7publishERN2cv3MatE", "ImagePublisher::publish"], [78, 2, 1, "_CPPv4N14ImagePublisher7publishERN2cv3MatE", "ImagePublisher::publish::image_arg"], [78, 0, 1, "_CPPv415ImageSubscriber", "ImageSubscriber"], [78, 1, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber"], [78, 1, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber"], [78, 3, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::T"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::encoding"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::encoding"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::func"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::func"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::nh"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::nh"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::object"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::queue_size"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::queue_size"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::topic"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::topic"], [78, 2, 1, "_CPPv4I0EN15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEM1TFvRN2cv3MatEEP1TbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::use_copy"], [78, 2, 1, "_CPPv4N15ImageSubscriber15ImageSubscriberERKN3ros10NodeHandleERKNSt6stringEPFvRN2cv3MatEEbRKNSt6stringEi", "ImageSubscriber::ImageSubscriber::use_copy"], [78, 1, 1, "_CPPv4N15ImageSubscriber16getLastImageTimeEv", "ImageSubscriber::getLastImageTime"], [78, 1, 1, "_CPPv4N15ImageSubscriber17imageCallbackCopyERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackCopy"], [78, 2, 1, "_CPPv4N15ImageSubscriber17imageCallbackCopyERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackCopy::image"], [78, 1, 1, "_CPPv4N15ImageSubscriber22imageCallbackReferenceERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackReference"], [78, 2, 1, "_CPPv4N15ImageSubscriber22imageCallbackReferenceERKN11sensor_msgs13ImageConstPtrE", "ImageSubscriber::imageCallbackReference::image"], [78, 1, 1, "_CPPv4N15ImageSubscriber12infoCallbackERKN11sensor_msgs10CameraInfoE", "ImageSubscriber::infoCallback"], [78, 2, 1, "_CPPv4N15ImageSubscriber12infoCallbackERKN11sensor_msgs10CameraInfoE", "ImageSubscriber::infoCallback::info"], [78, 1, 1, "_CPPv4N15ImageSubscriber17waitForCameraInfoEj", "ImageSubscriber::waitForCameraInfo"], [78, 2, 1, "_CPPv4N15ImageSubscriber17waitForCameraInfoEj", "ImageSubscriber::waitForCameraInfo::timeout"], [78, 1, 1, "_CPPv4N15ImageSubscriber18waitForCameraModelERN14image_geometry18PinholeCameraModelEj", "ImageSubscriber::waitForCameraModel"], [78, 2, 1, "_CPPv4N15ImageSubscriber18waitForCameraModelERN14image_geometry18PinholeCameraModelEj", "ImageSubscriber::waitForCameraModel::pinhole_camera"], [78, 2, 1, "_CPPv4N15ImageSubscriber18waitForCameraModelERN14image_geometry18PinholeCameraModelEj", "ImageSubscriber::waitForCameraModel::timeout"], [111, 0, 1, "_CPPv48OGridGen", "OGridGen"], [111, 1, 1, "_CPPv4N8OGridGen8OGridGenEv", "OGridGen::OGridGen"], [111, 1, 1, "_CPPv4N8OGridGen8callbackERKN19mil_blueview_driver15BlueViewPingPtrE", "OGridGen::callback"], [111, 2, 1, "_CPPv4N8OGridGen8callbackERKN19mil_blueview_driver15BlueViewPingPtrE", "OGridGen::callback::ping_msg"], [111, 1, 1, "_CPPv4N8OGridGen20clear_ogrid_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_ogrid_callback"], [111, 2, 1, "_CPPv4N8OGridGen20clear_ogrid_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_ogrid_callback::req"], [111, 2, 1, "_CPPv4N8OGridGen20clear_ogrid_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_ogrid_callback::res"], [111, 1, 1, "_CPPv4N8OGridGen18clear_pcl_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_pcl_callback"], [111, 2, 1, "_CPPv4N8OGridGen18clear_pcl_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_pcl_callback::req"], [111, 2, 1, "_CPPv4N8OGridGen18clear_pcl_callbackERN8std_srvs7Trigger7RequestERN8std_srvs7Trigger8ResponseE", "OGridGen::clear_pcl_callback::res"], [111, 1, 1, "_CPPv4N8OGridGen7clusterEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::cluster"], [111, 2, 1, "_CPPv4N8OGridGen7clusterEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::cluster::pc"], [111, 1, 1, "_CPPv4N8OGridGen12dvl_callbackERKN8mil_msgs20RangeStampedConstPtrE", "OGridGen::dvl_callback"], [111, 2, 1, "_CPPv4N8OGridGen12dvl_callbackERKN8mil_msgs20RangeStampedConstPtrE", "OGridGen::dvl_callback::dvl"], [111, 1, 1, "_CPPv4N8OGridGen20get_objects_callbackERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "OGridGen::get_objects_callback"], [111, 2, 1, "_CPPv4N8OGridGen20get_objects_callbackERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "OGridGen::get_objects_callback::req"], [111, 2, 1, "_CPPv4N8OGridGen20get_objects_callbackERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "OGridGen::get_objects_callback::res"], [111, 1, 1, "_CPPv4N8OGridGen18populate_mat_ogridEv", "OGridGen::populate_mat_ogrid"], [111, 1, 1, "_CPPv4N8OGridGen24process_persistant_ogridEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::process_persistant_ogrid"], [111, 2, 1, "_CPPv4N8OGridGen24process_persistant_ogridEN3pcl10PointCloudIN3pcl9PointXYZIEE3PtrE", "OGridGen::process_persistant_ogrid::point_cloud_plane"], [111, 1, 1, "_CPPv4N8OGridGen22publish_big_pointcloudERKN3ros10TimerEventE", "OGridGen::publish_big_pointcloud"], [111, 1, 1, "_CPPv4N8OGridGen13publish_ogridEv", "OGridGen::publish_ogrid"], [111, 4, 1, "_CPPv420ROSCameraStream_Vec3", "ROSCameraStream_Vec3"], [111, 0, 1, "_CPPv410StereoBase", "StereoBase"], [111, 1, 1, "_CPPv4N10StereoBase10StereoBaseEv", "StereoBase::StereoBase"], [111, 1, 1, "_CPPv4N10StereoBase21get_2d_feature_pointsEN2cv3MatE", "StereoBase::get_2d_feature_points"], [111, 2, 1, "_CPPv4N10StereoBase21get_2d_feature_pointsEN2cv3MatE", "StereoBase::get_2d_feature_points::image"], [111, 1, 1, "_CPPv4N10StereoBase21get_3d_feature_pointsEi", "StereoBase::get_3d_feature_points"], [111, 2, 1, "_CPPv4N10StereoBase21get_3d_feature_pointsEi", "StereoBase::get_3d_feature_points::max_z"], [111, 1, 1, "_CPPv4N10StereoBase11get_3d_poseENSt6vectorIN5Eigen8Vector3dEEEf", "StereoBase::get_3d_pose"], [111, 2, 1, "_CPPv4N10StereoBase11get_3d_poseENSt6vectorIN5Eigen8Vector3dEEEf", "StereoBase::get_3d_pose::feature_pts_3d"], [111, 2, 1, "_CPPv4N10StereoBase11get_3d_poseENSt6vectorIN5Eigen8Vector3dEEEf", "StereoBase::get_3d_pose::z_vector_min"], [111, 1, 1, "_CPPv4N10StereoBase18is_stereo_coherentEv", "StereoBase::is_stereo_coherent"], [111, 0, 1, "_CPPv422SubjuGatorBuoyDetector", "SubjuGatorBuoyDetector"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector22SubjuGatorBuoyDetectorEv", "SubjuGatorBuoyDetector::SubjuGatorBuoyDetector"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector11buoy_radiusE", "SubjuGatorBuoyDetector::buoy_radius"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9cam_modelE", "SubjuGatorBuoyDetector::cam_model"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector14cloud_callbackERKN11sensor_msgs11PointCloud28ConstPtrE", "SubjuGatorBuoyDetector::cloud_callback"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector12color_rangesE", "SubjuGatorBuoyDetector::color_ranges"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector12compute_loopERKN3ros10TimerEventE", "SubjuGatorBuoyDetector::compute_loop"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector13compute_timerE", "SubjuGatorBuoyDetector::compute_timer"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9computingE", "SubjuGatorBuoyDetector::computing"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector13current_cloudE", "SubjuGatorBuoyDetector::current_cloud"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector8data_subE", "SubjuGatorBuoyDetector::data_sub"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::cam_model"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::center"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::image_raw"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::point_cloud_raw"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector23determine_buoy_positionERKN14image_geometry18PinholeCameraModelERKNSt6stringERKN2cv3MatERKN3sub11PointCloudT3PtrERN5Eigen8Vector3fE", "SubjuGatorBuoyDetector::determine_buoy_position::target_color"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector14get_last_imageERN2cv3MatE", "SubjuGatorBuoyDetector::get_last_image"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector14get_last_imageERN2cv3MatE", "SubjuGatorBuoyDetector::get_last_image::last_image"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9got_cloudE", "SubjuGatorBuoyDetector::got_cloud"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9got_imageE", "SubjuGatorBuoyDetector::got_image"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "SubjuGatorBuoyDetector::image_callback"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "SubjuGatorBuoyDetector::image_callback::info_msg"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "SubjuGatorBuoyDetector::image_callback::msg"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9image_pubE", "SubjuGatorBuoyDetector::image_pub"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector9image_subE", "SubjuGatorBuoyDetector::image_sub"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10image_timeE", "SubjuGatorBuoyDetector::image_time"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector15image_transportE", "SubjuGatorBuoyDetector::image_transport"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector16last_bump_targetE", "SubjuGatorBuoyDetector::last_bump_target"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector15last_cloud_timeE", "SubjuGatorBuoyDetector::last_cloud_time"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector15last_draw_imageE", "SubjuGatorBuoyDetector::last_draw_image"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector14last_image_msgE", "SubjuGatorBuoyDetector::last_image_msg"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10line_addedE", "SubjuGatorBuoyDetector::line_added"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector14need_new_cloudE", "SubjuGatorBuoyDetector::need_new_cloud"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector2nhE", "SubjuGatorBuoyDetector::nh"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector21request_buoy_positionERN15subjugator_msgs13VisionRequest7RequestERN15subjugator_msgs13VisionRequest8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector21request_buoy_positionERN15subjugator_msgs13VisionRequest7RequestERN15subjugator_msgs13VisionRequest8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position::req"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector21request_buoy_positionERN15subjugator_msgs13VisionRequest7RequestERN15subjugator_msgs13VisionRequest8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position::resp"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector24request_buoy_position_2dERN15subjugator_msgs15VisionRequest2D7RequestERN15subjugator_msgs15VisionRequest2D8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position_2d"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector24request_buoy_position_2dERN15subjugator_msgs15VisionRequest2D7RequestERN15subjugator_msgs15VisionRequest2D8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position_2d::req"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector24request_buoy_position_2dERN15subjugator_msgs15VisionRequest2D7RequestERN15subjugator_msgs15VisionRequest2D8ResponseE", "SubjuGatorBuoyDetector::request_buoy_position_2d::resp"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector4rvizE", "SubjuGatorBuoyDetector::rviz"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::center"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::input_image"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::output_contours"], [111, 2, 1, "_CPPv4N22SubjuGatorBuoyDetector12segment_buoyERN2cv3MatERN2cv5PointERNSt6vectorIN3sub7ContourEEERNSt6stringE", "SubjuGatorBuoyDetector::segment_buoy::target_name"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10service_2dE", "SubjuGatorBuoyDetector::service_2d"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector10service_3dE", "SubjuGatorBuoyDetector::service_3d"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector6viewerE", "SubjuGatorBuoyDetector::viewer"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector3vp1E", "SubjuGatorBuoyDetector::vp1"], [111, 5, 1, "_CPPv4N22SubjuGatorBuoyDetector3vp2E", "SubjuGatorBuoyDetector::vp2"], [111, 1, 1, "_CPPv4N22SubjuGatorBuoyDetectorD0Ev", "SubjuGatorBuoyDetector::~SubjuGatorBuoyDetector"], [111, 0, 1, "_CPPv422SubjuGatorObjectFinder", "SubjuGatorObjectFinder"], [111, 1, 1, "_CPPv4N22SubjuGatorObjectFinder22SubjuGatorObjectFinderEv", "SubjuGatorObjectFinder::SubjuGatorObjectFinder"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder16image_proc_scaleE", "SubjuGatorObjectFinder::image_proc_scale"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder12left_cornersE", "SubjuGatorObjectFinder::left_corners"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder16left_most_recentE", "SubjuGatorObjectFinder::left_most_recent"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder13right_cornersE", "SubjuGatorObjectFinder::right_corners"], [111, 5, 1, "_CPPv4N22SubjuGatorObjectFinder17right_most_recentE", "SubjuGatorObjectFinder::right_most_recent"], [111, 1, 1, "_CPPv4N22SubjuGatorObjectFinderD0Ev", "SubjuGatorObjectFinder::~SubjuGatorObjectFinder"], [111, 0, 1, "_CPPv427SubjuGatorStartGateDetector", "SubjuGatorStartGateDetector"], [111, 1, 1, "_CPPv4N27SubjuGatorStartGateDetector27SubjuGatorStartGateDetectorEv", "SubjuGatorStartGateDetector::SubjuGatorStartGateDetector"], [111, 1, 1, "_CPPv4N27SubjuGatorStartGateDetector21get_2d_feature_pointsEN2cv3MatE", "SubjuGatorStartGateDetector::get_2d_feature_points"], [111, 2, 1, "_CPPv4N27SubjuGatorStartGateDetector21get_2d_feature_pointsEN2cv3MatE", "SubjuGatorStartGateDetector::get_2d_feature_points::image"], [111, 5, 1, "_CPPv4N27SubjuGatorStartGateDetector2nhE", "SubjuGatorStartGateDetector::nh"], [111, 1, 1, "_CPPv4N27SubjuGatorStartGateDetector3runEv", "SubjuGatorStartGateDetector::run"], [111, 0, 1, "_CPPv430SubjuGatorTorpedoBoardDetector", "SubjuGatorTorpedoBoardDetector"], [111, 1, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector30SubjuGatorTorpedoBoardDetectorEv", "SubjuGatorTorpedoBoardDetector::SubjuGatorTorpedoBoardDetector"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector14diffusion_timeE", "SubjuGatorTorpedoBoardDetector::diffusion_time"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector18feature_block_sizeE", "SubjuGatorTorpedoBoardDetector::feature_block_size"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector20feature_min_distanceE", "SubjuGatorTorpedoBoardDetector::feature_min_distance"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector16image_proc_scaleE", "SubjuGatorTorpedoBoardDetector::image_proc_scale"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector12left_cornersE", "SubjuGatorTorpedoBoardDetector::left_corners"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector16left_most_recentE", "SubjuGatorTorpedoBoardDetector::left_most_recent"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector12max_featuresE", "SubjuGatorTorpedoBoardDetector::max_features"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector13right_cornersE", "SubjuGatorTorpedoBoardDetector::right_corners"], [111, 5, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetector17right_most_recentE", "SubjuGatorTorpedoBoardDetector::right_most_recent"], [111, 1, 1, "_CPPv4N30SubjuGatorTorpedoBoardDetectorD0Ev", "SubjuGatorTorpedoBoardDetector::~SubjuGatorTorpedoBoardDetector"], [67, 0, 1, "_CPPv422SylphaseSonarToRosNode", "SylphaseSonarToRosNode"], [67, 5, 1, "_CPPv4N22SylphaseSonarToRosNode8CHANNELSE", "SylphaseSonarToRosNode::CHANNELS"], [67, 5, 1, "_CPPv4N22SylphaseSonarToRosNode18SAMPLES_PER_SECONDE", "SylphaseSonarToRosNode::SAMPLES_PER_SECOND"], [67, 1, 1, "_CPPv4N22SylphaseSonarToRosNode22SylphaseSonarToRosNodeEN3ros10NodeHandleEN3ros10NodeHandleE", "SylphaseSonarToRosNode::SylphaseSonarToRosNode"], [67, 2, 1, "_CPPv4N22SylphaseSonarToRosNode22SylphaseSonarToRosNodeEN3ros10NodeHandleEN3ros10NodeHandleE", "SylphaseSonarToRosNode::SylphaseSonarToRosNode::nh"], [67, 2, 1, "_CPPv4N22SylphaseSonarToRosNode22SylphaseSonarToRosNodeEN3ros10NodeHandleEN3ros10NodeHandleE", "SylphaseSonarToRosNode::SylphaseSonarToRosNode::private_nh"], [67, 1, 1, "_CPPv4N22SylphaseSonarToRosNode3runEv", "SylphaseSonarToRosNode::run"], [111, 0, 1, "_CPPv428TorpedoBoardReprojectionCost", "TorpedoBoardReprojectionCost"], [111, 1, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::corners_L"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::corners_R"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::proj_L"], [111, 2, 1, "_CPPv4N28TorpedoBoardReprojectionCost28TorpedoBoardReprojectionCostERN2cv7Matx34dERN2cv7Matx34dERNSt6vectorIN2cv5PointEEERNSt6vectorIN2cv5PointEEE", "TorpedoBoardReprojectionCost::TorpedoBoardReprojectionCost::proj_R"], [111, 1, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()"], [111, 3, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::T"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::residual"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::x"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::y"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::yaw"], [111, 2, 1, "_CPPv4I0ENK28TorpedoBoardReprojectionCostclEbPCK1TPCK1TPCK1TPCK1TP1T", "TorpedoBoardReprojectionCost::operator()::z"], [111, 1, 1, "_CPPv4N28TorpedoBoardReprojectionCostD0Ev", "TorpedoBoardReprojectionCost::~TorpedoBoardReprojectionCost"], [111, 1, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion"], [111, 2, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion::dest"], [111, 2, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion::src"], [111, 2, 1, "_CPPv421anisotropic_diffusionRKN2cv3MatERN2cv3MatEi", "anisotropic_diffusion::t_max"], [111, 1, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination"], [111, 2, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination::distance_threshold"], [111, 2, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination::point_list"], [111, 2, 1, "_CPPv427best_plane_from_combinationRKNSt6vectorIN5Eigen8Vector3dEEEdRNSt6vectorIdEE", "best_plane_from_combination::result_coeffs"], [111, 1, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::plane_coeffs"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::pt1"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::pt2"], [111, 2, 1, "_CPPv417calc_plane_coeffsRN5Eigen8Vector3dERN5Eigen8Vector3dERN5Eigen8Vector3dERNSt6vectorIdEE", "calc_plane_coeffs::pt3"], [78, 0, 1, "_CPPv4N10mil_vision13ActiveContourE", "mil_vision::ActiveContour"], [78, 1, 1, "_CPPv4N10mil_vision13ActiveContour13ActiveContourEv", "mil_vision::ActiveContour::ActiveContour"], [78, 0, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame"], [78, 1, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERK11CameraFrame", "mil_vision::CameraFrame::CameraFrame"], [78, 1, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame"], [78, 1, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameEv", "mil_vision::CameraFrame::CameraFrame"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::cam_model_ptr"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::image_msg_ptr"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::is_rectified"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERK11CameraFrame", "mil_vision::CameraFrame::CameraFrame::other"], [78, 2, 1, "_CPPv4N10mil_vision11CameraFrame11CameraFrameERKN11sensor_msgs13ImageConstPtrER15cam_model_ptr_tb7float_t", "mil_vision::CameraFrame::CameraFrame::store_at_scale"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::cam_model_ptr_t"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame9copyImgToEN2cv3MatE", "mil_vision::CameraFrame::copyImgTo"], [78, 2, 1, "_CPPv4NK10mil_vision11CameraFrame9copyImgToEN2cv3MatE", "mil_vision::CameraFrame::copyImgTo::dest"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::float_t"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame17getCameraModelPtrEv", "mil_vision::CameraFrame::getCameraModelPtr"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame13getImageScaleEv", "mil_vision::CameraFrame::getImageScale"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame5imageEv", "mil_vision::CameraFrame::image"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::img_scalar_t"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame21isCameraGeometryKnownEv", "mil_vision::CameraFrame::isCameraGeometryKnown"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame9rectifiedEv", "mil_vision::CameraFrame::rectified"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame3seqEv", "mil_vision::CameraFrame::seq"], [78, 1, 1, "_CPPv4NK10mil_vision11CameraFrame5stampEv", "mil_vision::CameraFrame::stamp"], [78, 3, 1, "_CPPv4I0000EN10mil_vision11CameraFrameE", "mil_vision::CameraFrame::time_t_"], [78, 0, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence8CamFrameE", "mil_vision::CameraFrameSequence::CamFrame"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence16CamFrameConstPtrE", "mil_vision::CameraFrameSequence::CamFrameConstPtr"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence11CamFramePtrE", "mil_vision::CameraFrameSequence::CamFramePtr"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence16CamFrameSequenceE", "mil_vision::CameraFrameSequence::CamFrameSequence"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence19CameraFrameSequenceERK19CameraFrameSequence", "mil_vision::CameraFrameSequence::CameraFrameSequence"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence19CameraFrameSequenceERR19CameraFrameSequence", "mil_vision::CameraFrameSequence::CameraFrameSequence"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence19CameraFrameSequenceEv", "mil_vision::CameraFrameSequence::CameraFrameSequence"], [78, 4, 1, "_CPPv4N10mil_vision19CameraFrameSequence14CircularBufferE", "mil_vision::CameraFrameSequence::CircularBuffer"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::cam_model_ptr_t"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence4colsEv", "mil_vision::CameraFrameSequence::cols"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::float_t"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence17getCameraModelPtrEv", "mil_vision::CameraFrameSequence::getCameraModelPtr"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequence16getFrameFromTimeE7time_t_", "mil_vision::CameraFrameSequence::getFrameFromTime"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::img_scalar_t"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence15isGeometryConstEv", "mil_vision::CameraFrameSequence::isGeometryConst"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequenceixEi", "mil_vision::CameraFrameSequence::operator[]"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence4rowsEv", "mil_vision::CameraFrameSequence::rows"], [78, 1, 1, "_CPPv4NK10mil_vision19CameraFrameSequence4sizeEv", "mil_vision::CameraFrameSequence::size"], [78, 3, 1, "_CPPv4I0000EN10mil_vision19CameraFrameSequenceE", "mil_vision::CameraFrameSequence::time_t_"], [78, 1, 1, "_CPPv4N10mil_vision19CameraFrameSequenceD0Ev", "mil_vision::CameraFrameSequence::~CameraFrameSequence"], [78, 0, 1, "_CPPv4I0EN10mil_vision11CameraModelE", "mil_vision::CameraModel"], [78, 1, 1, "_CPPv4N10mil_vision11CameraModel11CameraModelEv", "mil_vision::CameraModel::CameraModel"], [78, 3, 1, "_CPPv4I0EN10mil_vision11CameraModelE", "mil_vision::CameraModel::T"], [78, 1, 1, "_CPPv4N10mil_vision11CameraModelD0Ev", "mil_vision::CameraModel::~CameraModel"], [78, 0, 1, "_CPPv4N10mil_vision14CameraObserverE", "mil_vision::CameraObserver"], [78, 1, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::cam_topic"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::nh"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver14CameraObserverERN3ros10NodeHandleERNSt6stringERNSt6stringE6size_t", "mil_vision::CameraObserver::CameraObserver::pcd_in_topic"], [78, 1, 1, "_CPPv4NK10mil_vision14CameraObserver17getCameraModelPtrEv", "mil_vision::CameraObserver::getCameraModelPtr"], [78, 1, 1, "_CPPv4N10mil_vision14CameraObserver22get_color_observationsERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::get_color_observations"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserver22get_color_observationsERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::get_color_observations::pcd"], [78, 1, 1, "_CPPv4NK10mil_vision14CameraObserver2okEv", "mil_vision::CameraObserver::ok"], [78, 1, 1, "_CPPv4N10mil_vision14CameraObserverclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::operator()"], [78, 2, 1, "_CPPv4N10mil_vision14CameraObserverclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::CameraObserver::operator()::pcd"], [78, 0, 1, "_CPPv4N10mil_vision11ClosedCurveE", "mil_vision::ClosedCurve"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve11ClosedCurveENSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::ClosedCurve"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve11ClosedCurveENSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::ClosedCurve::points"], [78, 0, 1, "_CPPv4N10mil_vision11ClosedCurve12PerturbationE", "mil_vision::ClosedCurve::Perturbation"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation5entryE", "mil_vision::ClosedCurve::Perturbation::entry"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation4exitE", "mil_vision::ClosedCurve::Perturbation::exit"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation3idxE", "mil_vision::ClosedCurve::Perturbation::idx"], [78, 5, 1, "_CPPv4N10mil_vision11ClosedCurve12Perturbation5routeE", "mil_vision::ClosedCurve::Perturbation::route"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve17applyPerturbationERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::applyPerturbation"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve17applyPerturbationERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::applyPerturbation::idx"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve17applyPerturbationERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::applyPerturbation::perturbation"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve7perturbERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::perturb"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve7perturbERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::perturb::idx"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve7perturbERKNSt6vectorI7uint8_tEEi", "mil_vision::ClosedCurve::perturb::perturbation"], [78, 1, 1, "_CPPv4N10mil_vision11ClosedCurve13validateCurveERNSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::validateCurve"], [78, 2, 1, "_CPPv4N10mil_vision11ClosedCurve13validateCurveERNSt6vectorIN2cv7Point2iEEE", "mil_vision::ClosedCurve::validateCurve::curve"], [78, 0, 1, "_CPPv4N10mil_vision16ColorObservationE", "mil_vision::ColorObservation"], [78, 4, 1, "_CPPv4N10mil_vision16ColorObservation3VecE", "mil_vision::ColorObservation::Vec"], [78, 4, 1, "_CPPv4N10mil_vision16ColorObservation6VecImgE", "mil_vision::ColorObservation::VecImg"], [78, 5, 1, "_CPPv4N10mil_vision16ColorObservation3bgrE", "mil_vision::ColorObservation::bgr"], [78, 5, 1, "_CPPv4N10mil_vision16ColorObservation3xyzE", "mil_vision::ColorObservation::xyz"], [78, 0, 1, "_CPPv4N10mil_vision12FrameHistoryE", "mil_vision::FrameHistory"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory12FrameHistoryENSt6stringEj", "mil_vision::FrameHistory::FrameHistory"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory12FrameHistoryENSt6stringEj", "mil_vision::FrameHistory::FrameHistory::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory12FrameHistoryENSt6stringEj", "mil_vision::FrameHistory::FrameHistory::img_topic"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory16frames_availableEv", "mil_vision::FrameHistory::frames_available"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory17get_frame_historyEj", "mil_vision::FrameHistory::get_frame_history"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory17get_frame_historyEj", "mil_vision::FrameHistory::get_frame_history::frames_requested"], [78, 5, 1, "_CPPv4N10mil_vision12FrameHistory12history_sizeE", "mil_vision::FrameHistory::history_size"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistory14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::FrameHistory::image_callback"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::FrameHistory::image_callback::image_msg"], [78, 2, 1, "_CPPv4N10mil_vision12FrameHistory14image_callbackERKN11sensor_msgs13ImageConstPtrERKN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::FrameHistory::image_callback::info_msg"], [78, 5, 1, "_CPPv4N10mil_vision12FrameHistory10topic_nameE", "mil_vision::FrameHistory::topic_name"], [78, 1, 1, "_CPPv4N10mil_vision12FrameHistoryD0Ev", "mil_vision::FrameHistory::~FrameHistory"], [78, 0, 1, "_CPPv4N10mil_vision19ImageWithCameraInfoE", "mil_vision::ImageWithCameraInfo"], [78, 1, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEN11sensor_msgs13ImageConstPtrEN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo"], [78, 1, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEv", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo"], [78, 2, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEN11sensor_msgs13ImageConstPtrEN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo::_image_msg_ptr"], [78, 2, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo19ImageWithCameraInfoEN11sensor_msgs13ImageConstPtrEN11sensor_msgs18CameraInfoConstPtrE", "mil_vision::ImageWithCameraInfo::ImageWithCameraInfo::_info_msg_ptr"], [78, 5, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo13image_msg_ptrE", "mil_vision::ImageWithCameraInfo::image_msg_ptr"], [78, 5, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo10image_timeE", "mil_vision::ImageWithCameraInfo::image_time"], [78, 5, 1, "_CPPv4N10mil_vision19ImageWithCameraInfo12info_msg_ptrE", "mil_vision::ImageWithCameraInfo::info_msg_ptr"], [78, 1, 1, "_CPPv4NK10mil_vision19ImageWithCameraInfoltERK19ImageWithCameraInfo", "mil_vision::ImageWithCameraInfo::operator<"], [78, 2, 1, "_CPPv4NK10mil_vision19ImageWithCameraInfoltERK19ImageWithCameraInfo", "mil_vision::ImageWithCameraInfo::operator<::right"], [78, 4, 1, "_CPPv4I0EN10mil_vision3PCDE", "mil_vision::PCD"], [78, 3, 1, "_CPPv4I0EN10mil_vision3PCDE", "mil_vision::PCD::T"], [78, 4, 1, "_CPPv4I0EN10mil_vision6PCDPtrE", "mil_vision::PCDPtr"], [78, 3, 1, "_CPPv4I0EN10mil_vision6PCDPtrE", "mil_vision::PCDPtr::T"], [78, 0, 1, "_CPPv4N10mil_vision12PcdColorizerE", "mil_vision::PcdColorizer"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::input_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::input_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::nh"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::nh"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::output_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::rgb_cam_frame"], [78, 2, 1, "_CPPv4N10mil_vision12PcdColorizer12PcdColorizerEN3ros10NodeHandleENSt6stringENSt6stringENSt6stringENSt6stringE", "mil_vision::PcdColorizer::PcdColorizer::rgb_cam_topic"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer10_color_pcdEv", "mil_vision::PcdColorizer::_color_pcd"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizer17_transform_to_camEv", "mil_vision::PcdColorizer::_transform_to_cam"], [78, 1, 1, "_CPPv4NK10mil_vision12PcdColorizer2okEv", "mil_vision::PcdColorizer::ok"], [78, 1, 1, "_CPPv4N10mil_vision12PcdColorizerD0Ev", "mil_vision::PcdColorizer::~PcdColorizer"], [78, 0, 1, "_CPPv4I00EN10mil_vision18PcdSubPubAlgorithmE", "mil_vision::PcdSubPubAlgorithm"], [78, 4, 1, "_CPPv4I0EN10mil_vision18PcdSubPubAlgorithm3PCDE", "mil_vision::PcdSubPubAlgorithm::PCD"], [78, 3, 1, "_CPPv4I0EN10mil_vision18PcdSubPubAlgorithm3PCDE", "mil_vision::PcdSubPubAlgorithm::PCD::T"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEv", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm"], [78, 2, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm::input_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm::nh"], [78, 2, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm18PcdSubPubAlgorithmEN3ros10NodeHandleENSt6stringENSt6stringE", "mil_vision::PcdSubPubAlgorithm::PcdSubPubAlgorithm::output_pcd_topic"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm9activatedEv", "mil_vision::PcdSubPubAlgorithm::activated"], [78, 3, 1, "_CPPv4I00EN10mil_vision18PcdSubPubAlgorithmE", "mil_vision::PcdSubPubAlgorithm::input_T"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm2okEv", "mil_vision::PcdSubPubAlgorithm::ok"], [78, 3, 1, "_CPPv4I00EN10mil_vision18PcdSubPubAlgorithmE", "mil_vision::PcdSubPubAlgorithm::output_T"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithm16switchActivationEv", "mil_vision::PcdSubPubAlgorithm::switchActivation"], [78, 1, 1, "_CPPv4N10mil_vision18PcdSubPubAlgorithmD0Ev", "mil_vision::PcdSubPubAlgorithm::~PcdSubPubAlgorithm"], [78, 6, 1, "_CPPv4N10mil_vision9PixelTypeE", "mil_vision::PixelType"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC1E", "mil_vision::PixelType::_16SC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC2E", "mil_vision::PixelType::_16SC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC3E", "mil_vision::PixelType::_16SC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16SC4E", "mil_vision::PixelType::_16SC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC1E", "mil_vision::PixelType::_16UC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC2E", "mil_vision::PixelType::_16UC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC3E", "mil_vision::PixelType::_16UC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_16UC4E", "mil_vision::PixelType::_16UC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC1E", "mil_vision::PixelType::_32FC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC2E", "mil_vision::PixelType::_32FC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC3E", "mil_vision::PixelType::_32FC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32FC4E", "mil_vision::PixelType::_32FC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC1E", "mil_vision::PixelType::_32SC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC2E", "mil_vision::PixelType::_32SC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC3E", "mil_vision::PixelType::_32SC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_32SC4E", "mil_vision::PixelType::_32SC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC1E", "mil_vision::PixelType::_64FC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC2E", "mil_vision::PixelType::_64FC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC3E", "mil_vision::PixelType::_64FC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType6_64FC4E", "mil_vision::PixelType::_64FC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC1E", "mil_vision::PixelType::_8SC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC2E", "mil_vision::PixelType::_8SC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC3E", "mil_vision::PixelType::_8SC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8SC4E", "mil_vision::PixelType::_8SC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC1E", "mil_vision::PixelType::_8UC1"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC2E", "mil_vision::PixelType::_8UC2"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC3E", "mil_vision::PixelType::_8UC3"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType5_8UC4E", "mil_vision::PixelType::_8UC4"], [78, 7, 1, "_CPPv4N10mil_vision9PixelType8_UNKNOWNE", "mil_vision::PixelType::_UNKNOWN"], [78, 0, 1, "_CPPv4N10mil_vision15PointColorStatsE", "mil_vision::PointColorStats"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats3bgrE", "mil_vision::PointColorStats::bgr"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats1nE", "mil_vision::PointColorStats::n"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats3varE", "mil_vision::PointColorStats::var"], [78, 5, 1, "_CPPv4N10mil_vision15PointColorStats3xyzE", "mil_vision::PointColorStats::xyz"], [78, 0, 1, "_CPPv4I00EN10mil_vision15ROSCameraStreamE", "mil_vision::ROSCameraStream"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream8CamFrameE", "mil_vision::ROSCameraStream::CamFrame"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream16CamFrameConstPtrE", "mil_vision::ROSCameraStream::CamFrameConstPtr"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream11CamFramePtrE", "mil_vision::ROSCameraStream::CamFramePtr"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream16CamFrameSequenceE", "mil_vision::ROSCameraStream::CamFrameSequence"], [78, 4, 1, "_CPPv4N10mil_vision15ROSCameraStream14CircularBufferE", "mil_vision::ROSCameraStream::CircularBuffer"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream15ROSCameraStreamEN3ros10NodeHandleE6size_t", "mil_vision::ROSCameraStream::ROSCameraStream"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream15ROSCameraStreamEN3ros10NodeHandleE6size_t", "mil_vision::ROSCameraStream::ROSCameraStream::buffer_size"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream15ROSCameraStreamEN3ros10NodeHandleE6size_t", "mil_vision::ROSCameraStream::ROSCameraStream::nh"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream5beginEv", "mil_vision::ROSCameraStream::begin"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream4colsEv", "mil_vision::ROSCameraStream::cols"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream3endEv", "mil_vision::ROSCameraStream::end"], [78, 3, 1, "_CPPv4I00EN10mil_vision15ROSCameraStreamE", "mil_vision::ROSCameraStream::float_t"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream17getCameraModelPtrEv", "mil_vision::ROSCameraStream::getCameraModelPtr"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream16getFrameFromTimeEN3ros4TimeE", "mil_vision::ROSCameraStream::getFrameFromTime"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream16getFrameFromTimeEN3ros4TimeE", "mil_vision::ROSCameraStream::getFrameFromTime::desired_time"], [78, 3, 1, "_CPPv4I00EN10mil_vision15ROSCameraStreamE", "mil_vision::ROSCameraStream::img_scalar_t"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream4initERNSt6stringE", "mil_vision::ROSCameraStream::init"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStream4initERNSt6stringE", "mil_vision::ROSCameraStream::init::camera_topic"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream15isGeometryConstEv", "mil_vision::ROSCameraStream::isGeometryConst"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStream2okEv", "mil_vision::ROSCameraStream::ok"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStreamixEi", "mil_vision::ROSCameraStream::operator[]"], [78, 2, 1, "_CPPv4N10mil_vision15ROSCameraStreamixEi", "mil_vision::ROSCameraStream::operator[]::i"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream4rowsEv", "mil_vision::ROSCameraStream::rows"], [78, 1, 1, "_CPPv4NK10mil_vision15ROSCameraStream4sizeEv", "mil_vision::ROSCameraStream::size"], [78, 1, 1, "_CPPv4N10mil_vision15ROSCameraStreamD0Ev", "mil_vision::ROSCameraStream::~ROSCameraStream"], [78, 0, 1, "_CPPv4N10mil_vision5RangeE", "mil_vision::Range"], [78, 5, 1, "_CPPv4N10mil_vision5Range5lowerE", "mil_vision::Range::lower"], [78, 5, 1, "_CPPv4N10mil_vision5Range5upperE", "mil_vision::Range::upper"], [78, 4, 1, "_CPPv4I0EN10mil_vision10SPtrVectorE", "mil_vision::SPtrVector"], [78, 3, 1, "_CPPv4I0EN10mil_vision10SPtrVectorE", "mil_vision::SPtrVector::T"], [78, 0, 1, "_CPPv4N10mil_vision20SingleCloudProcessorE", "mil_vision::SingleCloudProcessor"], [78, 1, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor::in_pcd_topic"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessor20SingleCloudProcessorEN3ros10NodeHandleERNSt6stringE6size_t", "mil_vision::SingleCloudProcessor::SingleCloudProcessor::nh"], [78, 1, 1, "_CPPv4NK10mil_vision20SingleCloudProcessor2okEv", "mil_vision::SingleCloudProcessor::ok"], [78, 1, 1, "_CPPv4N10mil_vision20SingleCloudProcessorclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::SingleCloudProcessor::operator()"], [78, 2, 1, "_CPPv4N10mil_vision20SingleCloudProcessorclERKN3PCDIN3pcl8PointXYZEE8ConstPtrE", "mil_vision::SingleCloudProcessor::operator()::pcd"], [78, 4, 1, "_CPPv4I0EN10mil_vision10UPtrVectorE", "mil_vision::UPtrVector"], [78, 3, 1, "_CPPv4I0EN10mil_vision10UPtrVectorE", "mil_vision::UPtrVector::T"], [78, 0, 1, "_CPPv4N10mil_vision19UnoccludedPointsImgE", "mil_vision::UnoccludedPointsImg"], [78, 1, 1, "_CPPv4N10mil_vision19UnoccludedPointsImg19UnoccludedPointsImgEv", "mil_vision::UnoccludedPointsImg::UnoccludedPointsImg"], [78, 1, 1, "_CPPv4N10mil_vision17find_local_maximaERKN2cv5MatNDEf", "mil_vision::find_local_maxima"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_maximaERKN2cv5MatNDEf", "mil_vision::find_local_maxima::histogram"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_maximaERKN2cv5MatNDEf", "mil_vision::find_local_maxima::thresh_multiplier"], [78, 1, 1, "_CPPv4N10mil_vision17find_local_minimaERKN2cv5MatNDEf", "mil_vision::find_local_minima"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_minimaERKN2cv5MatNDEf", "mil_vision::find_local_minima::histogram"], [78, 2, 1, "_CPPv4N10mil_vision17find_local_minimaERKN2cv5MatNDEf", "mil_vision::find_local_minima::thresh_multiplier"], [78, 1, 1, "_CPPv4N10mil_vision27generate_gaussian_kernel_1DE6size_tf", "mil_vision::generate_gaussian_kernel_1D"], [78, 2, 1, "_CPPv4N10mil_vision27generate_gaussian_kernel_1DE6size_tf", "mil_vision::generate_gaussian_kernel_1D::kernel_size"], [78, 2, 1, "_CPPv4N10mil_vision27generate_gaussian_kernel_1DE6size_tf", "mil_vision::generate_gaussian_kernel_1D::sigma"], [78, 1, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle"], [78, 2, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle::ang_res"], [78, 2, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle::deg"], [78, 2, 1, "_CPPv4N10mil_vision22getRadialSymmetryAngleERKN2cv3MatEfb", "mil_vision::getRadialSymmetryAngle::kernel"], [78, 1, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange"], [78, 2, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange::dest"], [78, 2, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange::range"], [78, 2, 1, "_CPPv4N10mil_vision12inParamRangeERN2cv3MatER5RangeRN2cv3MatE", "mil_vision::inParamRange::src"], [78, 1, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::R"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::essential"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::pt1"], [78, 2, 1, "_CPPv4N10mil_vision22kanatani_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::kanatani_triangulation::pt2"], [78, 1, 1, "_CPPv4N10mil_vision14larger_contourERK7ContourRK7Contour", "mil_vision::larger_contour"], [78, 2, 1, "_CPPv4N10mil_vision14larger_contourERK7ContourRK7Contour", "mil_vision::larger_contour::c1"], [78, 2, 1, "_CPPv4N10mil_vision14larger_contourERK7ContourRK7Contour", "mil_vision::larger_contour::c2"], [78, 1, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::R"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::essential"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::pt1"], [78, 2, 1, "_CPPv4N10mil_vision23lindstrom_triangulationERKN2cv7Point2dERKN2cv7Point2dERKN5Eigen8Matrix3dERKN5Eigen8Matrix3dE", "mil_vision::lindstrom_triangulation::pt2"], [78, 1, 1, "_CPPv4N10mil_vision16makeRotInvariantERKN2cv3MatEi", "mil_vision::makeRotInvariant"], [78, 2, 1, "_CPPv4N10mil_vision16makeRotInvariantERKN2cv3MatEi", "mil_vision::makeRotInvariant::kernel"], [78, 2, 1, "_CPPv4N10mil_vision16makeRotInvariantERKN2cv3MatEi", "mil_vision::makeRotInvariant::rotations"], [78, 1, 1, "_CPPv4N10mil_vision16range_from_paramERNSt6stringER5Range", "mil_vision::range_from_param"], [78, 2, 1, "_CPPv4N10mil_vision16range_from_paramERNSt6stringER5Range", "mil_vision::range_from_param::param_root"], [78, 2, 1, "_CPPv4N10mil_vision16range_from_paramERNSt6stringER5Range", "mil_vision::range_from_param::range"], [78, 1, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::deg"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::kernel"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::no_expand"], [78, 2, 1, "_CPPv4N10mil_vision12rotateKernelERKN2cv3MatEfbb", "mil_vision::rotateKernel::theta"], [78, 1, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEi", "mil_vision::select_hist_mode"], [78, 1, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEj", "mil_vision::select_hist_mode"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEi", "mil_vision::select_hist_mode::histogram_modes"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEj", "mil_vision::select_hist_mode::histogram_modes"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEi", "mil_vision::select_hist_mode::target"], [78, 2, 1, "_CPPv4N10mil_vision16select_hist_modeERNSt6vectorIN2cv5PointEEEj", "mil_vision::select_hist_mode::target"], [78, 1, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram"], [78, 2, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram::filter_kernel_size"], [78, 2, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram::histogram"], [78, 2, 1, "_CPPv4N10mil_vision16smooth_histogramERKN2cv5MatNDE6size_tf", "mil_vision::smooth_histogram::sigma"], [78, 1, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::debug_img"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::dest"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::high_thresh_gain"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::hist_size"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::image_name"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::low_thresh_gain"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::ranges"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::ret_dbg_img"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::sigma"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::src"], [78, 2, 1, "_CPPv4N10mil_vision30statistical_image_segmentationERKN2cv3MatERN2cv3MatERN2cv3MatEKiPPKfKiNSt6stringEbKfKfKf", "mil_vision::statistical_image_segmentation::target"], [78, 1, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::mat_P_l"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::mat_P_r"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::undistorted_l"], [78, 2, 1, "_CPPv4N10mil_vision21triangulate_Linear_LSEN2cv3MatEN2cv3MatEN2cv3MatEN2cv3MatE", "mil_vision::triangulate_Linear_LS::undistorted_r"], [69, 0, 1, "_CPPv4N6pcodar10AssociatorE", "pcodar::Associator"], [69, 1, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate"], [69, 2, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate::clusters"], [69, 2, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate::pc"], [69, 2, 1, "_CPPv4N6pcodar10Associator9associateER9ObjectMapRK11point_cloud10clusters_t", "pcodar::Associator::associate::prev_objects"], [69, 1, 1, "_CPPv4N6pcodar10Associator13update_configERK6Config", "pcodar::Associator::update_config"], [69, 2, 1, "_CPPv4N6pcodar10Associator13update_configERK6Config", "pcodar::Associator::update_config::config"], [69, 4, 1, "_CPPv4N6pcodar6ConfigE", "pcodar::Config"], [69, 0, 1, "_CPPv4N6pcodar16InputCloudFilterE", "pcodar::InputCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter16InputCloudFilterEv", "pcodar::InputCloudFilter::InputCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::InputCloudFilter::filter"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::InputCloudFilter::filter::in"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::InputCloudFilter::filter::pc"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter10set_boundsE15point_cloud_ptr", "pcodar::InputCloudFilter::set_bounds"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter10set_boundsE15point_cloud_ptr", "pcodar::InputCloudFilter::set_bounds::bounds"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter19set_robot_footprintERKN5Eigen8Vector4fERKN5Eigen8Vector4fE", "pcodar::InputCloudFilter::set_robot_footprint"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter19set_robot_footprintERKN5Eigen8Vector4fERKN5Eigen8Vector4fE", "pcodar::InputCloudFilter::set_robot_footprint::max"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter19set_robot_footprintERKN5Eigen8Vector4fERKN5Eigen8Vector4fE", "pcodar::InputCloudFilter::set_robot_footprint::min"], [69, 1, 1, "_CPPv4N6pcodar16InputCloudFilter14set_robot_poseERKN5Eigen8Affine3dE", "pcodar::InputCloudFilter::set_robot_pose"], [69, 2, 1, "_CPPv4N6pcodar16InputCloudFilter14set_robot_poseERKN5Eigen8Affine3dE", "pcodar::InputCloudFilter::set_robot_pose::transform"], [69, 4, 1, "_CPPv4N6pcodar6KdTreeE", "pcodar::KdTree"], [69, 4, 1, "_CPPv4N6pcodar9KdTreePtrE", "pcodar::KdTreePtr"], [69, 0, 1, "_CPPv4N6pcodar13MarkerManagerE", "pcodar::MarkerManager"], [69, 1, 1, "_CPPv4N6pcodar13MarkerManager10initializeERN3ros10NodeHandleENSt10shared_ptrI9ObjectMapEE", "pcodar::MarkerManager::initialize"], [69, 2, 1, "_CPPv4N6pcodar13MarkerManager10initializeERN3ros10NodeHandleENSt10shared_ptrI9ObjectMapEE", "pcodar::MarkerManager::initialize::nh"], [69, 2, 1, "_CPPv4N6pcodar13MarkerManager10initializeERN3ros10NodeHandleENSt10shared_ptrI9ObjectMapEE", "pcodar::MarkerManager::initialize::objects_"], [69, 1, 1, "_CPPv4N6pcodar13MarkerManager5resetEv", "pcodar::MarkerManager::reset"], [69, 1, 1, "_CPPv4N6pcodar13MarkerManager14update_markersEv", "pcodar::MarkerManager::update_markers"], [69, 0, 1, "_CPPv4N6pcodar4NodeE", "pcodar::Node"], [69, 1, 1, "_CPPv4N6pcodar4Node4NodeEN3ros10NodeHandleE", "pcodar::Node::Node"], [69, 2, 1, "_CPPv4N6pcodar4Node4NodeEN3ros10NodeHandleE", "pcodar::Node::Node::nh"], [69, 1, 1, "_CPPv4N6pcodar4Node10initializeEv", "pcodar::Node::initialize"], [69, 1, 1, "_CPPv4N6pcodar4Node11velodyne_cbERKN11sensor_msgs19PointCloud2ConstPtrE", "pcodar::Node::velodyne_cb"], [69, 2, 1, "_CPPv4N6pcodar4Node11velodyne_cbERKN11sensor_msgs19PointCloud2ConstPtrE", "pcodar::Node::velodyne_cb::pcloud"], [69, 0, 1, "_CPPv4N6pcodar8NodeBaseE", "pcodar::NodeBase"], [69, 1, 1, "_CPPv4N6pcodar8NodeBase8NodeBaseEN3ros10NodeHandleE", "pcodar::NodeBase::NodeBase"], [69, 2, 1, "_CPPv4N6pcodar8NodeBase8NodeBaseEN3ros10NodeHandleE", "pcodar::NodeBase::NodeBase::nh"], [69, 1, 1, "_CPPv4N6pcodar8NodeBase13UpdateObjectsEv", "pcodar::NodeBase::UpdateObjects"], [69, 1, 1, "_CPPv4N6pcodar8NodeBase10initializeEv", "pcodar::NodeBase::initialize"], [69, 5, 1, "_CPPv4N6pcodar8NodeBase8objects_E", "pcodar::NodeBase::objects_"], [69, 0, 1, "_CPPv4N6pcodar6ObjectE", "pcodar::Object"], [69, 1, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object"], [69, 2, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object::id"], [69, 2, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object::pc"], [69, 2, 1, "_CPPv4N6pcodar6Object6ObjectERK15point_cloud_ptr4uintRK9KdTreePtr", "pcodar::Object::Object::search_tree"], [69, 1, 1, "_CPPv4NK6pcodar6Object6as_msgEv", "pcodar::Object::as_msg"], [69, 1, 1, "_CPPv4NK6pcodar6Object10get_centerEv", "pcodar::Object::get_center"], [69, 1, 1, "_CPPv4NK6pcodar6Object10get_pointsEv", "pcodar::Object::get_points"], [69, 1, 1, "_CPPv4NK6pcodar6Object14get_points_ptrEv", "pcodar::Object::get_points_ptr"], [69, 1, 1, "_CPPv4NK6pcodar6Object15get_search_treeEv", "pcodar::Object::get_search_tree"], [69, 1, 1, "_CPPv4N6pcodar6Object18set_classificationERKNSt6stringE", "pcodar::Object::set_classification"], [69, 2, 1, "_CPPv4N6pcodar6Object18set_classificationERKNSt6stringE", "pcodar::Object::set_classification::classification"], [69, 1, 1, "_CPPv4N6pcodar6Object6set_idE4uint", "pcodar::Object::set_id"], [69, 2, 1, "_CPPv4N6pcodar6Object6set_idE4uint", "pcodar::Object::set_id::id"], [69, 1, 1, "_CPPv4N6pcodar6Object13update_pointsERK15point_cloud_ptrRK9KdTreePtr", "pcodar::Object::update_points"], [69, 2, 1, "_CPPv4N6pcodar6Object13update_pointsERK15point_cloud_ptrRK9KdTreePtr", "pcodar::Object::update_points::pc"], [69, 2, 1, "_CPPv4N6pcodar6Object13update_pointsERK15point_cloud_ptrRK9KdTreePtr", "pcodar::Object::update_points::search_tree"], [69, 0, 1, "_CPPv4N6pcodar14ObjectDetectorE", "pcodar::ObjectDetector"], [69, 1, 1, "_CPPv4N6pcodar14ObjectDetector12get_clustersE21point_cloud_const_ptr", "pcodar::ObjectDetector::get_clusters"], [69, 2, 1, "_CPPv4N6pcodar14ObjectDetector12get_clustersE21point_cloud_const_ptr", "pcodar::ObjectDetector::get_clusters::pc"], [69, 1, 1, "_CPPv4N6pcodar14ObjectDetector13update_configERK6Config", "pcodar::ObjectDetector::update_config"], [69, 2, 1, "_CPPv4N6pcodar14ObjectDetector13update_configERK6Config", "pcodar::ObjectDetector::update_config::config"], [69, 0, 1, "_CPPv4N6pcodar9ObjectMapE", "pcodar::ObjectMap"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap13DatabaseQueryERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "pcodar::ObjectMap::DatabaseQuery"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap13DatabaseQueryERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "pcodar::ObjectMap::DatabaseQuery::req"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap13DatabaseQueryERN8mil_msgs13ObjectDBQuery7RequestERN8mil_msgs13ObjectDBQuery8ResponseE", "pcodar::ObjectMap::DatabaseQuery::res"], [69, 4, 1, "_CPPv4N6pcodar9ObjectMap8IteratorE", "pcodar::ObjectMap::Iterator"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap9ObjectMapEv", "pcodar::ObjectMap::ObjectMap"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap10add_objectERK15point_cloud_ptrRK9KdTreePtr", "pcodar::ObjectMap::add_object"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap10add_objectERK15point_cloud_ptrRK9KdTreePtr", "pcodar::ObjectMap::add_object::pc"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap10add_objectERK15point_cloud_ptrRK9KdTreePtr", "pcodar::ObjectMap::add_object::search_tree"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap12erase_objectERK8Iterator", "pcodar::ObjectMap::erase_object"], [69, 2, 1, "_CPPv4N6pcodar9ObjectMap12erase_objectERK8Iterator", "pcodar::ObjectMap::erase_object::it"], [69, 5, 1, "_CPPv4N6pcodar9ObjectMap11highest_id_E", "pcodar::ObjectMap::highest_id_"], [69, 5, 1, "_CPPv4N6pcodar9ObjectMap13just_removed_E", "pcodar::ObjectMap::just_removed_"], [69, 5, 1, "_CPPv4N6pcodar9ObjectMap8objects_E", "pcodar::ObjectMap::objects_"], [69, 1, 1, "_CPPv4N6pcodar9ObjectMap6to_msgEv", "pcodar::ObjectMap::to_msg"], [69, 0, 1, "_CPPv4N6pcodar12OgridManagerE", "pcodar::OgridManager"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager12OgridManagerEv", "pcodar::OgridManager::OgridManager"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager13draw_boundaryEv", "pcodar::OgridManager::draw_boundary"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager10initializeERN3ros10NodeHandleE", "pcodar::OgridManager::initialize"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager10initializeERN3ros10NodeHandleE", "pcodar::OgridManager::initialize::nh"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager10set_boundsE15point_cloud_ptr", "pcodar::OgridManager::set_bounds"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager10set_boundsE15point_cloud_ptr", "pcodar::OgridManager::set_bounds::pc"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager13update_configERK6Config", "pcodar::OgridManager::update_config"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager13update_configERK6Config", "pcodar::OgridManager::update_config::config"], [69, 1, 1, "_CPPv4N6pcodar12OgridManager12update_ogridERK9ObjectMap", "pcodar::OgridManager::update_ogrid"], [69, 2, 1, "_CPPv4N6pcodar12OgridManager12update_ogridERK9ObjectMap", "pcodar::OgridManager::update_ogrid::objects"], [69, 0, 1, "_CPPv4N6pcodar21PersistentCloudFilterE", "pcodar::PersistentCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar21PersistentCloudFilter21PersistentCloudFilterEv", "pcodar::PersistentCloudFilter::PersistentCloudFilter"], [69, 1, 1, "_CPPv4N6pcodar21PersistentCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::PersistentCloudFilter::filter"], [69, 2, 1, "_CPPv4N6pcodar21PersistentCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::PersistentCloudFilter::filter::in"], [69, 2, 1, "_CPPv4N6pcodar21PersistentCloudFilter6filterE21point_cloud_const_ptrR11point_cloud", "pcodar::PersistentCloudFilter::filter::pc"], [69, 1, 1, "_CPPv4N6pcodar21PersistentCloudFilter13update_configERK6Config", "pcodar::PersistentCloudFilter::update_config"], [69, 2, 1, "_CPPv4N6pcodar21PersistentCloudFilter13update_configERK6Config", "pcodar::PersistentCloudFilter::update_config::config"], [69, 0, 1, "_CPPv4N6pcodar24PointCloudCircularBufferE", "pcodar::PointCloudCircularBuffer"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer24PointCloudCircularBufferEv", "pcodar::PointCloudCircularBuffer::PointCloudCircularBuffer"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer15add_point_cloudERK15point_cloud_ptr", "pcodar::PointCloudCircularBuffer::add_point_cloud"], [69, 2, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer15add_point_cloudERK15point_cloud_ptr", "pcodar::PointCloudCircularBuffer::add_point_cloud::pc"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer5clearEv", "pcodar::PointCloudCircularBuffer::clear"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer15get_point_cloudEv", "pcodar::PointCloudCircularBuffer::get_point_cloud"], [69, 1, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer13update_configERK6Config", "pcodar::PointCloudCircularBuffer::update_config"], [69, 2, 1, "_CPPv4N6pcodar24PointCloudCircularBuffer13update_configERK6Config", "pcodar::PointCloudCircularBuffer::update_config::config"], [69, 4, 1, "_CPPv4N6pcodar9cluster_tE", "pcodar::cluster_t"], [69, 4, 1, "_CPPv4N6pcodar10clusters_tE", "pcodar::clusters_t"], [69, 4, 1, "_CPPv4N6pcodar11point_cloudE", "pcodar::point_cloud"], [69, 4, 1, "_CPPv4N6pcodar21point_cloud_const_ptrE", "pcodar::point_cloud_const_ptr"], [69, 4, 1, "_CPPv4N6pcodar15point_cloud_ptrE", "pcodar::point_cloud_ptr"], [69, 4, 1, "_CPPv4N6pcodar7point_tE", "pcodar::point_t"], [111, 1, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::a"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::b"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::c"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::d"], [111, 2, 1, "_CPPv423point_to_plane_distanceddddN5Eigen8Vector3dE", "point_to_plane_distance::pt"], [50, 0, 1, "_CPPv4N10ros_alarms16AlarmBroadcasterE", "ros_alarms::AlarmBroadcaster"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster16AlarmBroadcasterERN3ros10NodeHandleEP10AlarmProxy", "ros_alarms::AlarmBroadcaster::AlarmBroadcaster"], [50, 2, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster16AlarmBroadcasterERN3ros10NodeHandleEP10AlarmProxy", "ros_alarms::AlarmBroadcaster::AlarmBroadcaster::alarm"], [50, 2, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster16AlarmBroadcasterERN3ros10NodeHandleEP10AlarmProxy", "ros_alarms::AlarmBroadcaster::AlarmBroadcaster::nh"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster5clearEv", "ros_alarms::AlarmBroadcaster::clear"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster8getAlarmEv", "ros_alarms::AlarmBroadcaster::getAlarm"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster7publishEv", "ros_alarms::AlarmBroadcaster::publish"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster5raiseEv", "ros_alarms::AlarmBroadcaster::raise"], [50, 1, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster14updateSeverityEi", "ros_alarms::AlarmBroadcaster::updateSeverity"], [50, 2, 1, "_CPPv4N10ros_alarms16AlarmBroadcaster14updateSeverityEi", "ros_alarms::AlarmBroadcaster::updateSeverity::sev"], [50, 0, 1, "_CPPv4I0EN10ros_alarms13AlarmListenerE", "ros_alarms::AlarmListener"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener13AlarmListenerERN3ros10NodeHandleENSt6stringE", "ros_alarms::AlarmListener::AlarmListener"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener13AlarmListenerERN3ros10NodeHandleENSt6stringE", "ros_alarms::AlarmListener::AlarmListener::alarm_name"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener13AlarmListenerERN3ros10NodeHandleENSt6stringE", "ros_alarms::AlarmListener::AlarmListener::nh"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener5addCbE10callable_t", "ros_alarms::AlarmListener::addCb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener5addCbE10callable_t", "ros_alarms::AlarmListener::addCb::cb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addClearCbE10callable_t", "ros_alarms::AlarmListener::addClearCb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addClearCbE10callable_t", "ros_alarms::AlarmListener::addClearCb::cb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_t", "ros_alarms::AlarmListener::addRaiseCb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_ti", "ros_alarms::AlarmListener::addRaiseCb"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_t", "ros_alarms::AlarmListener::addRaiseCb::cb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_ti", "ros_alarms::AlarmListener::addRaiseCb::cb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb::cb"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_ti", "ros_alarms::AlarmListener::addRaiseCb::severity"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb::severity_hi"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener10addRaiseCbE10callable_tii", "ros_alarms::AlarmListener::addRaiseCb::severity_lo"], [50, 3, 1, "_CPPv4I0EN10ros_alarms13AlarmListenerE", "ros_alarms::AlarmListener::callable_t"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener14clearCallbacksEv", "ros_alarms::AlarmListener::clearCallbacks"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener8getAlarmEv", "ros_alarms::AlarmListener::getAlarm"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener14getCachedAlarmEv", "ros_alarms::AlarmListener::getCachedAlarm"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener17getLastUpdateTimeEv", "ros_alarms::AlarmListener::getLastUpdateTime"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener17getNumConnectionsEv", "ros_alarms::AlarmListener::getNumConnections"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener18getTimeSinceUpdateEv", "ros_alarms::AlarmListener::getTimeSinceUpdate"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener9isClearedEv", "ros_alarms::AlarmListener::isCleared"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener8isRaisedEv", "ros_alarms::AlarmListener::isRaised"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener2okEv", "ros_alarms::AlarmListener::ok"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener12queryClearedEv", "ros_alarms::AlarmListener::queryCleared"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener11queryRaisedEv", "ros_alarms::AlarmListener::queryRaised"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener5startEv", "ros_alarms::AlarmListener::start"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener4stopEv", "ros_alarms::AlarmListener::stop"], [50, 1, 1, "_CPPv4N10ros_alarms13AlarmListener17waitForConnectionEN3ros8DurationE", "ros_alarms::AlarmListener::waitForConnection"], [50, 2, 1, "_CPPv4N10ros_alarms13AlarmListener17waitForConnectionEN3ros8DurationE", "ros_alarms::AlarmListener::waitForConnection::timeout"], [50, 1, 1, "_CPPv4NK10ros_alarms13AlarmListener13waitForUpdateEN3ros8DurationE", "ros_alarms::AlarmListener::waitForUpdate"], [50, 2, 1, "_CPPv4NK10ros_alarms13AlarmListener13waitForUpdateEN3ros8DurationE", "ros_alarms::AlarmListener::waitForUpdate::timeout"], [50, 0, 1, "_CPPv4N10ros_alarms10AlarmProxyE", "ros_alarms::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyEN15ros_alarms_msgs5AlarmE", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyEv", "ros_alarms::AlarmProxy::AlarmProxy"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::alarm_name"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::alarm_name"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::json_parameters"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::json_parameters"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyEN15ros_alarms_msgs5AlarmE", "ros_alarms::AlarmProxy::AlarmProxy::msg"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::node_name"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::problem_description"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::problem_description"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::raised"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::raised"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::severity"], [50, 2, 1, "_CPPv4N10ros_alarms10AlarmProxy10AlarmProxyENSt6stringEbNSt6stringENSt6stringEi", "ros_alarms::AlarmProxy::AlarmProxy::severity"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy10alarm_nameE", "ros_alarms::AlarmProxy::alarm_name"], [50, 1, 1, "_CPPv4N10ros_alarms10AlarmProxy6as_msgEv", "ros_alarms::AlarmProxy::as_msg"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy15json_parametersE", "ros_alarms::AlarmProxy::json_parameters"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy9node_nameE", "ros_alarms::AlarmProxy::node_name"], [50, 1, 1, "_CPPv4NK10ros_alarms10AlarmProxyeqERK10AlarmProxy", "ros_alarms::AlarmProxy::operator=="], [50, 2, 1, "_CPPv4NK10ros_alarms10AlarmProxyeqERK10AlarmProxy", "ros_alarms::AlarmProxy::operator==::other"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy19problem_descriptionE", "ros_alarms::AlarmProxy::problem_description"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy6raisedE", "ros_alarms::AlarmProxy::raised"], [50, 5, 1, "_CPPv4N10ros_alarms10AlarmProxy8severityE", "ros_alarms::AlarmProxy::severity"], [50, 1, 1, "_CPPv4NK10ros_alarms10AlarmProxy3strEb", "ros_alarms::AlarmProxy::str"], [50, 2, 1, "_CPPv4NK10ros_alarms10AlarmProxy3strEb", "ros_alarms::AlarmProxy::str::full"], [50, 0, 1, "_CPPv4I0EN10ros_alarms10ListenerCbE", "ros_alarms::ListenerCb"], [50, 6, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenarioE", "ros_alarms::ListenerCb::CallScenario"], [50, 7, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenario6alwaysE", "ros_alarms::ListenerCb::CallScenario::always"], [50, 7, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenario5clearE", "ros_alarms::ListenerCb::CallScenario::clear"], [50, 7, 1, "_CPPv4N10ros_alarms10ListenerCb12CallScenario5raiseE", "ros_alarms::ListenerCb::CallScenario::raise"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb13call_scenarioE", "ros_alarms::ListenerCb::call_scenario"], [50, 3, 1, "_CPPv4I0EN10ros_alarms10ListenerCbE", "ros_alarms::ListenerCb::callable_t"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb7cb_funcE", "ros_alarms::ListenerCb::cb_func"], [50, 1, 1, "_CPPv4N10ros_alarms10ListenerCbclEN15ros_alarms_msgs5AlarmE", "ros_alarms::ListenerCb::operator()"], [50, 2, 1, "_CPPv4N10ros_alarms10ListenerCbclEN15ros_alarms_msgs5AlarmE", "ros_alarms::ListenerCb::operator()::msg"], [50, 1, 1, "_CPPv4N10ros_alarms10ListenerCb14severity_checkEi", "ros_alarms::ListenerCb::severity_check"], [50, 2, 1, "_CPPv4N10ros_alarms10ListenerCb14severity_checkEi", "ros_alarms::ListenerCb::severity_check::severity"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb11severity_hiE", "ros_alarms::ListenerCb::severity_hi"], [50, 5, 1, "_CPPv4N10ros_alarms10ListenerCb11severity_loE", "ros_alarms::ListenerCb::severity_lo"], [111, 4, 1, "_CPPv4N3sub13ColorHandlerTE", "sub::ColorHandlerT"], [111, 4, 1, "_CPPv4N3sub12PointCloudNTE", "sub::PointCloudNT"], [111, 4, 1, "_CPPv4N3sub11PointCloudTE", "sub::PointCloudT"], [111, 4, 1, "_CPPv4N3sub7PointNTE", "sub::PointNT"], [111, 4, 1, "_CPPv4N3sub9PointXYZTE", "sub::PointXYZT"], [111, 0, 1, "_CPPv4N3sub14RvizVisualizerE", "sub::RvizVisualizer"], [111, 1, 1, "_CPPv4N3sub14RvizVisualizer14RvizVisualizerENSt6stringE", "sub::RvizVisualizer::RvizVisualizer"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer14RvizVisualizerENSt6stringE", "sub::RvizVisualizer::RvizVisualizer::rviz_topic"], [111, 5, 1, "_CPPv4N3sub14RvizVisualizer2nhE", "sub::RvizVisualizer::nh"], [111, 5, 1, "_CPPv4N3sub14RvizVisualizer8rviz_pubE", "sub::RvizVisualizer::rviz_pub"], [111, 1, 1, "_CPPv4N3sub14RvizVisualizer14visualize_buoyERN13geometry_msgs4PoseERNSt6stringE", "sub::RvizVisualizer::visualize_buoy"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer14visualize_buoyERN13geometry_msgs4PoseERNSt6stringE", "sub::RvizVisualizer::visualize_buoy::frame_id"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer14visualize_buoyERN13geometry_msgs4PoseERNSt6stringE", "sub::RvizVisualizer::visualize_buoy::pose"], [111, 1, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::corners3d"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::frame_id"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::orientation"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::pose"], [111, 2, 1, "_CPPv4N3sub14RvizVisualizer23visualize_torpedo_boardERN13geometry_msgs4PoseEN5Eigen11QuaterniondERNSt6vectorIN5Eigen8Vector3dEEERNSt6vectorIN5Eigen8Vector3dEEERNSt6stringE", "sub::RvizVisualizer::visualize_torpedo_board::targets"], [111, 1, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray"], [111, 3, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::PointT"], [111, 2, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::cloud"], [111, 2, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::direction_pre"], [111, 2, 1, "_CPPv4I0EN3sub23closest_point_index_rayE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fE", "sub::closest_point_index_ray::line_pt"], [111, 1, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP"], [111, 3, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::PointT"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::cloud"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::direction_pre"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::distance_to_ray"], [111, 2, 1, "_CPPv4I0EN3sub26closest_point_index_rayOMPE6size_tRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_index_rayOMP::line_pt"], [111, 1, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray"], [111, 3, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::PointT"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::cloud"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::direction"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::distance"], [111, 2, 1, "_CPPv4I0EN3sub17closest_point_rayE6PointTRKN3pcl10PointCloudI6PointTEERKN5Eigen8Vector3fERKN5Eigen8Vector3fERd", "sub::closest_point_ray::line_pt"], [111, 1, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals"], [111, 3, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::PointT"], [111, 2, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::normal_radius"], [111, 2, 1, "_CPPv4I0EN3sub15compute_normalsEvKN3pcl10PointCloudI6PointTE3PtrER12PointCloudNTd", "sub::compute_normals::output_cloud"], [111, 1, 1, "_CPPv4I0EN3sub14point_to_eigenEN5Eigen8Vector3fERK6PointT", "sub::point_to_eigen"], [111, 3, 1, "_CPPv4I0EN3sub14point_to_eigenEN5Eigen8Vector3fERK6PointT", "sub::point_to_eigen::PointT"], [111, 2, 1, "_CPPv4I0EN3sub14point_to_eigenEN5Eigen8Vector3fERK6PointT", "sub::point_to_eigen::pcl_point"], [111, 1, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud"], [111, 3, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::PointT"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::camera_model"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::cloud"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::distance"], [111, 2, 1, "_CPPv4I0EN3sub19project_uv_to_cloudE6PointTRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud::image_point"], [111, 1, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index"], [111, 3, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::PointT"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::camera_model"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::cloud"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::distance"], [111, 2, 1, "_CPPv4I0EN3sub25project_uv_to_cloud_indexE6size_tRKN3pcl10PointCloudI6PointTEERKN2cv7Point2dEKN14image_geometry18PinholeCameraModelERd", "sub::project_uv_to_cloud_index::image_point"], [111, 1, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box"], [111, 3, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::PointT"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::center"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::edge_length"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub11segment_boxEvKN3pcl10PointCloudI6PointTE3PtrERKN5Eigen8Vector3fEKdRN3pcl10PointCloudI6PointTEE", "sub::segment_box::output_cloud"], [111, 1, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing"], [111, 3, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::PointT"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::clusters"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::colored_cloud"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::indices"], [111, 2, 1, "_CPPv4I0EN3sub26segment_rgb_region_growingEvKN3pcl10PointCloudI6PointTE3PtrERKNSt6vectorIiEERNSt6vectorIN3pcl12PointIndicesEEEN3pcl10PointCloudI6PointTE3PtrE", "sub::segment_rgb_region_growing::target_cloud"], [111, 1, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter"], [111, 3, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::PointT"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::mean_k"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::output_cloud"], [111, 2, 1, "_CPPv4I0EN3sub26statistical_outlier_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEff", "sub::statistical_outlier_filter::std_dev_mul_thresh"], [111, 1, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter"], [111, 3, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::PointT"], [111, 2, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::input_cloud"], [111, 2, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::leaf_size"], [111, 2, 1, "_CPPv4I0EN3sub12voxel_filterEvKN3pcl10PointCloudI6PointTE3PtrEKN3pcl10PointCloudI6PointTE3PtrEf", "sub::voxel_filter::output_cloud"], [54, 11, 0, "-", "axros"], [64, 11, 0, "-", "mil_missions_core"], [71, 11, 0, "-", "mil_poi"], [57, 11, 0, "-", "mil_usb_to_can"], [50, 11, 0, "-", "ros_alarms"]], "actionlib_msgs.msg": [[63, 8, 1, "", "GoalStatus"]], "actionlib_msgs.msg.GoalStatus": [[63, 9, 1, "", "ACTIVE"], [63, 9, 1, "", "PENDING"], [63, 9, 1, "", "PREEMPTED"], [63, 9, 1, "", "SUCCEEDED"]], "alarm_handlers": [[50, 8, 1, "", "BusVoltage"], [50, 8, 1, "", "HeightOverBottom"], [50, 8, 1, "", "HwKill"], [50, 8, 1, "", "Kill"], [50, 8, 1, "", "NetworkLoss"], [50, 8, 1, "", "OdomKill"], [50, 8, 1, "", "ThrusterOut"]], "alarm_handlers.BusVoltage": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "raised"]], "alarm_handlers.HeightOverBottom": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "raised"]], "alarm_handlers.HwKill": [[50, 9, 1, "", "alarm_name"]], "alarm_handlers.Kill": [[50, 9, 1, "", "HARDWARE_KILL_GRACE_PERIOD_SECONDS"], [50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "bagger_dump"], [50, 10, 1, "", "cleared"], [50, 9, 1, "", "condition"], [50, 10, 1, "", "raised"], [50, 10, 1, "", "set_mobo_kill"]], "alarm_handlers.NetworkLoss": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 9, 1, "", "hm"], [50, 10, 1, "", "raised"]], "alarm_handlers.OdomKill": [[50, 9, 1, "", "GRACE_PERIOD"], [50, 9, 1, "", "LAUNCH_TIME"], [50, 9, 1, "", "MAX_JUMP"], [50, 9, 1, "", "TIMEOUT"], [50, 9, 1, "", "ab"], [50, 10, 1, "", "check"], [50, 10, 1, "", "check_continuity"], [50, 10, 1, "", "clear_kill"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "need_kill"], [50, 10, 1, "", "raised"]], "alarm_handlers.ThrusterOut": [[50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "cleared"], [50, 10, 1, "", "raised"], [50, 10, 1, "", "update_layout"]], "axros": [[51, 8, 1, "", "ActionClient"], [51, 8, 1, "", "AlreadySetup"], [51, 8, 1, "", "AsyncServerProxy"], [51, 8, 1, "", "AxrosException"], [51, 8, 1, "", "Goal"], [51, 8, 1, "", "GoalManager"], [51, 8, 1, "", "NodeHandle"], [51, 8, 1, "", "NotSetup"], [51, 8, 1, "", "Publisher"], [51, 8, 1, "", "ROSMasterError"], [51, 8, 1, "", "ROSMasterFailure"], [51, 8, 1, "", "ROSMasterProxy"], [51, 8, 1, "", "Service"], [51, 8, 1, "", "ServiceClient"], [51, 8, 1, "", "ServiceError"], [51, 8, 1, "", "SimpleActionServer"], [51, 8, 1, "", "Subscriber"], [51, 8, 1, "", "TooPastError"], [51, 8, 1, "", "Transform"], [51, 8, 1, "", "TransformBroadcaster"], [51, 8, 1, "", "TransformListener"], [51, 8, 1, "", "XMLRPCException"], [51, 9, 1, "", "XMLRPCLegalType"], [51, 12, 1, "", "wall_sleep"], [51, 12, 1, "", "wrap_time_notice"], [51, 12, 1, "", "wrap_timeout"]], "axros.ActionClient": [[51, 10, 1, "", "cancel_all_goals"], [51, 10, 1, "", "cancel_goals_at_and_before_time"], [51, 10, 1, "", "send_goal"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"], [51, 10, 1, "", "wait_for_server"]], "axros.AsyncServerProxy": [[51, 9, 1, "", "session"], [51, 9, 1, "", "transport"], [51, 9, 1, "", "uri"]], "axros.AxrosException": [[51, 9, 1, "", "node_handle"]], "axros.Goal": [[51, 10, 1, "", "status_msg"]], "axros.GoalManager": [[51, 10, 1, "", "cancel"], [51, 10, 1, "", "forget"], [51, 10, 1, "", "get_feedback"], [51, 10, 1, "", "get_result"]], "axros.NodeHandle": [[51, 10, 1, "", "advertise"], [51, 10, 1, "", "advertise_service"], [51, 10, 1, "", "delete_param"], [51, 10, 1, "", "from_argv"], [51, 10, 1, "", "from_argv_with_remaining"], [51, 10, 1, "", "get_name"], [51, 10, 1, "", "get_param"], [51, 10, 1, "", "get_param_names"], [51, 10, 1, "", "get_service_client"], [51, 10, 1, "", "get_time"], [51, 10, 1, "", "has_param"], [51, 10, 1, "", "is_running"], [51, 10, 1, "", "is_shutdown"], [51, 9, 1, "", "master_proxy"], [51, 9, 1, "", "master_uri"], [51, 10, 1, "", "resolve_name"], [51, 10, 1, "", "resolve_name_without_remapping"], [51, 10, 1, "", "search_param"], [51, 10, 1, "", "set_param"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"], [51, 9, 1, "", "shutdown_callbacks"], [51, 10, 1, "", "sleep"], [51, 10, 1, "", "sleep_until"], [51, 10, 1, "", "subscribe"], [51, 9, 1, "", "tcpros_handlers"], [51, 9, 1, "", "xmlrpc_handlers"], [51, 9, 1, "", "xmlrpc_server_uri"]], "axros.Publisher": [[51, 10, 1, "", "get_connections"], [51, 10, 1, "", "is_running"], [51, 9, 1, "", "message_type"], [51, 10, 1, "", "publish"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"]], "axros.ROSMasterError": [[51, 9, 1, "", "ros_message"]], "axros.ROSMasterFailure": [[51, 9, 1, "", "ros_message"]], "axros.Service": [[51, 10, 1, "", "is_running"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"]], "axros.ServiceClient": [[51, 10, 1, "", "wait_for_service"]], "axros.SimpleActionServer": [[51, 10, 1, "", "is_active"], [51, 10, 1, "", "is_cancel_requested"], [51, 10, 1, "", "is_new_goal_available"], [51, 10, 1, "", "is_preempt_requested"], [51, 10, 1, "", "is_running"], [51, 10, 1, "", "publish_feedback"], [51, 10, 1, "", "set_aborted"], [51, 10, 1, "", "set_preempted"], [51, 10, 1, "", "set_succeeded"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"], [51, 10, 1, "", "start"], [51, 10, 1, "", "stop"]], "axros.Subscriber": [[51, 10, 1, "", "get_connections"], [51, 10, 1, "", "get_last_message"], [51, 10, 1, "", "get_last_message_time"], [51, 10, 1, "", "get_next_message"], [51, 10, 1, "", "is_running"], [51, 10, 1, "", "recently_read"], [51, 10, 1, "", "setup"], [51, 10, 1, "", "shutdown"]], "axros.Transform": [[51, 10, 1, "", "from_Pose_message"], [51, 10, 1, "", "from_Transform_message"], [51, 10, 1, "", "identity"], [51, 10, 1, "", "inverse"]], "axros.TransformBroadcaster": [[51, 10, 1, "", "send_transform"]], "axros.TransformListener": [[51, 10, 1, "", "shutdown"]], "axros.XMLRPCException": [[51, 9, 1, "", "exception"], [51, 9, 1, "", "request_body"]], "geometry_msgs.msg": [[63, 8, 1, "", "Accel"], [63, 8, 1, "", "Point"], [63, 8, 1, "", "PointStamped"], [63, 8, 1, "", "Polygon"], [63, 8, 1, "", "Pose"], [63, 8, 1, "", "Pose2D"], [63, 8, 1, "", "PoseWithCovariance"], [63, 8, 1, "", "Quaternion"], [63, 8, 1, "", "Transform"], [63, 8, 1, "", "TransformStamped"], [63, 8, 1, "", "Twist"], [63, 8, 1, "", "TwistWithCovariance"], [63, 8, 1, "", "Vector3"], [63, 8, 1, "", "Wrench"], [63, 8, 1, "", "WrenchStamped"]], "geometry_msgs.msg.Accel": [[63, 9, 1, "", "angular"], [63, 9, 1, "", "linear"]], "geometry_msgs.msg.Point": [[63, 9, 1, "", "x"], [63, 9, 1, "", "y"], [63, 9, 1, "", "z"]], "geometry_msgs.msg.PointStamped": [[63, 9, 1, "", "header"], [63, 9, 1, "", "point"]], "geometry_msgs.msg.Polygon": [[63, 9, 1, "", "points"]], "geometry_msgs.msg.Pose": [[63, 9, 1, "", "orientation"], [63, 9, 1, "", "position"]], "geometry_msgs.msg.Pose2D": [[63, 9, 1, "", "theta"], [63, 9, 1, "", "x"], [63, 9, 1, "", "y"]], "geometry_msgs.msg.PoseWithCovariance": [[63, 9, 1, "", "covariance"], [63, 9, 1, "", "pose"]], "geometry_msgs.msg.Quaternion": [[63, 9, 1, "", "w"], [63, 9, 1, "", "x"], [63, 9, 1, "", "y"], [63, 9, 1, "", "z"]], "geometry_msgs.msg.Transform": [[63, 9, 1, "", "rotation"], [63, 9, 1, "", "translation"]], "geometry_msgs.msg.TransformStamped": [[63, 9, 1, "", "child_frame_id"], [63, 9, 1, "", "header"], [63, 9, 1, "", "transform"]], "geometry_msgs.msg.Twist": [[63, 9, 1, "", "angular"], [63, 9, 1, "", "linear"]], "geometry_msgs.msg.TwistWithCovariance": [[63, 9, 1, "", "covariance"], [63, 9, 1, "", "twist"]], "geometry_msgs.msg.Vector3": [[63, 9, 1, "", "x"], [63, 9, 1, "", "y"], [63, 9, 1, "", "z"]], "geometry_msgs.msg.Wrench": [[63, 9, 1, "", "force"], [63, 9, 1, "", "torque"]], "geometry_msgs.msg.WrenchStamped": [[63, 9, 1, "", "header"], [63, 9, 1, "", "wrench"]], "lqrrt": [[68, 8, 1, "", "Constraints"], [68, 8, 1, "", "Planner"], [68, 8, 1, "", "Tree"]], "lqrrt.Constraints": [[68, 10, 1, "", "set_buffers"], [68, 10, 1, "", "set_feasibility_function"]], "lqrrt.Planner": [[68, 10, 1, "", "kill_update"], [68, 10, 1, "", "set_goal"], [68, 10, 1, "", "set_resolution"], [68, 10, 1, "", "set_runtime"], [68, 10, 1, "", "set_system"], [68, 10, 1, "", "unkill"], [68, 10, 1, "", "update_plan"], [68, 10, 1, "", "visualize"]], "lqrrt.Tree": [[68, 10, 1, "", "add_node"], [68, 10, 1, "", "climb"], [68, 10, 1, "", "trajectory"], [68, 10, 1, "", "visualize"]], "mil_missions_core": [[64, 8, 1, "", "BaseMission"], [64, 12, 1, "", "MakeChainWithTimeout"], [64, 12, 1, "", "MakeWait"], [64, 8, 1, "", "MissionClient"], [64, 8, 1, "", "MissionException"], [64, 8, 1, "", "ParametersException"], [64, 8, 1, "", "SubmissionException"], [64, 8, 1, "", "TimeoutException"]], "mil_missions_core.BaseMission": [[64, 10, 1, "", "decode_parameters"], [64, 10, 1, "", "get_mission"], [64, 10, 1, "", "has_mission"], [64, 10, 1, "", "name"], [64, 10, 1, "", "run"], [64, 10, 1, "", "run_submission"], [64, 10, 1, "", "send_feedback"], [64, 10, 1, "", "send_feedback_child"], [64, 10, 1, "", "setup"], [64, 10, 1, "", "setup_base"], [64, 10, 1, "", "shutdown"], [64, 10, 1, "", "shutdown_base"]], "mil_missions_core.MissionClient": [[64, 10, 1, "", "available_missions"], [64, 10, 1, "", "cancel_mission"], [64, 10, 1, "", "run_mission"]], "mil_missions_core.MissionException": [[64, 9, 1, "", "message"], [64, 9, 1, "", "parameters"]], "mil_missions_core.ParametersException": [[64, 9, 1, "", "msg"]], "mil_missions_core.SubmissionException": [[64, 9, 1, "", "exception"], [64, 9, 1, "", "mission"]], "mil_missions_core.TimeoutException": [[64, 9, 1, "", "timeout"]], "mil_msgs.msg": [[63, 8, 1, "", "ObjectInImage"], [63, 8, 1, "", "Point2D"], [63, 8, 1, "", "PoseTwist"]], "mil_msgs.msg.ObjectInImage": [[63, 9, 1, "", "attributes"], [63, 9, 1, "", "confidence"], [63, 9, 1, "", "name"], [63, 9, 1, "", "points"]], "mil_msgs.msg.Point2D": [[63, 9, 1, "", "x"], [63, 9, 1, "", "y"]], "mil_msgs.msg.PoseTwist": [[63, 9, 1, "", "acceleration"], [63, 9, 1, "", "pose"], [63, 9, 1, "", "twist"]], "mil_passive_sonar": [[67, 8, 1, "", "TxHydrophonesClient"]], "mil_passive_sonar.TxHydrophonesClient": [[67, 9, 1, "", "dir_callback"], [67, 10, 1, "", "disable"], [67, 10, 1, "", "enable"], [67, 10, 1, "", "get_direction"], [67, 10, 1, "", "get_last_position"], [67, 10, 1, "", "get_position"], [67, 10, 1, "", "heading_cb"], [67, 10, 1, "", "reset"], [67, 10, 1, "", "set_callback"]], "mil_passive_sonar.algorithms": [[67, 12, 1, "", "bandpass"], [67, 12, 1, "", "bin_to_freq"], [67, 12, 1, "", "calculate_error"], [67, 12, 1, "", "compute_deltas"], [67, 12, 1, "", "compute_freq"], [67, 12, 1, "", "compute_pos_4hyd"], [67, 12, 1, "", "find_minimum"], [67, 12, 1, "", "freq_to_bin"], [67, 12, 1, "", "make_template"], [67, 12, 1, "", "match_template"], [67, 12, 1, "", "normalize"], [67, 12, 1, "", "preprocess"], [67, 12, 1, "", "run"], [67, 12, 1, "", "zero_mean"]], "mil_passive_sonar.msg": [[63, 8, 1, "", "HydrophoneSamples"], [63, 8, 1, "", "HydrophoneSamplesStamped"], [63, 8, 1, "", "Ping"], [63, 8, 1, "", "ProcessedPing"], [63, 8, 1, "", "Triggered"]], "mil_passive_sonar.msg.HydrophoneSamples": [[63, 9, 1, "", "channels"], [63, 9, 1, "", "data"], [63, 9, 1, "", "sample_rate"], [63, 9, 1, "", "samples"]], "mil_passive_sonar.msg.HydrophoneSamplesStamped": [[63, 9, 1, "", "header"], [63, 9, 1, "", "hydrophone_samples"]], "mil_passive_sonar.msg.Ping": [[63, 9, 1, "", "channels"], [63, 9, 1, "", "data"], [63, 9, 1, "", "header"], [63, 9, 1, "", "sample_rate"], [63, 9, 1, "", "samples"]], "mil_passive_sonar.msg.ProcessedPing": [[63, 9, 1, "", "amplitude"], [63, 9, 1, "", "freq"], [63, 9, 1, "", "header"], [63, 9, 1, "", "position"], [63, 9, 1, "", "valid"]], "mil_passive_sonar.msg.Triggered": [[63, 9, 1, "", "header"], [63, 9, 1, "", "hydrophone_samples"], [63, 9, 1, "", "trigger_time"]], "mil_passive_sonar.scripts.ping_locator": [[67, 8, 1, "", "PingLocator"]], "mil_passive_sonar.scripts.ping_locator.PingLocator": [[67, 10, 1, "", "enable"], [67, 10, 1, "", "ping_cb"]], "mil_passive_sonar.scripts.triggering": [[67, 8, 1, "", "HydrophoneTrigger"]], "mil_passive_sonar.scripts.triggering.HydrophoneTrigger": [[67, 10, 1, "", "enable"], [67, 10, 1, "", "filter_response"], [67, 9, 1, "", "general_lower"], [67, 9, 1, "", "general_upper"], [67, 10, 1, "", "hydrophones_cb"], [67, 9, 1, "", "pub"], [67, 10, 1, "", "reset"], [67, 9, 1, "", "sub"], [67, 9, 1, "", "time"], [67, 9, 1, "", "trigger_debug"], [67, 9, 1, "", "window_time"]], "mil_passive_sonar.streamed_bandpass": [[67, 8, 1, "", "StreamedBandpass"]], "mil_passive_sonar.streamed_bandpass.StreamedBandpass": [[67, 10, 1, "", "convolve"], [67, 9, 1, "", "h"], [67, 10, 1, "", "is_ready_to_make_filter"], [67, 9, 1, "", "lower"], [67, 10, 1, "", "make_filter"], [67, 9, 1, "", "order"], [67, 9, 1, "", "rate"], [67, 9, 1, "", "trans_width"], [67, 9, 1, "", "upper"]], "mil_pneumatic_actuator": [[70, 8, 1, "", "Constants"], [70, 8, 1, "", "PnuematicActuatorDriver"], [70, 8, 1, "", "PnuematicActuatorDriverChecksumError"], [70, 8, 1, "", "PnuematicActuatorDriverError"], [70, 8, 1, "", "PnuematicActuatorDriverResponseError"], [70, 8, 1, "", "PnuematicActuatorTimeoutError"], [70, 8, 1, "", "SimulatedPnuematicActuatorBoard"]], "mil_pneumatic_actuator.Constants": [[70, 9, 1, "", "CHECKSUM_CODE"], [70, 9, 1, "", "CLOSE_REQUEST_BASE"], [70, 9, 1, "", "CLOSE_RESPONSE"], [70, 9, 1, "", "OPEN_REQUEST_BASE"], [70, 9, 1, "", "OPEN_RESPONSE"], [70, 9, 1, "", "PING_REQUEST"], [70, 9, 1, "", "PING_RESPONSE"], [70, 9, 1, "", "READ_REQUEST_BASE"], [70, 10, 1, "", "create_checksum"], [70, 10, 1, "", "deserialize_packet"], [70, 10, 1, "", "serialize_packet"], [70, 10, 1, "", "verify_checksum"]], "mil_pneumatic_actuator.PnuematicActuatorDriver": [[70, 10, 1, "", "close_port"], [70, 10, 1, "", "get_port"], [70, 10, 1, "", "open_port"], [70, 10, 1, "", "ping"], [70, 10, 1, "", "set_port"]], "mil_pneumatic_actuator.SimulatedPnuematicActuatorBoard": [[70, 10, 1, "", "write"]], "mil_poi": [[71, 8, 1, "", "POIServer"], [71, 8, 1, "", "TxPOIClient"]], "mil_poi.POIServer": [[71, 10, 1, "", "add_poi_cb"], [71, 10, 1, "", "delete_poi_cb"], [71, 9, 1, "", "marker_scale"], [71, 10, 1, "", "move_poi_cb"], [71, 10, 1, "", "process_feedback"], [71, 10, 1, "", "transform_position"], [71, 10, 1, "", "update"]], "mil_poi.TxPOIClient": [[71, 10, 1, "", "get"], [71, 10, 1, "", "setup"], [71, 10, 1, "", "shutdown"]], "mil_poi.srv": [[77, 8, 1, "", "AddPOIRequest"], [77, 8, 1, "", "AddPOIResponse"], [77, 8, 1, "", "DeletePOIRequest"], [77, 8, 1, "", "DeletePOIResponse"], [77, 8, 1, "", "MovePOIRequest"], [77, 8, 1, "", "MovePOIResponse"]], "mil_poi.srv.AddPOIRequest": [[77, 9, 1, "", "name"], [77, 9, 1, "", "position"]], "mil_poi.srv.AddPOIResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "mil_poi.srv.DeletePOIRequest": [[77, 9, 1, "", "name"]], "mil_poi.srv.DeletePOIResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "mil_poi.srv.MovePOIRequest": [[77, 9, 1, "", "name"], [77, 9, 1, "", "position"]], "mil_poi.srv.MovePOIResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "mil_ros_tools": [[59, 8, 1, "", "BagCrawler"]], "mil_ros_tools.BagCrawler": [[59, 9, 1, "", "bag"], [59, 9, 1, "", "bag_path"], [59, 10, 1, "", "convert"], [59, 10, 1, "", "crawl"], [59, 13, 1, "", "image_info_topics"], [59, 13, 1, "", "image_topics"]], "mil_ros_tools.vector_to_marker": [[74, 8, 1, "", "VectorToMarker"]], "mil_ros_tools.vector_to_marker.VectorToMarker": [[74, 9, 1, "", "length"], [74, 9, 1, "", "pub"]], "mil_tools": [[58, 8, 1, "", "ArgumentParserException"], [59, 8, 1, "", "CvDebug"], [61, 8, 1, "", "FprintFactory"], [59, 8, 1, "", "Image_Publisher"], [59, 8, 1, "", "Image_Subscriber"], [76, 8, 1, "", "NoopSerial"], [59, 8, 1, "", "Plotter"], [76, 8, 1, "", "SimulatedSerial"], [59, 8, 1, "", "StereoImageSubscriber"], [62, 12, 1, "", "compose_transformation"], [62, 12, 1, "", "deskew"], [61, 12, 1, "", "download"], [61, 12, 1, "", "download_and_unzip"], [74, 12, 1, "", "draw_ray_3d"], [74, 12, 1, "", "draw_sphere"], [62, 12, 1, "", "euler_to_quat"], [61, 12, 1, "", "get_ch"], [76, 12, 1, "", "hexify"], [66, 12, 1, "", "make_header"], [66, 12, 1, "", "make_pose_stamped"], [74, 12, 1, "", "make_ray"], [62, 12, 1, "", "make_rotation"], [66, 12, 1, "", "make_wrench_stamped"], [62, 12, 1, "", "normalize"], [66, 12, 1, "", "numpy_matrix_to_quaternion"], [66, 12, 1, "", "numpy_pair_to_pose"], [66, 12, 1, "", "numpy_quat_pair_to_pose"], [66, 12, 1, "", "numpy_to_colorRGBA"], [66, 12, 1, "", "numpy_to_point"], [66, 12, 1, "", "numpy_to_point2d"], [66, 12, 1, "", "numpy_to_pointcloud2"], [66, 12, 1, "", "numpy_to_points"], [66, 12, 1, "", "numpy_to_polygon"], [66, 12, 1, "", "numpy_to_pose2D"], [66, 12, 1, "", "numpy_to_quaternion"], [66, 12, 1, "", "numpy_to_twist"], [66, 12, 1, "", "numpy_to_vector3"], [66, 12, 1, "", "numpy_to_wrench"], [66, 12, 1, "", "odometry_to_numpy"], [66, 12, 1, "", "pose_to_numpy"], [66, 12, 1, "", "posetwist_to_numpy"], [62, 12, 1, "", "quat_to_rotvec"], [62, 12, 1, "", "rotate_vect_by_quat"], [62, 12, 1, "", "skew_symmetric_cross"], [61, 12, 1, "", "slugify"], [73, 12, 1, "", "thread_lock"], [66, 12, 1, "", "twist_to_numpy"], [73, 12, 1, "", "wait_for_param"], [73, 12, 1, "", "wait_for_service"], [73, 12, 1, "", "wait_for_subscriber"], [66, 12, 1, "", "wrench_to_numpy"]], "mil_tools.ArgumentParserException": [[58, 9, 1, "", "message"]], "mil_tools.CvDebug": [[59, 10, 1, "", "add_image"], [59, 9, 1, "", "height"], [59, 9, 1, "", "hor_num"], [59, 9, 1, "", "max_height"], [59, 9, 1, "", "max_width"], [59, 9, 1, "", "nh"], [59, 9, 1, "", "total"], [59, 9, 1, "", "wait"], [59, 9, 1, "", "width"], [59, 9, 1, "", "win_name"]], "mil_tools.FprintFactory": [[61, 10, 1, "", "fprint"]], "mil_tools.Image_Publisher": [[59, 9, 1, "", "bridge"], [59, 9, 1, "", "encoding"], [59, 9, 1, "", "im_pub"], [59, 10, 1, "", "publish"]], "mil_tools.Image_Subscriber": [[59, 9, 1, "", "bridge"], [59, 9, 1, "", "callback"], [59, 9, 1, "", "camera_info"], [59, 10, 1, "", "convert"], [59, 9, 1, "", "encoding"], [59, 9, 1, "", "im_sub"], [59, 10, 1, "", "info_cb"], [59, 9, 1, "", "info_sub"], [59, 9, 1, "", "last_image_header"], [59, 9, 1, "", "last_image_time"], [59, 10, 1, "", "wait_for_camera_info"], [59, 10, 1, "", "wait_for_camera_model"]], "mil_tools.Plotter": [[59, 10, 1, "", "enable_disable"], [59, 10, 1, "", "is_go"], [59, 9, 1, "", "pub"], [59, 10, 1, "", "publish_plots"], [59, 9, 1, "", "thread"]], "mil_tools.SimulatedSerial": [[76, 9, 1, "", "buffer"], [76, 13, 1, "", "in_waiting"], [76, 10, 1, "", "read"], [76, 10, 1, "", "reset_input_buffer"]], "mil_tools.StereoImageSubscriber": [[59, 9, 1, "", "bridge"], [59, 9, 1, "", "callback"], [59, 9, 1, "", "camera_info_left"], [59, 9, 1, "", "camera_info_right"], [59, 9, 1, "", "encoding"], [59, 9, 1, "", "last_image_left"], [59, 9, 1, "", "last_image_left_time"], [59, 9, 1, "", "last_image_right"], [59, 9, 1, "", "last_image_right_time"], [59, 10, 1, "", "wait_for_camera_info"]], "mil_usb_to_can": [[57, 11, 0, "-", "sub8"], [57, 11, 0, "-", "sub9"]], "mil_usb_to_can.sub8": [[57, 8, 1, "", "ApplicationPacket"], [57, 8, 1, "", "ApplicationPacketWrongIdentifierException"], [57, 8, 1, "", "CANDeviceHandle"], [57, 8, 1, "", "ChecksumException"], [57, 8, 1, "", "CommandPacket"], [57, 8, 1, "", "InvalidEndFlagException"], [57, 8, 1, "", "InvalidFlagException"], [57, 8, 1, "", "InvalidStartFlagException"], [57, 8, 1, "", "Packet"], [57, 8, 1, "", "PayloadTooLargeException"], [57, 8, 1, "", "ReceivePacket"], [57, 8, 1, "", "SimulatedCANDevice"], [57, 8, 1, "", "SimulatedUSBtoCAN"], [57, 8, 1, "", "USB2CANException"], [57, 8, 1, "", "USBtoCANBoard"], [57, 8, 1, "", "USBtoCANDriver"]], "mil_usb_to_can.sub8.ApplicationPacket": [[57, 10, 1, "", "from_bytes"], [57, 9, 1, "", "identifier"], [57, 9, 1, "", "payload"]], "mil_usb_to_can.sub8.ApplicationPacketWrongIdentifierException": [[57, 9, 1, "", "expected"], [57, 9, 1, "", "received"]], "mil_usb_to_can.sub8.CANDeviceHandle": [[57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_usb_to_can.sub8.CommandPacket": [[57, 9, 1, "", "EOF"], [57, 9, 1, "", "SOF"], [57, 10, 1, "", "create_request_packet"], [57, 10, 1, "", "create_send_packet"], [57, 13, 1, "", "data"], [57, 13, 1, "", "filter_id"], [57, 13, 1, "", "is_receive"], [57, 13, 1, "", "length"], [57, 13, 1, "", "length_byte"], [57, 9, 1, "", "payload"]], "mil_usb_to_can.sub8.Packet": [[57, 9, 1, "", "EOF"], [57, 9, 1, "", "SOF"], [57, 10, 1, "", "from_bytes"], [57, 9, 1, "", "payload"], [57, 10, 1, "", "read_packet"]], "mil_usb_to_can.sub8.ReceivePacket": [[57, 9, 1, "", "EOF"], [57, 9, 1, "", "SOF"], [57, 10, 1, "", "create_receive_packet"], [57, 13, 1, "", "data"], [57, 13, 1, "", "device"], [57, 10, 1, "", "from_bytes"], [57, 13, 1, "", "length"], [57, 9, 1, "", "payload"]], "mil_usb_to_can.sub8.SimulatedCANDevice": [[57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_usb_to_can.sub8.SimulatedUSBtoCAN": [[57, 10, 1, "", "send_to_bus"], [57, 10, 1, "", "write"]], "mil_usb_to_can.sub8.USBtoCANBoard": [[57, 9, 1, "", "lock"], [57, 10, 1, "", "read_packet"], [57, 10, 1, "", "send_data"], [57, 9, 1, "", "ser"]], "mil_usb_to_can.sub8.USBtoCANDriver": [[57, 9, 1, "", "board"], [57, 9, 1, "", "handles"], [57, 10, 1, "", "parse_module_dictionary"], [57, 10, 1, "", "process_in_buffer"], [57, 10, 1, "", "read_packet"], [57, 10, 1, "", "send_data"], [57, 9, 1, "", "timer"]], "mil_usb_to_can.sub9": [[57, 8, 1, "", "AckPacket"], [57, 8, 1, "", "CANDeviceHandle"], [57, 8, 1, "", "NackPacket"], [57, 8, 1, "", "Packet"], [57, 8, 1, "", "SimulatedCANDeviceHandle"]], "mil_usb_to_can.sub9.CANDeviceHandle": [[57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_usb_to_can.sub9.Packet": [[57, 10, 1, "", "from_bytes"]], "mil_usb_to_can.sub9.SimulatedCANDeviceHandle": [[57, 9, 1, "", "inbound_packets"], [57, 10, 1, "", "on_data"], [57, 10, 1, "", "send_data"]], "mil_vision_tools": [[78, 8, 1, "", "ContourClassifier"], [78, 8, 1, "", "ImageMux"], [78, 8, 1, "", "ImageProc"], [78, 8, 1, "", "ImageSet"], [78, 8, 1, "", "ObjectsTracker"], [78, 8, 1, "", "RectFinder"], [78, 8, 1, "", "Threshold"], [78, 8, 1, "", "TrackedObject"], [78, 8, 1, "", "VisionNode"], [78, 12, 1, "", "auto_canny"], [78, 12, 1, "", "contour_centroid"], [78, 12, 1, "", "contour_mask"], [78, 12, 1, "", "create_object_msg"], [78, 12, 1, "", "points_in_image"], [78, 12, 1, "", "putText_ul"], [78, 12, 1, "", "quaternion_from_rvec"], [78, 12, 1, "", "rect_from_roi"], [78, 12, 1, "", "roi_enclosing_points"]], "mil_vision_tools.ContourClassifier": [[78, 13, 1, "", "FEATURES"], [78, 10, 1, "", "class_to_string"], [78, 9, 1, "", "classes"], [78, 10, 1, "", "classify"], [78, 10, 1, "", "classify_features"], [78, 10, 1, "", "extract_labels"], [78, 10, 1, "", "feature_probabilities"], [78, 10, 1, "", "get_features"], [78, 9, 1, "", "image_dir"], [78, 9, 1, "", "labelfile"], [78, 10, 1, "", "main"], [78, 10, 1, "", "probabilities"], [78, 10, 1, "", "read_from_csv"], [78, 10, 1, "", "save_csv"], [78, 10, 1, "", "score"], [78, 10, 1, "", "string_to_class"], [78, 10, 1, "", "train"], [78, 10, 1, "", "train_from_csv"], [78, 9, 1, "", "training_file"]], "mil_vision_tools.ImageMux": [[78, 9, 1, "", "border_color"], [78, 9, 1, "", "border_thickness"], [78, 10, 1, "", "get_image"], [78, 13, 1, "", "image"], [78, 9, 1, "", "keep_ratio"], [78, 9, 1, "", "labels"], [78, 9, 1, "", "pane_size"], [78, 10, 1, "", "set_image"], [78, 9, 1, "", "shape"], [78, 9, 1, "", "size"], [78, 9, 1, "", "text_color"], [78, 9, 1, "", "text_font"], [78, 9, 1, "", "text_scale"], [78, 9, 1, "", "text_thickness"]], "mil_vision_tools.ImageProc": [[78, 9, 1, "", "ALL"], [78, 9, 1, "", "COLOR"], [78, 9, 1, "", "MONO"], [78, 9, 1, "", "RAW"], [78, 9, 1, "", "RECT"], [78, 9, 1, "", "RECT_COLOR"], [78, 9, 1, "", "bridge"], [78, 10, 1, "", "process"]], "mil_vision_tools.ImageSet": [[78, 9, 1, "", "color"], [78, 9, 1, "", "color_encoding"], [78, 9, 1, "", "mono"], [78, 9, 1, "", "raw"], [78, 9, 1, "", "rect"], [78, 9, 1, "", "rect_color"]], "mil_vision_tools.ObjectsTracker": [[78, 10, 1, "", "add_observation"], [78, 10, 1, "", "clear_expired"], [78, 9, 1, "", "expiration_seconds"], [78, 10, 1, "", "get_persistent_objects"], [78, 9, 1, "", "max_distance"], [78, 9, 1, "", "max_id"], [78, 9, 1, "", "objects"]], "mil_vision_tools.RectFinder": [[78, 10, 1, "", "draw_model"], [78, 10, 1, "", "from_polygon"], [78, 10, 1, "", "get_corners"], [78, 10, 1, "", "get_pose_2D"], [78, 10, 1, "", "get_pose_3D"], [78, 9, 1, "", "length"], [78, 9, 1, "", "model_3D"], [78, 10, 1, "", "sort_corners"], [78, 10, 1, "", "to_polygon"], [78, 10, 1, "", "verify_contour"], [78, 9, 1, "", "width"]], "mil_vision_tools.Threshold": [[78, 9, 1, "", "conversion_code"], [78, 10, 1, "", "create_trackbars"], [78, 10, 1, "", "from_dict"], [78, 10, 1, "", "from_param"], [78, 9, 1, "", "high"], [78, 9, 1, "", "in_space"], [78, 9, 1, "", "low"], [78, 9, 1, "", "thresh_space"]], "mil_vision_tools.TrackedObject": [[78, 13, 1, "", "age"], [78, 9, 1, "", "created_at"], [78, 9, 1, "", "features"], [78, 9, 1, "", "id"], [78, 9, 1, "", "observations"], [78, 9, 1, "", "stamp"], [78, 10, 1, "", "update"]], "mil_vision_tools.VisionNode": [[78, 9, 1, "", "camera_model"], [78, 10, 1, "", "find_objects"]], "nav_msgs.msg": [[63, 8, 1, "", "Odometry"]], "nav_msgs.msg.Odometry": [[63, 9, 1, "", "child_frame_id"], [63, 9, 1, "", "header"], [63, 9, 1, "", "pose"], [63, 9, 1, "", "twist"]], "navigator_msgs.msg": [[63, 8, 1, "", "Acceleration"], [63, 8, 1, "", "DockShape"], [63, 8, 1, "", "DockShapes"], [63, 8, 1, "", "Host"], [63, 8, 1, "", "Hosts"], [63, 8, 1, "", "KillStatus"], [63, 8, 1, "", "PerceptionObject"], [63, 8, 1, "", "PerceptionObjectArray"], [63, 8, 1, "", "ScanTheCode"], [49, 8, 1, "", "ShooterDoAction"], [49, 8, 1, "", "ShooterDoActionFeedback"], [49, 8, 1, "", "ShooterDoActionGoal"], [49, 8, 1, "", "ShooterDoActionResult"], [49, 8, 1, "", "ShooterDoFeedback"], [49, 8, 1, "", "ShooterDoGoal"], [49, 8, 1, "", "ShooterDoResult"]], "navigator_msgs.msg.Acceleration": [[63, 9, 1, "", "angular"], [63, 9, 1, "", "linear"]], "navigator_msgs.msg.DockShape": [[63, 9, 1, "", "BLUE"], [63, 9, 1, "", "CIRCLE"], [63, 9, 1, "", "CROSS"], [63, 9, 1, "", "CenterX"], [63, 9, 1, "", "CenterY"], [63, 9, 1, "", "Color"], [63, 9, 1, "", "GREEN"], [63, 9, 1, "", "RED"], [63, 9, 1, "", "Shape"], [63, 9, 1, "", "TRIANGLE"], [63, 9, 1, "", "color_confidence"], [63, 9, 1, "", "header"], [63, 9, 1, "", "points"], [63, 9, 1, "", "shape_confidence"]], "navigator_msgs.msg.DockShapes": [[63, 9, 1, "", "list"]], "navigator_msgs.msg.Host": [[63, 9, 1, "", "hostname"], [63, 9, 1, "", "ip"], [63, 9, 1, "", "status"]], "navigator_msgs.msg.Hosts": [[63, 9, 1, "", "hostnames"], [63, 9, 1, "", "hosts"]], "navigator_msgs.msg.KillStatus": [[63, 9, 1, "", "computer"], [63, 9, 1, "", "overall"], [63, 9, 1, "", "pa"], [63, 9, 1, "", "pf"], [63, 9, 1, "", "remote"], [63, 9, 1, "", "remote_conn"], [63, 9, 1, "", "sa"], [63, 9, 1, "", "sf"]], "navigator_msgs.msg.PerceptionObject": [[63, 9, 1, "", "ACOUSTIC_PINGER"], [63, 9, 1, "", "ALL"], [63, 9, 1, "", "BUOY"], [63, 9, 1, "", "BUOY_FIELD"], [63, 9, 1, "", "CORAL_SURVEY"], [63, 9, 1, "", "DETECT_DELIVER_PLATFORM"], [63, 9, 1, "", "EMPTY_SPACE"], [63, 9, 1, "", "FAKE_IDENTIFY_AND_DOCK"], [63, 9, 1, "", "FAKE_SCAN_THE_CODE"], [63, 9, 1, "", "FAKE_SHOOTER"], [63, 9, 1, "", "FIND_THE_BREAK"], [63, 9, 1, "", "GATE1"], [63, 9, 1, "", "GATE2"], [63, 9, 1, "", "GATE3"], [63, 9, 1, "", "IDENTIFY_AND_DOCK"], [63, 9, 1, "", "SCAN_THE_CODE"], [63, 9, 1, "", "START_GATE_BUOY"], [63, 9, 1, "", "TOTEM"], [63, 9, 1, "", "UNKNOWN"], [63, 9, 1, "", "color"], [63, 9, 1, "", "confidence"], [63, 9, 1, "", "header"], [63, 9, 1, "", "id"], [63, 9, 1, "", "intensity"], [63, 9, 1, "", "name"], [63, 9, 1, "", "normal"], [63, 9, 1, "", "pclInliers"], [63, 9, 1, "", "points"], [63, 9, 1, "", "position"], [63, 9, 1, "", "size"]], "navigator_msgs.msg.PerceptionObjectArray": [[63, 9, 1, "", "objects"]], "navigator_msgs.msg.ScanTheCode": [[63, 9, 1, "", "string_pattern"]], "navigator_msgs.msg.ShooterDoAction": [[49, 9, 1, "", "action_feedback"], [49, 9, 1, "", "action_goal"], [49, 9, 1, "", "action_result"]], "navigator_msgs.msg.ShooterDoActionFeedback": [[49, 9, 1, "", "feedback"], [49, 9, 1, "", "header"], [49, 9, 1, "", "status"]], "navigator_msgs.msg.ShooterDoActionGoal": [[49, 9, 1, "", "goal"], [49, 9, 1, "", "goal_id"], [49, 9, 1, "", "header"]], "navigator_msgs.msg.ShooterDoActionResult": [[49, 9, 1, "", "header"], [49, 9, 1, "", "result"], [49, 9, 1, "", "status"]], "navigator_msgs.msg.ShooterDoFeedback": [[49, 9, 1, "", "time_remaining"]], "navigator_msgs.msg.ShooterDoResult": [[49, 9, 1, "", "ALREADY_LOADAED"], [49, 9, 1, "", "ALREADY_RUNNING"], [49, 9, 1, "", "KILLED"], [49, 9, 1, "", "MANUAL_CONTROL_USED"], [49, 9, 1, "", "NOT_LOADED"], [49, 9, 1, "", "error"], [49, 9, 1, "", "success"]], "navigator_msgs.srv": [[77, 8, 1, "", "AcousticBeaconRequest"], [77, 8, 1, "", "AcousticBeaconResponse"], [77, 8, 1, "", "CameraDBQueryRequest"], [77, 8, 1, "", "CameraDBQueryResponse"], [77, 8, 1, "", "CameraToLidarTransformRequest"], [77, 8, 1, "", "CameraToLidarTransformResponse"], [77, 8, 1, "", "ChooseAnimalRequest"], [77, 8, 1, "", "ChooseAnimalResponse"], [77, 8, 1, "", "ColorRequestRequest"], [77, 8, 1, "", "ColorRequestResponse"], [77, 8, 1, "", "CoordinateConversionRequest"], [77, 8, 1, "", "CoordinateConversionResponse"], [77, 8, 1, "", "FindPingerRequest"], [77, 8, 1, "", "FindPingerResponse"], [77, 8, 1, "", "GetDockBaysRequest"], [77, 8, 1, "", "GetDockBaysResponse"], [77, 8, 1, "", "GetDockShapeRequest"], [77, 8, 1, "", "GetDockShapeResponse"], [77, 8, 1, "", "GetDockShapesRequest"], [77, 8, 1, "", "GetDockShapesResponse"], [77, 8, 1, "", "KeyboardControlRequest"], [77, 8, 1, "", "KeyboardControlResponse"], [46, 8, 1, "", "MessageDetectDockRequest"], [46, 8, 1, "", "MessageDetectDockResponse"], [46, 8, 1, "", "MessageEntranceExitGateRequest"], [46, 8, 1, "", "MessageEntranceExitGateResponse"], [46, 8, 1, "", "MessageFindFlingRequest"], [46, 8, 1, "", "MessageFindFlingResponse"], [46, 8, 1, "", "MessageFollowPathRequest"], [46, 8, 1, "", "MessageFollowPathResponse"], [46, 8, 1, "", "MessageReactReportRequest"], [46, 8, 1, "", "MessageReactReportResponse"], [46, 8, 1, "", "MessageUAVReplenishmentRequest"], [46, 8, 1, "", "MessageUAVReplenishmentResponse"], [46, 8, 1, "", "MessageUAVSearchReportRequest"], [46, 8, 1, "", "MessageUAVSearchReportResponse"], [77, 8, 1, "", "MoveToWaypointRequest"], [77, 8, 1, "", "MoveToWaypointResponse"], [77, 8, 1, "", "ObjectDBQueryRequest"], [77, 8, 1, "", "ObjectDBQueryResponse"], [46, 8, 1, "", "ScanTheCodeMissionRequest"], [46, 8, 1, "", "ScanTheCodeMissionResponse"], [77, 8, 1, "", "SetFrequencyRequest"], [77, 8, 1, "", "SetFrequencyResponse"], [77, 8, 1, "", "SetROIRequest"], [77, 8, 1, "", "SetROIResponse"], [77, 8, 1, "", "ShooterManualRequest"], [77, 8, 1, "", "ShooterManualResponse"], [77, 8, 1, "", "StartGateRequest"], [77, 8, 1, "", "StartGateResponse"], [77, 8, 1, "", "StereoShapeDetectorRequest"], [77, 8, 1, "", "StereoShapeDetectorResponse"], [77, 8, 1, "", "VisionRequestRequest"], [77, 8, 1, "", "VisionRequestResponse"]], "navigator_msgs.srv.AcousticBeaconResponse": [[77, 9, 1, "", "beacon_position"], [77, 9, 1, "", "setValue"]], "navigator_msgs.srv.CameraDBQueryRequest": [[77, 9, 1, "", "id"], [77, 9, 1, "", "name"]], "navigator_msgs.srv.CameraDBQueryResponse": [[77, 9, 1, "", "found"]], "navigator_msgs.srv.CameraToLidarTransformRequest": [[77, 9, 1, "", "header"], [77, 9, 1, "", "point"], [77, 9, 1, "", "tolerance"]], "navigator_msgs.srv.CameraToLidarTransformResponse": [[77, 9, 1, "", "CLOUD_NOT_FOUND"], [77, 9, 1, "", "NO_POINTS"], [77, 9, 1, "", "closest"], [77, 9, 1, "", "distance"], [77, 9, 1, "", "error"], [77, 9, 1, "", "normal"], [77, 9, 1, "", "success"], [77, 9, 1, "", "transformed"]], "navigator_msgs.srv.ChooseAnimalRequest": [[77, 9, 1, "", "circle_direction"], [77, 9, 1, "", "target_animal"]], "navigator_msgs.srv.ChooseAnimalResponse": [[77, 9, 1, "", "movement_complete"]], "navigator_msgs.srv.ColorRequestRequest": [[77, 9, 1, "", "color"]], "navigator_msgs.srv.ColorRequestResponse": [[77, 9, 1, "", "found"], [77, 9, 1, "", "ids"]], "navigator_msgs.srv.CoordinateConversionRequest": [[77, 9, 1, "", "ECEF"], [77, 9, 1, "", "ENU"], [77, 9, 1, "", "LLA"], [77, 9, 1, "", "frame"], [77, 9, 1, "", "points"], [77, 9, 1, "", "to_frame"]], "navigator_msgs.srv.CoordinateConversionResponse": [[77, 9, 1, "", "converted"], [77, 9, 1, "", "message"]], "navigator_msgs.srv.FindPingerResponse": [[77, 9, 1, "", "num_samples"], [77, 9, 1, "", "pinger_position"]], "navigator_msgs.srv.GetDockBaysResponse": [[77, 9, 1, "", "bays"], [77, 9, 1, "", "error"], [77, 9, 1, "", "normal"], [77, 9, 1, "", "success"]], "navigator_msgs.srv.GetDockShapeRequest": [[77, 9, 1, "", "ANY"], [77, 9, 1, "", "BLUE"], [77, 9, 1, "", "CIRCLE"], [77, 9, 1, "", "CROSS"], [77, 9, 1, "", "Color"], [77, 9, 1, "", "GREEN"], [77, 9, 1, "", "RED"], [77, 9, 1, "", "Shape"], [77, 9, 1, "", "TRIANGLE"]], "navigator_msgs.srv.GetDockShapeResponse": [[77, 9, 1, "", "INVALID_REQUEST"], [77, 9, 1, "", "NODE_DISABLED"], [77, 9, 1, "", "SHAPE_NOT_FOUND"], [77, 9, 1, "", "TOO_SMALL_SAMPLE"], [77, 9, 1, "", "error"], [77, 9, 1, "", "found"], [77, 9, 1, "", "symbol"]], "navigator_msgs.srv.GetDockShapesRequest": [[77, 9, 1, "", "ANY"], [77, 9, 1, "", "BLUE"], [77, 9, 1, "", "CIRCLE"], [77, 9, 1, "", "CROSS"], [77, 9, 1, "", "Color"], [77, 9, 1, "", "GREEN"], [77, 9, 1, "", "RED"], [77, 9, 1, "", "Shape"], [77, 9, 1, "", "TRIANGLE"]], "navigator_msgs.srv.GetDockShapesResponse": [[77, 9, 1, "", "INVALID_REQUEST"], [77, 9, 1, "", "NODE_DISABLED"], [77, 9, 1, "", "SHAPE_NOT_FOUND"], [77, 9, 1, "", "TOO_SMALL_SAMPLE"], [77, 9, 1, "", "error"], [77, 9, 1, "", "found"], [77, 9, 1, "", "shapes"]], "navigator_msgs.srv.KeyboardControlRequest": [[77, 9, 1, "", "keycode"], [77, 9, 1, "", "uuid"]], "navigator_msgs.srv.KeyboardControlResponse": [[77, 9, 1, "", "generated_uuid"], [77, 9, 1, "", "is_locked"]], "navigator_msgs.srv.MessageDetectDockRequest": [[46, 9, 1, "", "ams_status"], [46, 9, 1, "", "color"]], "navigator_msgs.srv.MessageDetectDockResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageEntranceExitGateRequest": [[46, 9, 1, "", "entrance_gate"], [46, 9, 1, "", "exit_gate"]], "navigator_msgs.srv.MessageEntranceExitGateResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageFindFlingRequest": [[46, 9, 1, "", "ams_status"], [46, 9, 1, "", "color"]], "navigator_msgs.srv.MessageFindFlingResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageFollowPathRequest": [[46, 9, 1, "", "finished"]], "navigator_msgs.srv.MessageFollowPathResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageReactReportRequest": [[46, 9, 1, "", "animal_array"]], "navigator_msgs.srv.MessageReactReportResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageUAVReplenishmentRequest": [[46, 9, 1, "", "item_status"], [46, 9, 1, "", "uav_status"]], "navigator_msgs.srv.MessageUAVReplenishmentResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MessageUAVSearchReportRequest": [[46, 9, 1, "", "object1"], [46, 9, 1, "", "object1_e_w"], [46, 9, 1, "", "object1_latitude"], [46, 9, 1, "", "object1_longitude"], [46, 9, 1, "", "object1_n_s"], [46, 9, 1, "", "object2"], [46, 9, 1, "", "object2_e_w"], [46, 9, 1, "", "object2_latitude"], [46, 9, 1, "", "object2_longitude"], [46, 9, 1, "", "object2_n_s"], [46, 9, 1, "", "uav_status"]], "navigator_msgs.srv.MessageUAVSearchReportResponse": [[46, 9, 1, "", "message"]], "navigator_msgs.srv.MoveToWaypointRequest": [[77, 9, 1, "", "target_p"]], "navigator_msgs.srv.MoveToWaypointResponse": [[77, 9, 1, "", "success"]], "navigator_msgs.srv.ObjectDBQueryRequest": [[77, 9, 1, "", "cmd"], [77, 9, 1, "", "name"]], "navigator_msgs.srv.ObjectDBQueryResponse": [[77, 9, 1, "", "found"], [77, 9, 1, "", "objects"]], "navigator_msgs.srv.ScanTheCodeMissionRequest": [[46, 9, 1, "", "object"]], "navigator_msgs.srv.ScanTheCodeMissionResponse": [[46, 9, 1, "", "colors"], [46, 9, 1, "", "found"], [46, 9, 1, "", "observing"]], "navigator_msgs.srv.SetFrequencyRequest": [[77, 9, 1, "", "frequency"]], "navigator_msgs.srv.SetROIRequest": [[77, 9, 1, "", "roi"]], "navigator_msgs.srv.SetROIResponse": [[77, 9, 1, "", "OUTSIDE_OF_FRAME"], [77, 9, 1, "", "error"], [77, 9, 1, "", "success"]], "navigator_msgs.srv.ShooterManualRequest": [[77, 9, 1, "", "feeder"], [77, 9, 1, "", "shooter"]], "navigator_msgs.srv.ShooterManualResponse": [[77, 9, 1, "", "success"]], "navigator_msgs.srv.StartGateResponse": [[77, 9, 1, "", "success"], [77, 9, 1, "", "target"]], "navigator_msgs.srv.StereoShapeDetectorRequest": [[77, 9, 1, "", "detection_switch"], [77, 9, 1, "", "model_params"], [77, 9, 1, "", "num_points"], [77, 9, 1, "", "processing_type"], [77, 9, 1, "", "shape"]], "navigator_msgs.srv.StereoShapeDetectorResponse": [[77, 9, 1, "", "success"]], "navigator_msgs.srv.VisionRequestRequest": [[77, 9, 1, "", "target_name"]], "navigator_msgs.srv.VisionRequestResponse": [[77, 9, 1, "", "covariance_diagonal"], [77, 9, 1, "", "found"], [77, 9, 1, "", "pose"]], "navigator_path_planner.msg": [[49, 8, 1, "", "MoveAction"], [49, 8, 1, "", "MoveActionFeedback"], [49, 8, 1, "", "MoveActionGoal"], [49, 8, 1, "", "MoveActionResult"], [49, 8, 1, "", "MoveFeedback"], [49, 8, 1, "", "MoveGoal"], [49, 8, 1, "", "MoveResult"]], "navigator_path_planner.msg.MoveAction": [[49, 9, 1, "", "action_feedback"], [49, 9, 1, "", "action_goal"], [49, 9, 1, "", "action_result"]], "navigator_path_planner.msg.MoveActionFeedback": [[49, 9, 1, "", "feedback"], [49, 9, 1, "", "header"], [49, 9, 1, "", "status"]], "navigator_path_planner.msg.MoveActionGoal": [[49, 9, 1, "", "goal"], [49, 9, 1, "", "goal_id"], [49, 9, 1, "", "header"]], "navigator_path_planner.msg.MoveActionResult": [[49, 9, 1, "", "header"], [49, 9, 1, "", "result"], [49, 9, 1, "", "status"]], "navigator_path_planner.msg.MoveFeedback": [[49, 9, 1, "", "behavior"], [49, 9, 1, "", "distance"], [49, 9, 1, "", "time_till_next_branch"], [49, 9, 1, "", "tracking"], [49, 9, 1, "", "tree_size"]], "navigator_path_planner.msg.MoveGoal": [[49, 9, 1, "", "BYPASS"], [49, 9, 1, "", "DRIVE"], [49, 9, 1, "", "DRIVE_SMOOTH"], [49, 9, 1, "", "HOLD"], [49, 9, 1, "", "SKID"], [49, 9, 1, "", "SPIRAL"], [49, 9, 1, "", "blind"], [49, 9, 1, "", "focus"], [49, 9, 1, "", "goal"], [49, 9, 1, "", "initial_plan_time"], [49, 9, 1, "", "move_type"], [49, 9, 1, "", "speed_factor"]], "navigator_path_planner.msg.MoveResult": [[49, 9, 1, "", "failure_reason"]], "navigator_path_planner.nodes.path_planner": [[68, 8, 1, "", "LQRRT_Node"]], "navigator_path_planner.nodes.path_planner.LQRRT_Node": [[68, 10, 1, "", "action_check"], [68, 10, 1, "", "angle_diff"], [68, 10, 1, "", "boundary_analysis"], [68, 9, 1, "", "done"], [68, 10, 1, "", "erf"], [68, 10, 1, "", "is_feasible"], [68, 10, 1, "", "move_cb"], [68, 9, 1, "", "move_type"], [68, 10, 1, "", "odom_cb"], [68, 10, 1, "", "ogrid_cb"], [68, 10, 1, "", "pack_odom"], [68, 10, 1, "", "pack_pointstamped"], [68, 10, 1, "", "pack_pose"], [68, 10, 1, "", "pack_posestamped"], [68, 10, 1, "", "pack_wrenchstamped"], [68, 9, 1, "", "path_pub"], [68, 10, 1, "", "publish_expl"], [68, 10, 1, "", "publish_path"], [68, 10, 1, "", "publish_ref"], [68, 10, 1, "", "publish_tree"], [68, 10, 1, "", "reevaluate_plan"], [68, 9, 1, "", "ref_pub"], [68, 10, 1, "", "reset"], [68, 9, 1, "", "revisit_period"], [68, 10, 1, "", "rotation_move"], [68, 10, 1, "", "select_behavior"], [68, 10, 1, "", "select_exploration"], [68, 10, 1, "", "set_goal"], [68, 10, 1, "", "spiral_move"], [68, 10, 1, "", "tree_chain"], [68, 9, 1, "", "tree_pub"], [68, 10, 1, "", "unpack_odom"], [68, 10, 1, "", "unpack_pose"], [68, 9, 1, "", "unreachable"]], "navigator_robotx_comms": [[46, 8, 1, "", "RobotXDetectDockMessage"], [46, 8, 1, "", "RobotXEntranceExitGateMessage"], [46, 8, 1, "", "RobotXFindFlingMessage"], [46, 8, 1, "", "RobotXFollowPathMessage"], [46, 8, 1, "", "RobotXHeartbeatMessage"], [46, 8, 1, "", "RobotXReactReportMessage"], [46, 8, 1, "", "RobotXScanCodeMessage"], [46, 8, 1, "", "RobotXUAVReplenishmentMessage"], [46, 8, 1, "", "RobotXUAVSearchReportMessage"]], "navigator_robotx_comms.RobotXDetectDockMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXEntranceExitGateMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXFindFlingMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXFollowPathMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXHeartbeatMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXReactReportMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXScanCodeMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXUAVReplenishmentMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.RobotXUAVSearchReportMessage": [[46, 10, 1, "", "from_string"], [46, 9, 1, "", "message_id"], [46, 10, 1, "", "to_string"]], "navigator_robotx_comms.nodes.robotx_comms_client": [[46, 8, 1, "", "RobotXClient"], [46, 8, 1, "", "RobotXStartServices"]], "navigator_robotx_comms.nodes.robotx_comms_client.RobotXClient": [[46, 10, 1, "", "connect"], [46, 9, 1, "", "connected"], [46, 9, 1, "", "socket_connection"], [46, 9, 1, "", "tcp_port"]], "navigator_robotx_comms.nodes.robotx_comms_client.RobotXStartServices": [[46, 10, 1, "", "get_aedt_date_time"], [46, 10, 1, "", "gps_coord_callback"], [46, 10, 1, "", "gps_odom_callback"], [46, 10, 1, "", "handle_detect_dock_message"], [46, 10, 1, "", "handle_entrance_exit_gate_message"], [46, 10, 1, "", "handle_find_fling_message"], [46, 10, 1, "", "handle_follow_path_message"], [46, 10, 1, "", "handle_heartbeat_message"], [46, 10, 1, "", "handle_react_report_message"], [46, 10, 1, "", "handle_scan_code_message"], [46, 10, 1, "", "handle_uav_replenishment_message"], [46, 10, 1, "", "handle_uav_search_report_message"], [46, 10, 1, "", "kill_callback"], [46, 9, 1, "", "robotx_client"], [46, 10, 1, "", "scan_the_code_callback"], [46, 9, 1, "", "system_mode"], [46, 10, 1, "", "system_mode_callback"], [46, 10, 1, "", "uav_status_callback"], [46, 10, 1, "", "update_system_mode"], [46, 9, 1, "", "wrench"], [46, 10, 1, "", "wrench_callback"]], "nodes.clicked_point_recorder": [[74, 8, 1, "", "ClickedPointRecorder"]], "nodes.clicked_point_recorder.ClickedPointRecorder": [[74, 10, 1, "", "point_cb"], [74, 10, 1, "", "point_to_dict"], [74, 10, 1, "", "write_file"]], "nodes.navigator_battery_monitor": [[56, 8, 1, "", "BatteryMonitor"]], "nodes.navigator_battery_monitor.BatteryMonitor": [[56, 10, 1, "", "add_voltage"], [56, 10, 1, "", "hw_kill_cb"], [56, 9, 1, "", "hw_kill_raised"], [56, 9, 1, "", "pub_voltage"], [56, 10, 1, "", "publish_voltage"], [56, 9, 1, "", "supply_voltages"], [56, 9, 1, "", "voltage"]], "nodes.network_broadcaster": [[74, 8, 1, "", "NetworkBroadcaster"]], "remote_control_lib": [[72, 8, 1, "", "RemoteControl"]], "remote_control_lib.RemoteControl": [[72, 10, 1, "", "clear_kill"], [72, 10, 1, "", "clear_wrench"], [72, 10, 1, "", "deploy_thrusters"], [72, 10, 1, "", "kill"], [72, 10, 1, "", "publish_wrench"], [72, 10, 1, "", "retract_thrusters"], [72, 10, 1, "", "select_autonomous_control"], [72, 10, 1, "", "select_emergency_control"], [72, 10, 1, "", "select_keyboard_control"], [72, 10, 1, "", "select_next_control"], [72, 10, 1, "", "select_rc_control"], [72, 10, 1, "", "set_disc_speed"], [72, 10, 1, "", "shooter_cancel"], [72, 10, 1, "", "shooter_fire"], [72, 10, 1, "", "shooter_linear_extend"], [72, 10, 1, "", "shooter_linear_retract"], [72, 10, 1, "", "shooter_load"], [72, 10, 1, "", "shooter_reset"], [72, 10, 1, "", "station_hold"], [72, 10, 1, "", "toggle_kill"]], "rise_6dof": [[111, 8, 1, "", "Controller"]], "rise_6dof.Controller": [[111, 10, 1, "", "reset"], [111, 10, 1, "", "update"]], "roboteq_msgs.msg": [[63, 8, 1, "", "Feedback"], [63, 8, 1, "", "Status"]], "roboteq_msgs.msg.Feedback": [[63, 9, 1, "", "channel_temperature"], [63, 9, 1, "", "commanded_velocity"], [63, 9, 1, "", "header"], [63, 9, 1, "", "measured_position"], [63, 9, 1, "", "measured_velocity"], [63, 9, 1, "", "motor_current"], [63, 9, 1, "", "motor_power"], [63, 9, 1, "", "motor_temperature"], [63, 9, 1, "", "supply_current"], [63, 9, 1, "", "supply_voltage"]], "roboteq_msgs.msg.Status": [[63, 9, 1, "", "FAULT_EMERGENCY_STOP"], [63, 9, 1, "", "FAULT_MOSFET_FAILURE"], [63, 9, 1, "", "FAULT_OVERHEAT"], [63, 9, 1, "", "FAULT_OVERVOLTAGE"], [63, 9, 1, "", "FAULT_SEPEX_EXCITATION_FAULT"], [63, 9, 1, "", "FAULT_SHORT_CIRCUIT"], [63, 9, 1, "", "FAULT_STARTUP_CONFIG_FAULT"], [63, 9, 1, "", "FAULT_UNDERVOLTAGE"], [63, 9, 1, "", "STATUS_ANALOG_MODE"], [63, 9, 1, "", "STATUS_AT_LIMIT"], [63, 9, 1, "", "STATUS_MICROBASIC_SCRIPT_RUNNING"], [63, 9, 1, "", "STATUS_POWER_STAGE_OFF"], [63, 9, 1, "", "STATUS_PULSE_MODE"], [63, 9, 1, "", "STATUS_SERIAL_MODE"], [63, 9, 1, "", "STATUS_STALL_DETECTED"], [63, 9, 1, "", "adc_voltage"], [63, 9, 1, "", "fault"], [63, 9, 1, "", "header"], [63, 9, 1, "", "ic_temperature"], [63, 9, 1, "", "internal_voltage"], [63, 9, 1, "", "status"]], "ros_alarms": [[50, 8, 1, "", "Alarm"], [50, 8, 1, "", "AlarmBroadcaster"], [50, 8, 1, "", "AlarmListener"], [50, 8, 1, "", "HandlerBase"], [50, 8, 1, "", "HeartbeatMonitor"]], "ros_alarms.Alarm": [[50, 10, 1, "", "add_callback"], [50, 9, 1, "", "alarm_name"], [50, 10, 1, "", "as_msg"], [50, 10, 1, "", "as_srv_resp"], [50, 10, 1, "", "blank"], [50, 9, 1, "", "cleared_cbs"], [50, 10, 1, "", "from_msg"], [50, 9, 1, "", "node_name"], [50, 9, 1, "", "parameters"], [50, 9, 1, "", "problem_description"], [50, 9, 1, "", "raised"], [50, 9, 1, "", "raised_cbs"], [50, 9, 1, "", "severity"], [50, 9, 1, "", "stamp"], [50, 10, 1, "", "update"]], "ros_alarms.AlarmBroadcaster": [[50, 10, 1, "", "clear_alarm"], [50, 10, 1, "", "raise_alarm"], [50, 10, 1, "", "wait_for_server"]], "ros_alarms.AlarmListener": [[50, 10, 1, "", "add_callback"], [50, 10, 1, "", "clear_callbacks"], [50, 10, 1, "", "get_alarm"], [50, 10, 1, "", "is_cleared"], [50, 10, 1, "", "is_raised"], [50, 10, 1, "", "wait_for_server"]], "ros_alarms.HandlerBase": [[50, 10, 1, "", "cleared"], [50, 13, 1, "", "current_alarm"], [50, 10, 1, "", "get_alarm"], [50, 10, 1, "", "meta_predicate"], [50, 10, 1, "", "on_set"], [50, 10, 1, "", "raised"]], "ros_alarms.nodes.alarm_server": [[50, 8, 1, "", "AlarmServer"]], "ros_alarms.nodes.alarm_server.AlarmServer": [[50, 9, 1, "", "alarms"], [50, 9, 1, "", "handlers"], [50, 10, 1, "", "make_tagged_alarm"], [50, 9, 1, "", "meta_alarms"], [50, 10, 1, "", "set_alarm"]], "ros_alarms_msgs.msg": [[63, 8, 1, "", "Alarm"]], "ros_alarms_msgs.msg.Alarm": [[63, 9, 1, "", "alarm_name"], [63, 9, 1, "", "node_name"], [63, 9, 1, "", "parameters"], [63, 9, 1, "", "problem_description"], [63, 9, 1, "", "raised"], [63, 9, 1, "", "severity"]], "ros_alarms_msgs.srv": [[77, 8, 1, "", "AlarmGetRequest"], [77, 8, 1, "", "AlarmGetResponse"], [77, 8, 1, "", "AlarmSetRequest"], [77, 8, 1, "", "AlarmSetResponse"]], "ros_alarms_msgs.srv.AlarmGetRequest": [[77, 9, 1, "", "alarm_name"]], "ros_alarms_msgs.srv.AlarmGetResponse": [[77, 9, 1, "", "alarm"], [77, 9, 1, "", "header"]], "ros_alarms_msgs.srv.AlarmSetRequest": [[77, 9, 1, "", "alarm"]], "ros_alarms_msgs.srv.AlarmSetResponse": [[77, 9, 1, "", "succeed"]], "sabertooth2x12": [[75, 8, 1, "", "Sabertooth2x12"], [75, 8, 1, "", "SimulatedSabertooth2x12"]], "sabertooth2x12.Sabertooth2x12": [[75, 9, 1, "", "address"], [75, 10, 1, "", "make_packet"], [75, 10, 1, "", "send_packet"], [75, 10, 1, "", "set_motor1"], [75, 10, 1, "", "set_motor2"], [75, 9, 1, "", "sim"]], "sabertooth2x12.SimulatedSabertooth2x12": [[75, 10, 1, "", "write"]], "sensor_msgs.msg": [[63, 8, 1, "", "Image"], [63, 8, 1, "", "PointCloud2"], [63, 8, 1, "", "PointField"]], "sensor_msgs.msg.Image": [[63, 9, 1, "", "data"], [63, 9, 1, "", "encoding"], [63, 9, 1, "", "header"], [63, 9, 1, "", "height"], [63, 9, 1, "", "is_bigendian"], [63, 9, 1, "", "step"], [63, 9, 1, "", "width"]], "sensor_msgs.msg.PointCloud2": [[63, 9, 1, "", "data"], [63, 9, 1, "", "fields"], [63, 9, 1, "", "header"], [63, 9, 1, "", "height"], [63, 9, 1, "", "is_bigendian"], [63, 9, 1, "", "is_dense"], [63, 9, 1, "", "point_step"], [63, 9, 1, "", "row_step"], [63, 9, 1, "", "width"]], "sensor_msgs.msg.PointField": [[63, 9, 1, "", "FLOAT32"], [63, 9, 1, "", "FLOAT64"], [63, 9, 1, "", "INT16"], [63, 9, 1, "", "INT32"], [63, 9, 1, "", "INT8"], [63, 9, 1, "", "UINT16"], [63, 9, 1, "", "UINT32"], [63, 9, 1, "", "UINT8"], [63, 9, 1, "", "count"], [63, 9, 1, "", "datatype"], [63, 9, 1, "", "name"], [63, 9, 1, "", "offset"]], "std_msgs.msg": [[63, 8, 1, "", "ColorRGBA"], [63, 8, 1, "", "Header"]], "std_msgs.msg.ColorRGBA": [[63, 9, 1, "", "a"], [63, 9, 1, "", "b"], [63, 9, 1, "", "g"], [63, 9, 1, "", "r"]], "std_msgs.msg.Header": [[63, 9, 1, "", "frame_id"], [63, 9, 1, "", "seq"], [63, 9, 1, "", "time"]], "std_srvs.srv": [[77, 8, 1, "", "SetBoolRequest"], [77, 8, 1, "", "SetBoolResponse"]], "std_srvs.srv.SetBoolResponse": [[77, 9, 1, "", "message"], [77, 9, 1, "", "success"]], "sub8_thrust_and_kill_board": [[111, 8, 1, "", "HeartbeatMessage"], [111, 8, 1, "", "KillMessage"], [111, 8, 1, "", "ThrustPacket"], [111, 8, 1, "", "Thruster"], [111, 8, 1, "", "ThrusterAndKillBoard"], [111, 8, 1, "", "ThrusterAndKillBoardSimulation"]], "sub8_thrust_and_kill_board.HeartbeatMessage": [[111, 9, 1, "", "IDENTIFIER"], [111, 10, 1, "", "create"]], "sub8_thrust_and_kill_board.KillMessage": [[111, 9, 1, "", "ASSERTED"], [111, 9, 1, "", "COMMAND"], [111, 9, 1, "", "HARD"], [111, 9, 1, "", "IDENTIFIER"], [111, 9, 1, "", "RESPONSE"], [111, 9, 1, "", "SOFT"], [111, 9, 1, "", "UNASSERTED"], [111, 10, 1, "", "create_kill_message"], [111, 13, 1, "", "is_asserted"], [111, 13, 1, "", "is_command"], [111, 13, 1, "", "is_hard"], [111, 13, 1, "", "is_response"], [111, 13, 1, "", "is_soft"], [111, 13, 1, "", "is_unasserted"]], "sub8_thrust_and_kill_board.ThrustPacket": [[111, 9, 1, "", "IDENTIFIER"], [111, 13, 1, "", "command"], [111, 10, 1, "", "create_thrust_packet"], [111, 13, 1, "", "thruster_id"]], "sub8_thrust_and_kill_board.Thruster": [[111, 9, 1, "", "backward_calibration"], [111, 10, 1, "", "effort_from_thrust"], [111, 9, 1, "", "forward_calibration"], [111, 10, 1, "", "from_dict"]], "sub8_thrust_and_kill_board.ThrusterAndKillBoard": [[111, 10, 1, "", "on_command"], [111, 10, 1, "", "on_data"], [111, 10, 1, "", "on_hw_kill"], [111, 10, 1, "", "send_heartbeat"], [111, 10, 1, "", "set_mobo_kill"], [111, 10, 1, "", "update_hw_kill"]], "sub8_thrust_and_kill_board.ThrusterAndKillBoardSimulation": [[111, 9, 1, "", "hard_kill_mobo"], [111, 9, 1, "", "hard_kill_plug_pulled"], [111, 13, 1, "", "hard_killed"], [111, 13, 1, "", "heartbeat_timedout"], [111, 10, 1, "", "on_data"], [111, 10, 1, "", "send_updates"], [111, 10, 1, "", "set_hard_kill"], [111, 10, 1, "", "set_soft_kill"], [111, 9, 1, "", "soft_kill_mobo"], [111, 9, 1, "", "soft_kill_plug_pulled"], [111, 13, 1, "", "soft_killed"]], "sub9_thrust_and_kill_board": [[111, 8, 1, "", "HeartbeatReceivePacket"], [111, 8, 1, "", "HeartbeatSetPacket"], [111, 8, 1, "", "KillReceivePacket"], [111, 8, 1, "", "KillSetPacket"], [111, 8, 1, "", "KillStatus"], [111, 8, 1, "", "ThrustSetPacket"]], "sub9_thrust_and_kill_board.KillReceivePacket": [[111, 9, 1, "", "set"], [111, 9, 1, "", "status"]], "sub9_thrust_and_kill_board.KillSetPacket": [[111, 9, 1, "", "set"], [111, 9, 1, "", "status"]], "sub9_thrust_and_kill_board.KillStatus": [[111, 9, 1, "", "BATTERY_LOW"], [111, 9, 1, "", "BOARD_HEARTBEAT_LOST"], [111, 9, 1, "", "KILL_SWITCH"], [111, 9, 1, "", "MOBO_HEARTBEAT_LOST"], [111, 9, 1, "", "SOFTWARE_REQUESTED"]], "sub9_thrust_and_kill_board.ThrustSetPacket": [[111, 9, 1, "", "speed"], [111, 9, 1, "", "thruster_id"]], "sub_actuator_board": [[111, 8, 1, "", "ActuatorBoard"], [111, 8, 1, "", "ActuatorBoardSimulation"], [111, 8, 1, "", "ActuatorPollRequestPacket"], [111, 8, 1, "", "ActuatorPollResponsePacket"], [111, 8, 1, "", "ActuatorSetPacket"]], "sub_actuator_board.ActuatorBoard": [[111, 10, 1, "", "on_data"], [111, 10, 1, "", "set_valve"]], "sub_actuator_board.ActuatorBoardSimulation": [[111, 10, 1, "", "on_data"], [111, 9, 1, "", "status"]], "sub_actuator_board.ActuatorPollResponsePacket": [[111, 9, 1, "", "values"]], "sub_actuator_board.ActuatorSetPacket": [[111, 9, 1, "", "address"], [111, 9, 1, "", "open"]], "sub_actuator_board.srv": [[111, 8, 1, "", "SetValveRequest"], [111, 8, 1, "", "SetValveResponse"]], "sub_actuator_board.srv.SetValveRequest": [[111, 9, 1, "", "actuator"], [111, 9, 1, "", "opened"]], "sub_actuator_board.srv.SetValveResponse": [[111, 9, 1, "", "message"], [111, 9, 1, "", "success"]], "subjugator_gazebo_tools": [[111, 8, 1, "", "BagManager"]], "subjugator_gazebo_tools.BagManager": [[111, 10, 1, "", "dump"], [111, 10, 1, "", "make_dict"], [111, 10, 1, "", "start_caching"]], "subjugator_missions": [[111, 8, 1, "", "PoseEditor"]], "subjugator_missions.PoseEditor": [[111, 10, 1, "", "absolute"], [111, 10, 1, "", "as_Pose"], [111, 10, 1, "", "as_PoseTwist"], [111, 10, 1, "", "as_PoseTwistStamped"], [111, 10, 1, "", "backward"], [111, 10, 1, "", "body_down"], [111, 10, 1, "", "body_up"], [111, 10, 1, "", "depth"], [111, 10, 1, "", "down"], [111, 10, 1, "", "east"], [111, 10, 1, "", "forward"], [111, 10, 1, "", "from_Odometry"], [111, 10, 1, "", "from_Odometry_topic"], [111, 10, 1, "", "from_Pose"], [111, 10, 1, "", "from_PoseTwistStamped"], [111, 10, 1, "", "from_PoseTwistStamped_topic"], [111, 10, 1, "", "heading"], [111, 10, 1, "", "heading_deg"], [111, 10, 1, "", "left"], [111, 10, 1, "", "north"], [111, 10, 1, "", "relative"], [111, 10, 1, "", "relative_depth"], [111, 10, 1, "", "roll_left"], [111, 10, 1, "", "roll_left_deg"], [111, 10, 1, "", "roll_right"], [111, 10, 1, "", "roll_right_deg"], [111, 10, 1, "", "set_orientation"], [111, 10, 1, "", "set_position"], [111, 10, 1, "", "south"], [111, 10, 1, "", "turn_left"], [111, 10, 1, "", "turn_left_deg"], [111, 10, 1, "", "turn_right"], [111, 10, 1, "", "turn_right_deg"], [111, 10, 1, "", "up"], [111, 10, 1, "", "west"], [111, 10, 1, "", "yaw_left"], [111, 10, 1, "", "yaw_left_deg"], [111, 10, 1, "", "yaw_right"], [111, 10, 1, "", "yaw_right_deg"], [111, 10, 1, "", "zero_roll"]], "subjugator_msgs.msg": [[111, 8, 1, "", "Thrust"], [111, 8, 1, "", "ThrusterCmd"]], "subjugator_msgs.msg.Thrust": [[111, 9, 1, "", "thruster_commands"]], "subjugator_msgs.msg.ThrusterCmd": [[111, 9, 1, "", "name"], [111, 9, 1, "", "thrust"]], "subjugator_system_id": [[111, 8, 1, "", "SubjuGatorDynamics"]], "subjugator_system_id.SubjuGatorDynamics": [[111, 9, 1, "", "G"], [111, 9, 1, "", "air_density"], [111, 10, 1, "", "drag"], [111, 9, 1, "", "drag_coeffs"], [111, 10, 1, "", "dynamics"], [111, 10, 1, "", "from_ros_params"], [111, 10, 1, "", "gravity_and_buoyancy"], [111, 9, 1, "", "height"], [111, 10, 1, "", "inverse_dynamics"], [111, 10, 1, "", "inverse_dynamics_from_total_wrench"], [111, 9, 1, "", "mass"], [111, 10, 1, "", "newton_euler_extra_term"], [111, 9, 1, "", "volume"], [111, 9, 1, "", "water_density"]], "subjugator_vision_tools": [[111, 8, 1, "", "OccGridUtils"], [111, 8, 1, "", "Searcher"]], "subjugator_vision_tools.OccGridUtils": [[111, 10, 1, "", "add_circle"], [111, 10, 1, "", "found_marker"], [111, 10, 1, "", "publish_grid"], [111, 10, 1, "", "reset_grid"]], "subjugator_vision_tools.Searcher": [[111, 10, 1, "", "check_searched"], [111, 10, 1, "", "polygon_generator"], [111, 10, 1, "", "return_pose"]]}, "objtypes": {"0": "cpp:class", "1": "cpp:function", "2": "cpp:functionParam", "3": "cpp:templateParam", "4": "cpp:type", "5": "cpp:member", "6": "cpp:enum", "7": "cpp:enumerator", "8": "py:class", "9": "py:attribute", "10": "py:method", "11": "py:module", "12": "py:function", "13": "py:property"}, "objnames": {"0": ["cpp", "class", "C++ class"], "1": ["cpp", "function", "C++ function"], "2": ["cpp", "functionParam", "C++ function parameter"], "3": ["cpp", "templateParam", "C++ template parameter"], "4": ["cpp", "type", "C++ type"], "5": ["cpp", "member", "C++ member"], "6": ["cpp", "enum", "C++ enum"], "7": ["cpp", "enumerator", "C++ enumerator"], "8": ["py", "class", "Python class"], "9": ["py", "attribute", "Python attribute"], "10": ["py", "method", "Python method"], "11": ["py", "module", "Python module"], "12": ["py", "function", "Python function"], "13": ["py", "property", "Python property"]}, "titleterms": {"brand": 0, "logo": 0, "font": 0, "color": 0, "cultur": [1, 116], "meet": 1, "divers": 1, "equiti": 1, "inclus": 1, "deprec": [2, 85], "project": [2, 39, 41, 42, 84, 100], "design": [3, 103, 104], "odom_estim": 4, "manifold": 4, "type": [4, 69, 78, 81, 85, 94, 111], "eci": 4, "coordin": 4, "passiv": [5, 63, 67], "sonar": [5, 63, 67], "how": [5, 7, 20, 27, 48, 89], "us": [5, 7, 20, 27, 30, 71, 81, 85, 89, 90, 97, 98, 101], "launch": [5, 27, 48, 97, 113], "debug": [5, 110], "To": [5, 48], "plai": [5, 48], "back": 5, "file": [5, 24, 25, 31, 61, 71, 84, 85, 87, 89, 91, 94, 97], "step": [5, 30, 93, 97], "through": [5, 6, 100], "real": 5, "speed": [5, 19], "visual": [5, 27], "data": [5, 97, 110], "pipelin": 5, "view": [5, 79, 84, 89, 90, 91], "all": 5, "point": [5, 63, 69, 85], "trigger": [5, 63], "raw": [5, 6], "sampl": 5, "from": [5, 43, 48, 81, 107, 108], "hydrophon": [5, 108], "around": [5, 48], "time": 5, "frequenc": 5, "respons": 5, "bandpass": 5, "filter": 5, "signal": 5, "sent": 5, "ping": [5, 63], "locat": 5, "node": [5, 68, 69], "cross": 5, "correl": 5, "between": 5, "configur": [5, 34, 71, 86, 90, 97], "make": [5, 79], "custom": [5, 97], "chang": [5, 79, 84, 93, 94, 100], "runtim": 5, "test": [5, 47, 48, 93, 96, 101, 115], "ro": [5, 6, 33, 54, 73, 79, 85, 96], "bridg": 5, "doe": [5, 27], "It": 5, "work": [5, 19, 27, 100], "mil": [6, 33, 63, 116], "s": [6, 90], "pneumat": [6, 70], "board": [6, 70, 111], "commun": [6, 46, 57], "intend": 6, "oper": 6, "interfac": [6, 89], "batteri": [7, 35, 56], "charger": 7, "link": [7, 11, 17, 109], "document": [7, 13, 14, 15, 79, 87, 93], "electr": [8, 9, 43, 47, 104, 108, 115], "onboard": [9, 39], "join": [9, 39, 116], "slack": [9, 18, 91, 116], "channel": [9, 39], "github": [9, 18, 39], "complet": 9, "get": [9, 18, 39, 90, 91, 97, 101], "start": [9, 18, 39, 85, 90, 97], "tutori": 9, "glossari": 10, "machin": [11, 90], "intellig": 11, "lab": 11, "new": [11, 83, 84, 100], "member": [11, 79], "relev": 11, "softwar": [11, 18, 29, 43, 46, 47, 60, 88, 92, 103, 108, 111, 115], "refer": [11, 46, 51, 60, 85, 98, 111], "meta": 11, "autonomi": 12, "architectur": [12, 30, 45], "go": [12, 16], "kart": [12, 16], "indi": [12, 16, 17, 18], "light": [12, 16], "vehicl": 12, "electron": 13, "mechan": [14, 18, 37, 39, 43, 47, 108], "mechatron": 15, "actuat": [15, 70, 111], "animat": 15, "smart": 15, "motor": [15, 63], "sensor": [15, 21, 63], "hardwar": 16, "av": [17, 18], "collabor": [17, 18], "grabcad": [18, 39], "control": [19, 20, 72, 81, 99, 110, 111], "packag": [19, 21, 22, 23, 26, 90, 97], "discuss": [19, 21, 22, 26], "pure": 19, "pursuit": 19, "steer": [19, 27], "pid": [19, 110], "futur": [19, 81], "indyav": [20, 27], "joydriv": 20, "util": [20, 51, 61, 67, 74, 76, 78, 111], "set": [20, 47, 84, 90], "up": [20, 47, 84, 90], "an": [20, 80, 81, 90, 91], "xbox": 20, "360": 20, "run": [20, 30, 48, 89, 90, 93, 113], "local": 21, "inerti": 21, "navig": [21, 42, 45, 46, 63, 109], "gnss": 21, "gp": 21, "glonass": 21, "etc": 21, "pro": [21, 22], "con": [21, 22], "lidar": [21, 22, 44], "camera": [21, 22, 83, 89, 102], "percept": 22, "radar": 22, "path": [23, 24, 25, 49, 68], "program": 23, "player": 24, "basic": [24, 25, 97], "usag": [24, 25, 34], "exampl": [24, 25, 53, 89], "sourc": [24, 25], "record": 25, "plan": [26, 68], "gazebo": [27, 28, 89, 113], "simul": [27, 28, 44, 90, 111, 113], "rviz": [27, 48, 71, 74, 113], "client": [27, 113], "gui": [27, 97], "command": [27, 48, 57, 113], "angl": 27, "throttl": 27, "But": 27, "ani": 27, "thi": 27, "ansi": 28, "vrxperienc": 28, "middlewar": 29, "element": 29, "autonomoni": 29, "continu": 30, "integr": [30, 96], "terminolog": 30, "runner": 30, "environ": [30, 48], "job": 30, "ci": [30, 94], "updat": [30, 52, 79, 90, 93], "server": [31, 113], "mount": 31, "ubuntu": [31, 80, 90, 95], "infrastructur": 32, "network": [33, 34, 45, 63], "lan": 33, "dhcp": 33, "connect": [33, 109], "robot": [33, 35], "other": [33, 94], "box": [34, 45], "io": 34, "intern": 34, "backup": 34, "restor": 34, "wan": 34, "setup": [34, 79, 90, 101], "ship": [35, 43, 108], "pack": [35, 47, 115], "list": [35, 57, 115], "materi": [35, 114], "note": 35, "solar": 36, "park": 36, "mainten": 38, "cnc": 38, "our": 39, "familiar": 39, "technic": 39, "resourc": [40, 55, 73, 97], "drone": 41, "comment": [41, 94], "sean": 41, "founder": 41, "aerotestra": 41, "current": [42, 48, 113], "procedur": [42, 114, 115], "lesson": [42, 43, 107, 108, 112], "learn": [42, 112], "reflect": 42, "past": 42, "robotx": 43, "2022": [43, 108], "overal": [43, 108], "improv": 43, "rocket": 45, "ac": 45, "base": [45, 64, 97], "station": 45, "antenna": 45, "servic": [46, 51, 77, 111], "messagedetectdock": 46, "messageentranceexitg": 46, "messagefindfl": 46, "messagefollowpath": 46, "messagereactreport": 46, "messageuavreplenish": 46, "messageuavsearchreport": 46, "scanthecodemiss": 46, "auvsi": 46, "robotxentranceexitgatemessag": 46, "robotxdetectdockmessag": 46, "robotxfindflingmessag": 46, "robotxfollowpathmessag": 46, "robotxheartbeatmessag": 46, "robotxreactreportmessag": 46, "robotxscancodemessag": 46, "robotxuavreplenishmentmessag": 46, "robotxuavsearchreportmessag": 46, "robotxstartservic": 46, "robotxcli": 46, "checklist": [47, 115], "equip": 47, "boat": 47, "trailer": 47, "vrx": [48, 63], "verifi": [48, 93, 98], "function": [48, 51, 61, 67, 74, 76, 78, 81, 85, 94, 97, 111], "give": [48, 113], "move": [48, 113], "see": [48, 113], "odometri": [48, 63, 113], "quick": 48, "prepar": 48, "submiss": 48, "download": 48, "replai": 48, "log": [48, 101], "phase": 48, "3": [48, 90, 93, 97], "2019": [48, 107], "video": 48, "action": 49, "planner": [49, 68], "moveact": 49, "moveactionresult": 49, "moveactionfeedback": 49, "moveactiongo": 49, "movefeedback": 49, "movego": 49, "moveresult": 49, "shooter": 49, "shooterdoact": 49, "shooterdoactionresult": 49, "shooterdoactionfeedback": 49, "shooterdoactiongo": 49, "shooterdofeedback": 49, "shooterdogo": 49, "shooterdoresult": 49, "ros_alarm": 50, "state": 50, "alarm": [50, 63, 99], "system": [50, 65, 77, 90], "python": [50, 87, 93, 94, 96], "alarmserv": 50, "alarmbroadcast": 50, "alarmlisten": 50, "heartbeatmonitor": 50, "handlerbas": 50, "c": [50, 78, 85, 87], "alarmproxi": 50, "listenercb": 50, "subjug": [50, 57, 102, 105, 106, 111, 113, 115], "specif": [50, 97], "busvoltag": 50, "heightoverbottom": 50, "hwkill": 50, "kill": [50, 111, 113], "networkloss": 50, "odomkil": 50, "thrusterout": 50, "api": 51, "except": [51, 57, 58, 64, 70, 85, 94], "hierarchi": [51, 57], "nodehandl": 51, "subscrib": [51, 52, 97], "publish": [51, 52], "servicecli": 51, "asyncserverproxi": 51, "rosmasterproxi": 51, "goal": 51, "goalmanag": 51, "simpleactionserv": 51, "actioncli": 51, "transform": [51, 63], "transformbroadcast": 51, "transformlisten": 51, "error": 52, "known": 52, "issu": [52, 91], "handl": [52, 71, 77, 93], "aiohttp": 52, "clientconnectionerror": 52, "paramet": 52, "high": 52, "rate": 52, "axro": [54, 81], "independ": 54, "extens": [54, 88], "manag": [55, 73], "monitor": [56, 97], "mil_usb_to_can": 57, "usb": 57, "can": 57, "sub8": [57, 111], "8": [57, 106], "packet": 57, "format": [57, 85, 94], "usbtocan": 57, "commandpacket": 57, "receiv": 57, "receivepacket": 57, "checksum": 57, "applicationpacket": 57, "usbtocanboard": 57, "candevicehandl": 57, "usbtocandriv": 57, "simulatedcandevic": 57, "simulatedusbtocan": 57, "sub9": [57, 111], "9": 57, "simulatedcandevicehandl": 57, "nackpacket": 57, "ackpacket": 57, "imag": [59, 63], "bagcrawl": 59, "cvdebug": 59, "image_publish": 59, "image_subscrib": 59, "stereoimagesubscrib": 59, "plotter": 59, "user": [61, 89], "input": 61, "output": 61, "fprintfactori": 61, "sanit": 61, "mathemat": [62, 94], "messag": [63, 66, 77, 111], "actionlib": 63, "goalstatu": 63, "geometri": 63, "quaternion": 63, "pointstamp": 63, "vector3": 63, "pose": 63, "pose2d": 63, "posewithcovari": 63, "transformstamp": 63, "accel": 63, "twist": [63, 81], "twistwithcovari": 63, "polygon": 63, "wrench": 63, "wrenchstamp": 63, "posetwist": 63, "objectinimag": 63, "point2d": 63, "acceler": 63, "killstatu": [63, 111], "perceptionobject": 63, "perceptionobjectarrai": 63, "host": 63, "hydrophonesampl": 63, "hydrophonesamplesstamp": 63, "processedp": 63, "standard": [63, 77], "header": 63, "colorrgba": 63, "pointfield": 63, "pointcloud2": 63, "feedback": 63, "statu": [63, 84], "dockshap": 63, "scanthecod": 63, "mil_missions_cor": 64, "mission": [64, 65, 77, 111], "class": [64, 69, 85, 91, 94], "basemiss": 64, "chainwithtimeout": 64, "missioncli": 64, "makewait": 64, "mil_miss": 65, "handler": 66, "mil_passive_sonar": 67, "txhydrophonescli": 67, "streamedbandpass": 67, "hydrophonetrigg": 67, "pingloc": 67, "sylphasesonartorosnod": 67, "lqrrt": 68, "constraint": 68, "tree": 68, "pcodar": 69, "cloud": 69, "object": [69, 111], "detect": [69, 111], "alias": [69, 78], "inputcloudfilt": 69, "markermanag": 69, "associ": 69, "objectdetector": 69, "objectmap": 69, "ogridmanag": 69, "nodebas": 69, "persistentcloudfilt": 69, "pointcloudcircularbuff": 69, "mil_pneumatic_actu": 70, "pneumaticactuatordriv": 70, "constant": 70, "simulatedpnuematicactuatorboard": 70, "mil_poi": 71, "poi": [71, 77], "poiserv": 71, "txpoiclient": 71, "remote_control_lib": 72, "remot": [72, 100], "thread": 73, "vectortomark": 74, "clickedpointrecord": 74, "networkbroadcast": 74, "sabertooth2x12": 75, "sabertooth": 75, "2x12": 75, "simulatedsabertooth2x12": 75, "serial": 76, "noopseri": 76, "simulatedseri": 76, "acousticbeacon": 77, "chooseanim": 77, "colorrequest": 77, "findping": 77, "getdockbai": 77, "getdockshap": 77, "shootermanu": 77, "startgat": 77, "subsystem": 77, "alarmget": 77, "alarmset": 77, "cameradbqueri": 77, "movetowaypoint": 77, "objectdbqueri": 77, "setfrequ": 77, "setroi": 77, "stereoshapedetector": 77, "visionrequest": 77, "setbool": 77, "convers": 77, "cameratolidartransform": 77, "coordinateconvers": 77, "keyboardcontrol": 77, "addpoi": 77, "movepoi": 77, "deletepoi": 77, "comput": [78, 90, 98, 109, 111], "vision": [78, 111], "contourclassifi": 78, "threshold": 78, "imagemux": 78, "imageset": 78, "imageproc": 78, "trackedobject": 78, "objectstrack": 78, "rectfind": 78, "visionnod": 78, "cameralidartransform": 78, "closedcurv": 78, "activecontour": 78, "cameraobserv": 78, "colorobserv": 78, "unoccludedpointsimg": 78, "pointcolorstat": 78, "pcdcolor": 78, "singlecloudprocessor": 78, "pixeltyp": 78, "camerafram": 78, "imagewithcamerainfo": 78, "framehistori": 78, "rang": 78, "cameraframesequ": 78, "cameramodel": 78, "roscamerastream": 78, "pcdsubpubalgorithm": 78, "imagepublish": 78, "imagesubscrib": 78, "without": 79, "style": [79, 82, 85, 94], "contribut": [79, 84], "instal": [80, 86, 90, 97, 98], "18": 80, "04": 80, "mac": 80, "m": 80, "seri": 80, "processor": 80, "m1": 80, "introduct": [81, 89, 97], "asyncio": 81, "migrat": [81, 93], "coroutin": 81, "task": 81, "help": [81, 89, 91], "yield": [81, 94], "code": [81, 91, 93, 97], "asynchron": 81, "uvloop": 81, "bash": [82, 86], "guid": [82, 84, 85, 89, 94, 95], "In": [82, 101], "progress": 82, "preambl": 82, "calibr": [83, 109], "saniti": [84, 91], "git": [84, 90, 100], "pre": [84, 86], "commit": [84, 86], "find": 84, "gener": [84, 94], "process": [84, 108], "creat": [84, 87, 89, 97], "branch": 84, "ad": [84, 87, 89, 97, 100], "stage": 84, "push": 84, "your": [84, 91, 101], "pull": [84, 100], "request": 84, "wait": 84, "review": 84, "amend": 84, "merg": 84, "upstream": [84, 100], "where": 85, "enforc": 85, "philosophi": 85, "1": [85, 90, 97], "Be": 85, "express": [85, 94], "restrict": 85, "version": [85, 93], "name": [85, 94], "variabl": 85, "namespac": [85, 102], "line": [85, 94], "length": [85, 94], "indent": 85, "float": 85, "call": 85, "brace": 85, "condit": [85, 94], "switch": 85, "loop": [85, 114], "pointer": 85, "preprocessor": 85, "direct": 85, "structur": [85, 97], "horizont": 85, "whitespac": [85, 94], "vertic": 85, "blank": [85, 94], "featur": [85, 94], "macro": 85, "friend": 85, "const": 85, "sizeof": 85, "helper": 85, "assert": [85, 94], "print": 85, "develop": [86, 90], "tool": [86, 90, 94, 97], "vim": 86, "introduc": 86, "neovim": 86, "distribut": [86, 90], "write": [86, 96, 97], "tmux": 86, "tmuxin": 86, "zsh": 86, "syntax": 87, "restructur": 87, "text": 87, "markdown": 87, "myst": 87, "admonit": 87, "docstr": [87, 94], "vs": 87, "explicit": 87, "index": 87, "support": 88, "proprietari": 88, "udev": 88, "rule": 88, "brief": 89, "left": 89, "panel": 89, "world": 89, "tab": 89, "insert": 89, "layer": 89, "scene": 89, "The": [89, 94, 109], "upper": 89, "toolbar": 89, "bottom": 89, "right": 89, "menu": 89, "edit": 89, "window": [89, 90], "mous": 89, "model": 89, "editor": 89, "place": 89, "shape": 89, "joint": 89, "plugin": [89, 97], "creation": 89, "workflow": 89, "more": [89, 97], "info": 89, "requir": 90, "choos": 90, "method": [90, 91, 94], "option": [90, 93], "dual": 90, "boot": 90, "2": [90, 93, 97], "virtual": 90, "parallel": 90, "maco": 90, "4": [90, 97], "utm": 90, "5": [90, 97], "6": 90, "distrobox": 90, "anoth": 90, "linux": 90, "clone": [90, 100], "repositori": [90, 100], "script": [90, 93, 99], "what": [90, 116], "next": 90, "check": [91, 93], "search": 91, "doc": 91, "relat": 91, "grep": 91, "internet": 91, "ask": 91, "person": 91, "noetic": 93, "overview": [93, 112], "One": 93, "against": 93, "exist": 93, "two": 93, "import": [93, 94, 109], "six": 93, "xxx": 93, "suggest": 93, "three": 93, "four": 93, "cmake": 93, "minimum": 93, "power": [94, 105], "thing": 94, "avoid": 94, "iter": 94, "lambda": 94, "properti": 94, "implicit": 94, "true": 94, "fals": 94, "decor": 94, "separ": 94, "string": 94, "todo": 94, "getter": 94, "setter": 94, "modul": 94, "lint": 94, "password": 95, "reset": 95, "unit": 96, "rostest": 96, "why": 96, "good": 96, "practic": 96, "fuzzi": 96, "mutat": 96, "unittest": 96, "implement": 97, "rqt": 97, "benefit": 97, "inform": 97, "topic": 97, "displai": 97, "plot": 97, "theme": 97, "layout": 97, "add": 97, "xml": 97, "build": 97, "load": 97, "advanc": 97, "extern": 97, "conclus": 97, "driver": 98, "rtx": 98, "2080": 98, "nvidia": 98, "correct": 98, "gpu": 98, "being": 98, "default": 98, "mode": 98, "occup": 99, "grid": 99, "keyboard": 99, "submodul": 100, "main": 100, "access": 101, "zobelisk": 101, "uid": 101, "sshf": 101, "docker": 101, "out": 101, "enabl": 105, "ssh": 105, "robosub": [106, 107, 108, 112], "nav": 109, "tube": 109, "troubleshoot": [109, 115], "adis16400": 109, "16405": 109, "bmlz": 109, "imu": 109, "magnetomet": 109, "datasheet": 109, "tune": 110, "tip": 110, "collect": 110, "thrust": 111, "thrustercmd": 111, "setvalv": 111, "actuatorboard": 111, "actuatorboardsimul": 111, "actuatorsetpacket": 111, "actuatorpollrequestpacket": 111, "actuatorpollresponsepacket": 111, "thrusterandkillboard": 111, "killmessag": 111, "heartbeatmessag": 111, "thrustpacket": 111, "thrusterandkillboardsimul": 111, "thruster": 111, "heartbeatsetpacket": 111, "heartbeatreceivepacket": 111, "thrustsetpacket": 111, "killsetpacket": 111, "killreceivepacket": 111, "subjugatorbuoydetector": 111, "subjugatorstartgatedetector": 111, "subjugatortorpedoboarddetector": 111, "torpedoboardreprojectioncost": 111, "definit": 111, "subjugatorobjectfind": 111, "stereobas": 111, "rvizvisu": 111, "occgridutil": 111, "searcher": 111, "classif": 111, "ogridgen": 111, "bagmanag": 111, "6dof": 111, "dynam": 111, "subjugatordynam": 111, "poseeditor": 111, "competit": 112, "clear": 113, "watercool": 114, "fill": 114, "water": 114, "cool": 114, "No": 114, "pump": 114, "empti": 114, "befor": 115, "leav": 115, "At": 115, "site": 115, "welcom": 116, "sai": 116, "hello": 116, "jump": 116}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "sphinx": 56}}) \ No newline at end of file diff --git a/docs/software/adding_documentation.html b/docs/software/adding_documentation.html index 1b9a41e..579b811 100644 --- a/docs/software/adding_documentation.html +++ b/docs/software/adding_documentation.html @@ -211,7 +211,7 @@

    Viewing changes

    Contributing changes

    -

    Now that you have made and verifed your changes, follow the contributing guide +

    Now that you have made and verified your changes, follow the contributing guide to add your changes to the repository.

    diff --git a/docs/software/getting_started.html b/docs/software/getting_started.html index ff94bd1..e122bfe 100644 --- a/docs/software/getting_started.html +++ b/docs/software/getting_started.html @@ -500,7 +500,7 @@

    Viewing simulation

    Installing developer tools

    -

    After you have verified that your Git setup is working appopriately, take a look +

    After you have verified that your Git setup is working appropriately, take a look at installing some developer tools on the Developer Tools page.

    You are highly recommended to install pre-commit, but installing Zsh or diff --git a/docs/software/help.html b/docs/software/help.html index 8a988a0..eda5ed1 100644 --- a/docs/software/help.html +++ b/docs/software/help.html @@ -185,7 +185,7 @@

    Search the code with

    Search the internet

    If your problem is not MIL-specific (issue with Linux, ROS, C++, etc), -somone has most likely had the same problem and written about it on the internet. +someone has most likely had the same problem and written about it on the internet. You’ll be surprised how often you can fix your issue by Googling the error.

    diff --git a/docs/software/noetic_migration.html b/docs/software/noetic_migration.html index 3a63b1f..5cbc828 100644 --- a/docs/software/noetic_migration.html +++ b/docs/software/noetic_migration.html @@ -157,7 +157,7 @@

    Step One: Running scripts against the existing code

    Step Two: Migrating the code

    Great, the code is now pretty! :D

    -

    If you ran python-modernize, it will have suggested some changes to you, indcated +

    If you ran python-modernize, it will have suggested some changes to you, indicated by + and - signs. It may look something like this:

    RefactoringTool: Refactored old.py
     --- old.py	(original)