├── LICENSE ├── README.md ├── handwriting_urdf ├── marm_description │ ├── CMakeLists.txt │ ├── config │ │ └── marm_urdf.rviz │ ├── launch │ │ └── display_marm_urdf.launch │ ├── package.xml │ └── urdf │ │ └── marm.urdf └── mbot_description │ ├── CMakeLists.txt │ ├── config │ └── mbot_urdf.rviz │ ├── launch │ ├── display_mbot_urdf.launch │ ├── display_mbot_with_kinect_urdf.launch │ └── display_mbot_with_laser_urdf.launch │ ├── meshes │ ├── kinect.dae │ ├── kinect.jpg │ └── kinect.tga │ ├── package.xml │ └── urdf │ ├── mbot.urdf │ ├── mbot_with_kinect.urdf │ └── mbot_with_laser.urdf ├── mbot_gazebo ├── mbot_description │ ├── CMakeLists.txt │ ├── config │ │ └── mbot.rviz │ ├── launch │ │ └── display_mbot_xacro.launch │ ├── meshes │ │ ├── kinect.dae │ │ ├── kinect.jpg │ │ └── kinect.tga │ ├── package.xml │ └── urdf │ │ ├── mbot_base_gazebo.xacro │ │ ├── mbot_gazebo.xacro │ │ ├── mbot_with_camera_gazebo.xacro │ │ ├── mbot_with_kinect_gazebo.xacro │ │ ├── mbot_with_laser_gazebo.xacro │ │ └── sensors │ │ ├── camera_gazebo.xacro │ │ ├── kinect_gazebo.xacro │ │ └── lidar_gazebo.xacro ├── mbot_gazebo │ ├── CMakeLists.txt │ ├── launch │ │ ├── view_mbot_gazebo_empty_world.launch │ │ ├── view_mbot_gazebo_play_ground.launch │ │ ├── view_mbot_gazebo_room.launch │ │ ├── view_mbot_with_camera_gazebo.launch │ │ ├── view_mbot_with_kinect_gazebo.launch │ │ └── view_mbot_with_laser_gazebo.launch │ ├── package.xml │ └── worlds │ │ ├── playground.world │ │ └── room.world └── mbot_teleop │ ├── CMakeLists.txt │ ├── launch │ ├── logitech.launch │ └── mbot_teleop.launch │ ├── package.xml │ └── scripts │ └── mbot_teleop.py ├── mbot_navigation ├── mbot_description │ ├── CMakeLists.txt │ ├── config │ │ └── mbot.rviz │ ├── launch │ │ └── display_mbot_xacro.launch │ ├── meshes │ │ ├── kinect.dae │ │ ├── kinect.jpg │ │ └── kinect.tga │ ├── package.xml │ └── urdf │ │ ├── mbot_base_gazebo.xacro │ │ ├── mbot_gazebo.xacro │ │ ├── mbot_with_camera_gazebo.xacro │ │ ├── mbot_with_kinect_gazebo.xacro │ │ ├── mbot_with_laser_gazebo.xacro │ │ └── sensors │ │ ├── camera_gazebo.xacro │ │ ├── kinect_gazebo.xacro │ │ └── lidar_gazebo.xacro ├── mbot_gazebo │ ├── CMakeLists.txt │ ├── launch │ │ ├── mbot_kinect_nav_gazebo.launch │ │ ├── mbot_laser_nav_gazebo.launch │ │ ├── view_mbot_gazebo_empty_world.launch │ │ ├── view_mbot_gazebo_play_ground.launch │ │ ├── view_mbot_gazebo_room.launch │ │ ├── view_mbot_with_camera_gazebo.launch │ │ ├── view_mbot_with_kinect_gazebo.launch │ │ └── view_mbot_with_laser_gazebo.launch │ ├── package.xml │ └── worlds │ │ ├── cloister.world │ │ ├── playground.world │ │ ├── playpen.world │ │ └── room.world ├── mbot_navigation │ ├── CMakeLists.txt │ ├── config │ │ ├── lidar.lua │ │ └── mbot │ │ │ ├── base_local_planner_params.yaml │ │ │ ├── costmap_common_params.yaml │ │ │ ├── dwa_local_planner_params.yaml │ │ │ ├── global_costmap_params.yaml │ │ │ ├── local_costmap_params.yaml │ │ │ └── move_base_params.yaml │ ├── launch │ │ ├── amcl.launch │ │ ├── cartographer_demo.launch │ │ ├── exploring_slam_demo.launch │ │ ├── gmapping.launch │ │ ├── gmapping_demo.launch │ │ ├── hector.launch │ │ ├── hector_demo.launch │ │ ├── move_base.launch │ │ ├── nav_cloister_demo.launch │ │ └── rtabmap_demo.launch │ ├── maps │ │ ├── blank_map.pgm │ │ ├── blank_map.yaml │ │ ├── blank_map_with_obstacle.pgm │ │ ├── blank_map_with_obstacle.yaml │ │ ├── cloister_gmapping.pgm │ │ ├── cloister_gmapping.yaml │ │ ├── cloister_hector.pgm │ │ ├── cloister_hector.yaml │ │ ├── gmapping_map.pgm │ │ ├── gmapping_map.yaml │ │ ├── hector_map.pgm │ │ ├── hector_map.yaml │ │ ├── room.pgm │ │ ├── room.yaml │ │ ├── test_map.pgm │ │ └── test_map.yaml │ ├── package.xml │ ├── rviz │ │ ├── gmapping.rviz │ │ └── nav.rviz │ ├── scripts │ │ ├── exploring_random.py │ │ └── move_test.py │ └── src │ │ └── move_test.cpp └── mbot_teleop │ ├── CMakeLists.txt │ ├── launch │ ├── logitech.launch │ └── mbot_teleop.launch │ ├── package.xml │ └── scripts │ └── mbot_teleop.py ├── mbot_slam ├── hector_slam │ ├── README.txt │ ├── hector_compressed_map_transport │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── package.xml │ │ └── src │ │ │ └── map_to_image_node.cpp │ ├── hector_geotiff │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── hector_geotiff │ │ │ │ ├── geotiff_writer.h │ │ │ │ ├── map_writer_interface.h │ │ │ │ └── map_writer_plugin_interface.h │ │ ├── launch │ │ │ ├── geotiff_mapper.launch │ │ │ └── geotiff_mapper_only.launch │ │ ├── package.xml │ │ └── src │ │ │ ├── geotiff_node.cpp │ │ │ ├── geotiff_saver.cpp │ │ │ └── geotiff_writer │ │ │ └── geotiff_writer.cpp │ ├── hector_geotiff_plugins │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── hector_geotiff_plugins.xml │ │ ├── package.xml │ │ └── src │ │ │ └── trajectory_geotiff_plugin.cpp │ ├── hector_imu_attitude_to_tf │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── launch │ │ │ └── example.launch │ │ ├── package.xml │ │ └── src │ │ │ └── imu_attitude_to_tf_node.cpp │ ├── hector_imu_tools │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── launch │ │ │ ├── bertl_robot.launch │ │ │ └── jasmine_robot.launch │ │ ├── package.xml │ │ └── src │ │ │ └── pose_and_orientation_to_imu_node.cpp │ ├── hector_map_server │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── package.xml │ │ └── src │ │ │ └── hector_map_server.cpp │ ├── hector_map_tools │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── hector_map_tools │ │ │ │ └── HectorMapTools.h │ │ └── package.xml │ ├── hector_mapping │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── hector_slam_lib │ │ │ │ ├── map │ │ │ │ ├── GridMap.h │ │ │ │ ├── GridMapBase.h │ │ │ │ ├── GridMapCacheArray.h │ │ │ │ ├── GridMapLogOdds.h │ │ │ │ ├── GridMapReflectanceCount.h │ │ │ │ ├── GridMapSimpleCount.h │ │ │ │ ├── MapDimensionProperties.h │ │ │ │ ├── OccGridMapBase.h │ │ │ │ ├── OccGridMapUtil.h │ │ │ │ └── OccGridMapUtilConfig.h │ │ │ │ ├── matcher │ │ │ │ └── ScanMatcher.h │ │ │ │ ├── scan │ │ │ │ └── DataPointContainer.h │ │ │ │ ├── slam_main │ │ │ │ ├── HectorSlamProcessor.h │ │ │ │ ├── MapProcContainer.h │ │ │ │ ├── MapRepMultiMap.h │ │ │ │ ├── MapRepSingleMap.h │ │ │ │ └── MapRepresentationInterface.h │ │ │ │ └── util │ │ │ │ ├── DrawInterface.h │ │ │ │ ├── HectorDebugInfoInterface.h │ │ │ │ ├── MapLockerInterface.h │ │ │ │ └── UtilFunctions.h │ │ ├── launch │ │ │ └── mapping_default.launch │ │ ├── msg │ │ │ ├── HectorDebugInfo.msg │ │ │ └── HectorIterData.msg │ │ ├── package.xml │ │ └── src │ │ │ ├── HectorDebugInfoProvider.h │ │ │ ├── HectorDrawings.h │ │ │ ├── HectorMapMutex.h │ │ │ ├── HectorMappingRos.cpp │ │ │ ├── HectorMappingRos.h │ │ │ ├── PoseInfoContainer.cpp │ │ │ ├── PoseInfoContainer.h │ │ │ ├── main.cpp │ │ │ └── main_mapper.cpp │ ├── hector_marker_drawing │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── hector_marker_drawing │ │ │ │ ├── DrawInterface.h │ │ │ │ └── HectorDrawings.h │ │ └── package.xml │ ├── hector_nav_msgs │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── package.xml │ │ └── srv │ │ │ ├── GetDistanceToObstacle.srv │ │ │ ├── GetNormal.srv │ │ │ ├── GetRecoveryInfo.srv │ │ │ ├── GetRobotTrajectory.srv │ │ │ └── GetSearchPosition.srv │ ├── hector_slam │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ └── package.xml │ ├── hector_slam_launch │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── launch │ │ │ ├── cityflyer_logfile_processing.launch │ │ │ ├── hector_ugv.launch │ │ │ ├── height_mapping.launch │ │ │ ├── mapping_box.launch │ │ │ ├── mpo700_mapping.launch │ │ │ ├── postproc_data.launch │ │ │ ├── postproc_qut_logs.launch │ │ │ ├── pr2os.launch │ │ │ └── tutorial.launch │ │ ├── package.xml │ │ └── rviz_cfg │ │ │ └── mapping_demo.rviz │ └── hector_trajectory_server │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── package.xml │ │ └── src │ │ └── hector_trajectory_server.cpp ├── mbot_description │ ├── CMakeLists.txt │ ├── config │ │ └── mbot.rviz │ ├── launch │ │ └── display_mbot_xacro.launch │ ├── meshes │ │ ├── kinect.dae │ │ ├── kinect.jpg │ │ └── kinect.tga │ ├── package.xml │ └── urdf │ │ ├── mbot_base_gazebo.xacro │ │ ├── mbot_gazebo.xacro │ │ ├── mbot_with_camera_gazebo.xacro │ │ ├── mbot_with_kinect_gazebo.xacro │ │ ├── mbot_with_laser_gazebo.xacro │ │ └── sensors │ │ ├── camera_gazebo.xacro │ │ ├── kinect_gazebo.xacro │ │ └── lidar_gazebo.xacro ├── mbot_gazebo │ ├── CMakeLists.txt │ ├── launch │ │ ├── mbot_kinect_nav_gazebo.launch │ │ ├── mbot_laser_nav_gazebo.launch │ │ ├── view_mbot_gazebo_empty_world.launch │ │ ├── view_mbot_gazebo_play_ground.launch │ │ ├── view_mbot_gazebo_room.launch │ │ ├── view_mbot_with_camera_gazebo.launch │ │ ├── view_mbot_with_kinect_gazebo.launch │ │ └── view_mbot_with_laser_gazebo.launch │ ├── package.xml │ └── worlds │ │ ├── cloister.world │ │ ├── playground.world │ │ ├── playpen.world │ │ └── room.world ├── mbot_navigation │ ├── CMakeLists.txt │ ├── config │ │ └── lidar.lua │ ├── launch │ │ ├── cartographer_demo.launch │ │ ├── gmapping.launch │ │ ├── gmapping_demo.launch │ │ ├── hector.launch │ │ ├── hector_demo.launch │ │ └── rtabmap_demo.launch │ ├── maps │ │ ├── blank_map.pgm │ │ ├── blank_map.yaml │ │ ├── blank_map_with_obstacle.pgm │ │ ├── blank_map_with_obstacle.yaml │ │ ├── cloister_gmapping.pgm │ │ ├── cloister_gmapping.yaml │ │ ├── cloister_hector.pgm │ │ ├── cloister_hector.yaml │ │ ├── gmapping_map.pgm │ │ ├── gmapping_map.yaml │ │ ├── hector_map.pgm │ │ ├── hector_map.yaml │ │ ├── room.pgm │ │ ├── room.yaml │ │ ├── test_map.pgm │ │ └── test_map.yaml │ ├── package.xml │ └── rviz │ │ ├── gmapping.rviz │ │ └── nav.rviz └── mbot_teleop │ ├── CMakeLists.txt │ ├── launch │ ├── logitech.launch │ └── mbot_teleop.launch │ ├── package.xml │ └── scripts │ └── mbot_teleop.py ├── moveit_beginner ├── probot_anno_moveit_config │ ├── .setup_assistant │ ├── CMakeLists.txt │ ├── config │ │ ├── chomp_planning.yaml │ │ ├── controllers_gazebo.yaml │ │ ├── fake_controllers.yaml │ │ ├── joint_limits.yaml │ │ ├── joint_names.yaml │ │ ├── kinematics.yaml │ │ ├── ompl_planning.yaml │ │ ├── probot_anno.srdf │ │ ├── ros_controllers.yaml │ │ └── sensors_3d.yaml │ ├── launch │ │ ├── chomp_planning_pipeline.launch.xml │ │ ├── default_warehouse_db.launch │ │ ├── demo.launch │ │ ├── fake_moveit_controller_manager.launch.xml │ │ ├── joystick_control.launch │ │ ├── move_group.launch │ │ ├── moveit.rviz │ │ ├── moveit_planning_execution.launch │ │ ├── moveit_rviz.launch │ │ ├── ompl_planning_pipeline.launch.xml │ │ ├── planning_context.launch │ │ ├── planning_pipeline.launch.xml │ │ ├── probot_anno_moveit_controller_manager.launch.xml │ │ ├── probot_anno_moveit_sensor_manager.launch.xml │ │ ├── ros_controllers.launch │ │ ├── run_benchmark_ompl.launch │ │ ├── sensor_manager.launch.xml │ │ ├── setup_assistant.launch │ │ ├── trajectory_execution.launch.xml │ │ ├── warehouse.launch │ │ └── warehouse_settings.launch.xml │ └── package.xml ├── probot_demo │ ├── CMakeLists.txt │ ├── package.xml │ ├── scripts │ │ ├── moveit_attached_object_demo.py │ │ ├── moveit_cartesian_demo.py │ │ ├── moveit_fk_demo.py │ │ └── moveit_ik_demo.py │ └── src │ │ ├── moveit_cartesian_demo.cpp │ │ ├── moveit_collision_demo.cpp │ │ ├── moveit_fk_demo.cpp │ │ └── moveit_ik_demo.cpp └── probot_description │ ├── CMakeLists.txt │ ├── launch │ └── view_probot_anno.launch │ ├── meshes │ ├── base_link.STL │ ├── link_1.STL │ ├── link_2.STL │ ├── link_3.STL │ ├── link_4.STL │ ├── link_5.STL │ └── link_6.STL │ ├── package.xml │ ├── urdf.rviz │ └── urdf │ └── probot_anno.xacro ├── moveit_setup_assistant ├── c800_description │ ├── CMakeLists.txt │ ├── config │ │ └── joint_names_c800_description.yaml │ ├── export.log │ ├── launch │ │ ├── display.launch │ │ └── gazebo.launch │ ├── meshes │ │ ├── base_link.STL │ │ ├── link_1.STL │ │ ├── link_2.STL │ │ ├── link_3.STL │ │ ├── link_4.STL │ │ ├── link_5.STL │ │ └── link_6.STL │ ├── package.xml │ └── urdf │ │ ├── c800_description.csv │ │ └── c800_description.urdf ├── c800_moveit_config │ ├── .setup_assistant │ ├── CMakeLists.txt │ ├── config │ │ ├── c800_description.srdf │ │ ├── chomp_planning.yaml │ │ ├── fake_controllers.yaml │ │ ├── joint_limits.yaml │ │ ├── kinematics.yaml │ │ ├── ompl_planning.yaml │ │ ├── ros_controllers.yaml │ │ └── sensors_3d.yaml │ ├── launch │ │ ├── c800_description_moveit_controller_manager.launch.xml │ │ ├── c800_description_moveit_sensor_manager.launch.xml │ │ ├── chomp_planning_pipeline.launch.xml │ │ ├── default_warehouse_db.launch │ │ ├── demo.launch │ │ ├── demo_gazebo.launch │ │ ├── fake_moveit_controller_manager.launch.xml │ │ ├── gazebo.launch │ │ ├── joystick_control.launch │ │ ├── move_group.launch │ │ ├── moveit.rviz │ │ ├── moveit_rviz.launch │ │ ├── ompl_planning_pipeline.launch.xml │ │ ├── planning_context.launch │ │ ├── planning_pipeline.launch.xml │ │ ├── ros_controllers.launch │ │ ├── run_benchmark_ompl.launch │ │ ├── sensor_manager.launch.xml │ │ ├── setup_assistant.launch │ │ ├── trajectory_execution.launch.xml │ │ ├── warehouse.launch │ │ └── warehouse_settings.launch.xml │ └── package.xml ├── marm_description │ ├── CMakeLists.txt │ ├── config │ │ └── marm_urdf.rviz │ ├── launch │ │ └── display_marm_urdf.launch │ ├── meshes │ │ ├── kinect.dae │ │ ├── kinect.jpg │ │ └── kinect.tga │ ├── package.xml │ └── urdf │ │ └── marm.urdf └── marm_moveit_config │ ├── .setup_assistant │ ├── CMakeLists.txt │ ├── config │ ├── chomp_planning.yaml │ ├── fake_controllers.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── marm.srdf │ ├── ompl_planning.yaml │ ├── ros_controllers.yaml │ └── sensors_3d.yaml │ ├── launch │ ├── chomp_planning_pipeline.launch.xml │ ├── default_warehouse_db.launch │ ├── demo.launch │ ├── demo_gazebo.launch │ ├── fake_moveit_controller_manager.launch.xml │ ├── gazebo.launch │ ├── joystick_control.launch │ ├── marm_moveit_controller_manager.launch.xml │ ├── marm_moveit_sensor_manager.launch.xml │ ├── move_group.launch │ ├── moveit.rviz │ ├── moveit_rviz.launch │ ├── ompl_planning_pipeline.launch.xml │ ├── planning_context.launch │ ├── planning_pipeline.launch.xml │ ├── ros_controllers.launch │ ├── run_benchmark_ompl.launch │ ├── sensor_manager.launch.xml │ ├── setup_assistant.launch │ ├── trajectory_execution.launch.xml │ ├── warehouse.launch │ └── warehouse_settings.launch.xml │ └── package.xml ├── number_distinguish ├── .idea │ ├── Num_distinguish.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── image.zip ├── image │ ├── car1.jpg │ ├── car2.jpg │ ├── car3.jpg │ ├── car4.jpg │ ├── car5.jpg │ ├── car6.jpg │ └── xca.jpg ├── include │ ├── CNN_h.py │ ├── IMG_h.py │ ├── UI_h.py │ └── __pycache__ │ │ ├── CNN_h.cpython-36.pyc │ │ ├── IMG_h.cpython-36.pyc │ │ └── UI_h.cpython-36.pyc ├── src │ ├── MAIN.py │ └── test.py ├── test_data │ ├── 0.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ └── 8.jpg ├── train_data │ ├── data │ │ ├── 0.jpg │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 44.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── labels.txt │ └── readme.txt └── venv │ ├── Lib │ └── site-packages │ │ ├── easy-install.pth │ │ ├── pip-19.0.3-py3.7.egg │ │ ├── EGG-INFO │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── not-zip-safe │ │ │ └── top_level.txt │ │ └── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── download.py │ │ │ ├── exceptions.py │ │ │ ├── index.py │ │ │ ├── locations.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ └── link.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolve.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── encoding.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── logging.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── outdated.py │ │ │ │ ├── packaging.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ └── ui.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ └── subversion.py │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ │ ├── distro.py │ │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── linklockfile.py │ │ │ ├── mkdirlockfile.py │ │ │ ├── pidlockfile.py │ │ │ ├── sqlitelockfile.py │ │ │ └── symlinklockfile.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── envbuild.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ ├── helpers.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ │ ├── retrying.py │ │ │ ├── six.py │ │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── setuptools-40.8.0-py3.7.egg │ │ └── setuptools.pth │ ├── Scripts │ ├── Activate.ps1 │ ├── activate │ ├── activate.bat │ ├── deactivate.bat │ ├── easy_install-3.7-script.py │ ├── easy_install-3.7.exe │ ├── easy_install-script.py │ ├── easy_install.exe │ ├── pip-script.py │ ├── pip.exe │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── robot_vision_beginner ├── robot_vision │ ├── CMakeLists.txt │ ├── camera_calibration.yaml │ ├── config │ │ ├── ar_track_camera.rviz │ │ └── ar_track_kinect.rviz │ ├── data │ │ └── haar_detectors │ │ │ ├── haarcascade_frontalface_alt.xml │ │ │ └── haarcascade_profileface.xml │ ├── doc │ │ └── checkerboard.pdf │ ├── kinect_depth_calibration.yaml │ ├── kinect_rgb_calibration.yaml │ ├── launch │ │ ├── ar_track_camera.launch │ │ ├── ar_track_kinect.launch │ │ ├── face_detector.launch │ │ ├── freenect.launch │ │ ├── freenect_with_calibration.launch │ │ ├── motion_detector.launch │ │ ├── usb_cam.launch │ │ └── usb_cam_with_calibration.launch │ ├── package.xml │ └── scripts │ │ ├── cv_bridge_test.py │ │ ├── face_detector.py │ │ └── motion_detector.py ├── tensorflow_object_detector │ ├── CMakeLists.txt │ ├── README.md │ ├── config │ │ └── display.rviz │ ├── data │ │ ├── .gitignore │ │ ├── labels │ │ │ ├── mscoco_label_map.pbtxt │ │ │ ├── pascal_label_map.pbtxt │ │ │ └── pet_label_map.pbtxt │ │ └── models │ │ │ └── readme.md │ ├── launch │ │ ├── object_detect.launch │ │ └── usb_cam_detector.launch │ ├── package.xml │ ├── scripts │ │ └── detect_ros.py │ ├── setup.py │ └── src │ │ └── object_detection │ │ ├── .ipynb_checkpoints │ │ └── object_detection_tutorial-checkpoint.ipynb │ │ ├── BUILD │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── anchor_generators │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── grid_anchor_generator.py │ │ ├── grid_anchor_generator.pyc │ │ ├── grid_anchor_generator_test.py │ │ ├── multiple_grid_anchor_generator.py │ │ ├── multiple_grid_anchor_generator.pyc │ │ └── multiple_grid_anchor_generator_test.py │ │ ├── box_coders │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── faster_rcnn_box_coder.py │ │ ├── faster_rcnn_box_coder.pyc │ │ ├── faster_rcnn_box_coder_test.py │ │ ├── keypoint_box_coder.py │ │ ├── keypoint_box_coder_test.py │ │ ├── mean_stddev_box_coder.py │ │ ├── mean_stddev_box_coder.pyc │ │ ├── mean_stddev_box_coder_test.py │ │ ├── square_box_coder.py │ │ ├── square_box_coder.pyc │ │ └── square_box_coder_test.py │ │ ├── builders │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── anchor_generator_builder.py │ │ ├── anchor_generator_builder.pyc │ │ ├── anchor_generator_builder_test.py │ │ ├── box_coder_builder.py │ │ ├── box_coder_builder.pyc │ │ ├── box_coder_builder_test.py │ │ ├── box_predictor_builder.py │ │ ├── box_predictor_builder.pyc │ │ ├── box_predictor_builder_test.py │ │ ├── hyperparams_builder.py │ │ ├── hyperparams_builder.pyc │ │ ├── hyperparams_builder_test.py │ │ ├── image_resizer_builder.py │ │ ├── image_resizer_builder.pyc │ │ ├── image_resizer_builder_test.py │ │ ├── input_reader_builder.py │ │ ├── input_reader_builder_test.py │ │ ├── losses_builder.py │ │ ├── losses_builder.pyc │ │ ├── losses_builder_test.py │ │ ├── matcher_builder.py │ │ ├── matcher_builder.pyc │ │ ├── matcher_builder_test.py │ │ ├── model_builder.py │ │ ├── model_builder.pyc │ │ ├── model_builder_test.py │ │ ├── optimizer_builder.py │ │ ├── optimizer_builder_test.py │ │ ├── post_processing_builder.py │ │ ├── post_processing_builder.pyc │ │ ├── post_processing_builder_test.py │ │ ├── preprocessor_builder.py │ │ ├── preprocessor_builder_test.py │ │ ├── region_similarity_calculator_builder.py │ │ ├── region_similarity_calculator_builder.pyc │ │ └── region_similarity_calculator_builder_test.py │ │ ├── core │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── anchor_generator.py │ │ ├── anchor_generator.pyc │ │ ├── balanced_positive_negative_sampler.py │ │ ├── balanced_positive_negative_sampler.pyc │ │ ├── balanced_positive_negative_sampler_test.py │ │ ├── batcher.py │ │ ├── batcher_test.py │ │ ├── box_coder.py │ │ ├── box_coder.pyc │ │ ├── box_coder_test.py │ │ ├── box_list.py │ │ ├── box_list.pyc │ │ ├── box_list_ops.py │ │ ├── box_list_ops.pyc │ │ ├── box_list_ops_test.py │ │ ├── box_list_test.py │ │ ├── box_predictor.py │ │ ├── box_predictor.pyc │ │ ├── box_predictor_test.py │ │ ├── data_decoder.py │ │ ├── keypoint_ops.py │ │ ├── keypoint_ops.pyc │ │ ├── keypoint_ops_test.py │ │ ├── losses.py │ │ ├── losses.pyc │ │ ├── losses_test.py │ │ ├── matcher.py │ │ ├── matcher.pyc │ │ ├── matcher_test.py │ │ ├── minibatch_sampler.py │ │ ├── minibatch_sampler.pyc │ │ ├── minibatch_sampler_test.py │ │ ├── model.py │ │ ├── model.pyc │ │ ├── post_processing.py │ │ ├── post_processing.pyc │ │ ├── post_processing_test.py │ │ ├── prefetcher.py │ │ ├── prefetcher_test.py │ │ ├── preprocessor.py │ │ ├── preprocessor.pyc │ │ ├── preprocessor_test.py │ │ ├── region_similarity_calculator.py │ │ ├── region_similarity_calculator.pyc │ │ ├── region_similarity_calculator_test.py │ │ ├── standard_fields.py │ │ ├── standard_fields.pyc │ │ ├── target_assigner.py │ │ ├── target_assigner.pyc │ │ └── target_assigner_test.py │ │ ├── create_pascal_tf_record.py │ │ ├── create_pascal_tf_record_test.py │ │ ├── create_pet_tf_record.py │ │ ├── data │ │ ├── mscoco_label_map.pbtxt │ │ ├── pascal_label_map.pbtxt │ │ └── pet_label_map.pbtxt │ │ ├── data_decoders │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── tf_example_decoder.py │ │ └── tf_example_decoder_test.py │ │ ├── detect.py │ │ ├── eval.py │ │ ├── eval_util.py │ │ ├── evaluator.py │ │ ├── export_inference_graph.py │ │ ├── exporter.py │ │ ├── exporter_test.py │ │ ├── g3doc │ │ ├── configuring_jobs.md │ │ ├── defining_your_own_model.md │ │ ├── detection_model_zoo.md │ │ ├── exporting_models.md │ │ ├── img │ │ │ ├── dogs_detections_output.jpg │ │ │ ├── example_cat.jpg │ │ │ ├── kites_detections_output.jpg │ │ │ ├── oxford_pet.png │ │ │ ├── tensorboard.png │ │ │ └── tensorboard2.png │ │ ├── installation.md │ │ ├── preparing_inputs.md │ │ ├── running_locally.md │ │ ├── running_notebook.md │ │ ├── running_on_cloud.md │ │ ├── running_pets.md │ │ └── using_your_own_dataset.md │ │ ├── matchers │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── argmax_matcher.py │ │ ├── argmax_matcher.pyc │ │ ├── argmax_matcher_test.py │ │ ├── bipartite_matcher.py │ │ ├── bipartite_matcher.pyc │ │ └── bipartite_matcher_test.py │ │ ├── meta_architectures │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── faster_rcnn_meta_arch.py │ │ ├── faster_rcnn_meta_arch.pyc │ │ ├── faster_rcnn_meta_arch_test.py │ │ ├── faster_rcnn_meta_arch_test_lib.py │ │ ├── rfcn_meta_arch.py │ │ ├── rfcn_meta_arch.pyc │ │ ├── rfcn_meta_arch_test.py │ │ ├── ssd_meta_arch.py │ │ ├── ssd_meta_arch.pyc │ │ └── ssd_meta_arch_test.py │ │ ├── models │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── faster_rcnn_inception_resnet_v2_feature_extractor.py │ │ ├── faster_rcnn_inception_resnet_v2_feature_extractor.pyc │ │ ├── faster_rcnn_inception_resnet_v2_feature_extractor_test.py │ │ ├── faster_rcnn_resnet_v1_feature_extractor.py │ │ ├── faster_rcnn_resnet_v1_feature_extractor.pyc │ │ ├── faster_rcnn_resnet_v1_feature_extractor_test.py │ │ ├── feature_map_generators.py │ │ ├── feature_map_generators.pyc │ │ ├── feature_map_generators_test.py │ │ ├── ssd_feature_extractor_test.py │ │ ├── ssd_inception_v2_feature_extractor.py │ │ ├── ssd_inception_v2_feature_extractor.pyc │ │ ├── ssd_inception_v2_feature_extractor_test.py │ │ ├── ssd_mobilenet_v1_feature_extractor.py │ │ ├── ssd_mobilenet_v1_feature_extractor.pyc │ │ └── ssd_mobilenet_v1_feature_extractor_test.py │ │ ├── object_detection_tutorial.ipynb │ │ ├── object_detection_tutorial.py │ │ ├── protos │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── anchor_generator.proto │ │ ├── anchor_generator_pb2.py │ │ ├── anchor_generator_pb2.pyc │ │ ├── argmax_matcher.proto │ │ ├── argmax_matcher_pb2.py │ │ ├── argmax_matcher_pb2.pyc │ │ ├── bipartite_matcher.proto │ │ ├── bipartite_matcher_pb2.py │ │ ├── bipartite_matcher_pb2.pyc │ │ ├── box_coder.proto │ │ ├── box_coder_pb2.py │ │ ├── box_coder_pb2.pyc │ │ ├── box_predictor.proto │ │ ├── box_predictor_pb2.py │ │ ├── box_predictor_pb2.pyc │ │ ├── eval.proto │ │ ├── eval_pb2.py │ │ ├── faster_rcnn.proto │ │ ├── faster_rcnn_box_coder.proto │ │ ├── faster_rcnn_box_coder_pb2.py │ │ ├── faster_rcnn_box_coder_pb2.pyc │ │ ├── faster_rcnn_pb2.py │ │ ├── faster_rcnn_pb2.pyc │ │ ├── grid_anchor_generator.proto │ │ ├── grid_anchor_generator_pb2.py │ │ ├── grid_anchor_generator_pb2.pyc │ │ ├── hyperparams.proto │ │ ├── hyperparams_pb2.py │ │ ├── hyperparams_pb2.pyc │ │ ├── image_resizer.proto │ │ ├── image_resizer_pb2.py │ │ ├── image_resizer_pb2.pyc │ │ ├── input_reader.proto │ │ ├── input_reader_pb2.py │ │ ├── losses.proto │ │ ├── losses_pb2.py │ │ ├── losses_pb2.pyc │ │ ├── matcher.proto │ │ ├── matcher_pb2.py │ │ ├── matcher_pb2.pyc │ │ ├── mean_stddev_box_coder.proto │ │ ├── mean_stddev_box_coder_pb2.py │ │ ├── mean_stddev_box_coder_pb2.pyc │ │ ├── model.proto │ │ ├── model_pb2.py │ │ ├── model_pb2.pyc │ │ ├── optimizer.proto │ │ ├── optimizer_pb2.py │ │ ├── pipeline.proto │ │ ├── pipeline_pb2.py │ │ ├── post_processing.proto │ │ ├── post_processing_pb2.py │ │ ├── post_processing_pb2.pyc │ │ ├── preprocessor.proto │ │ ├── preprocessor_pb2.py │ │ ├── region_similarity_calculator.proto │ │ ├── region_similarity_calculator_pb2.py │ │ ├── region_similarity_calculator_pb2.pyc │ │ ├── square_box_coder.proto │ │ ├── square_box_coder_pb2.py │ │ ├── square_box_coder_pb2.pyc │ │ ├── ssd.proto │ │ ├── ssd_anchor_generator.proto │ │ ├── ssd_anchor_generator_pb2.py │ │ ├── ssd_anchor_generator_pb2.pyc │ │ ├── ssd_pb2.py │ │ ├── ssd_pb2.pyc │ │ ├── string_int_label_map.proto │ │ ├── string_int_label_map_pb2.py │ │ ├── string_int_label_map_pb2.pyc │ │ ├── train.proto │ │ └── train_pb2.py │ │ ├── samples │ │ ├── cloud │ │ │ └── cloud.yml │ │ └── configs │ │ │ ├── faster_rcnn_inception_resnet_v2_atrous_pets.config │ │ │ ├── faster_rcnn_resnet101_pets.config │ │ │ ├── faster_rcnn_resnet101_voc07.config │ │ │ ├── faster_rcnn_resnet152_pets.config │ │ │ ├── faster_rcnn_resnet50_pets.config │ │ │ ├── rfcn_resnet101_pets.config │ │ │ ├── ssd_inception_v2_pets.config │ │ │ └── ssd_mobilenet_v1_pets.config │ │ ├── test_images │ │ ├── image1.jpg │ │ ├── image1.png │ │ ├── image2.jpg │ │ ├── image2.png │ │ ├── image3.jpg │ │ ├── image3.png │ │ ├── image4.jpg │ │ ├── image5.jpg │ │ ├── image55.jpg │ │ ├── image6.jpg │ │ └── image_info.txt │ │ ├── testcamera.py │ │ ├── train.py │ │ ├── trainer.py │ │ ├── trainer_test.py │ │ └── utils │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── category_util.py │ │ ├── category_util_test.py │ │ ├── dataset_util.py │ │ ├── dataset_util_test.py │ │ ├── label_map_util.py │ │ ├── label_map_util.pyc │ │ ├── label_map_util_test.py │ │ ├── learning_schedules.py │ │ ├── learning_schedules_test.py │ │ ├── metrics.py │ │ ├── metrics_test.py │ │ ├── np_box_list.py │ │ ├── np_box_list_ops.py │ │ ├── np_box_list_ops_test.py │ │ ├── np_box_list_test.py │ │ ├── np_box_ops.py │ │ ├── np_box_ops_test.py │ │ ├── object_detection_evaluation.py │ │ ├── object_detection_evaluation_test.py │ │ ├── ops.py │ │ ├── ops.pyc │ │ ├── ops_test.py │ │ ├── per_image_evaluation.py │ │ ├── per_image_evaluation_test.py │ │ ├── shape_utils.py │ │ ├── shape_utils.pyc │ │ ├── shape_utils_test.py │ │ ├── static_shape.py │ │ ├── static_shape.pyc │ │ ├── static_shape_test.py │ │ ├── test_utils.py │ │ ├── test_utils_test.py │ │ ├── variables_helper.py │ │ ├── variables_helper.pyc │ │ ├── variables_helper_test.py │ │ ├── visualization_utils.py │ │ ├── visualization_utils.pyc │ │ └── visualization_utils_test.py └── vision_msgs │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── include │ └── vision_msgs │ │ └── create_aabb.h │ ├── msg │ ├── BoundingBox2D.msg │ ├── BoundingBox3D.msg │ ├── Classification2D.msg │ ├── Classification3D.msg │ ├── Detection2D.msg │ ├── Detection2DArray.msg │ ├── Detection3D.msg │ ├── Detection3DArray.msg │ ├── ObjectHypothesis.msg │ ├── ObjectHypothesisWithPose.msg │ └── VisionInfo.msg │ ├── package.xml │ └── test │ ├── CMakeLists.txt │ └── main.cpp ├── solidworks_to_urdf ├── SW_Models │ ├── C800.STEP │ ├── UR5.STEP │ └── ares.STEP ├── ares_description │ ├── CMakeLists.txt │ ├── config │ │ └── joint_names_ares_description.yaml │ ├── export.log │ ├── launch │ │ ├── display.launch │ │ └── gazebo.launch │ ├── meshes │ │ ├── base_link.STL │ │ ├── controller_link.STL │ │ ├── laser_link.STL │ │ ├── wheel_lb_link.STL │ │ ├── wheel_lf_link.STL │ │ ├── wheel_rb_link.STL │ │ └── wheel_rf_link.STL │ ├── package.xml │ └── urdf │ │ ├── ares_description.csv │ │ └── ares_description.urdf ├── c800_description │ ├── CMakeLists.txt │ ├── config │ │ └── joint_names_c800_description.yaml │ ├── export.log │ ├── launch │ │ ├── display.launch │ │ └── gazebo.launch │ ├── meshes │ │ ├── base_link.STL │ │ ├── link_1.STL │ │ ├── link_2.STL │ │ ├── link_3.STL │ │ ├── link_4.STL │ │ ├── link_5.STL │ │ └── link_6.STL │ ├── package.xml │ └── urdf │ │ ├── c800_description.csv │ │ └── c800_description.urdf └── sw2urdfSetup.exe └── xfei_robot ├── CMakeLists.txt ├── README.md ├── VoiceOut └── msc │ ├── b0c4f74dc1f1bd969732c841500eff0d │ ├── urec.data │ └── usr.cdata │ └── msc.cfg ├── include ├── msp_cmn.h ├── msp_errors.h ├── msp_types.h ├── qise.h ├── qisr.h └── qtts.h ├── launch ├── turtlebot3_begin.launch ├── voice_control.launch ├── voice_control_turtlesim.launch ├── voice_move_base.launch └── voice_move_base_player.launch ├── map ├── map.pgm └── map.yaml ├── package.xml ├── reference ├── CMake Practice.pdf ├── ROS十天学基础(by dreamluo).pdf └── blog.txt ├── script ├── initial_localization.py ├── voice_cmd_vel.py ├── voice_move_base.py └── voice_move_base_player.py └── src ├── formats.h ├── iat_publish_speak.cpp ├── linuxrec.c ├── linuxrec.h ├── speech_recognizer.c ├── speech_recognizer.h └── tts_subscribe_speak.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/README.md -------------------------------------------------------------------------------- /handwriting_urdf/marm_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/marm_description/CMakeLists.txt -------------------------------------------------------------------------------- /handwriting_urdf/marm_description/config/marm_urdf.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/marm_description/config/marm_urdf.rviz -------------------------------------------------------------------------------- /handwriting_urdf/marm_description/launch/display_marm_urdf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/marm_description/launch/display_marm_urdf.launch -------------------------------------------------------------------------------- /handwriting_urdf/marm_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/marm_description/package.xml -------------------------------------------------------------------------------- /handwriting_urdf/marm_description/urdf/marm.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/marm_description/urdf/marm.urdf -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/CMakeLists.txt -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/config/mbot_urdf.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/config/mbot_urdf.rviz -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/launch/display_mbot_urdf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/launch/display_mbot_urdf.launch -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/launch/display_mbot_with_kinect_urdf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/launch/display_mbot_with_kinect_urdf.launch -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/launch/display_mbot_with_laser_urdf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/launch/display_mbot_with_laser_urdf.launch -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/meshes/kinect.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/meshes/kinect.dae -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/meshes/kinect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/meshes/kinect.jpg -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/meshes/kinect.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/meshes/kinect.tga -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/package.xml -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/urdf/mbot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/urdf/mbot.urdf -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/urdf/mbot_with_kinect.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/urdf/mbot_with_kinect.urdf -------------------------------------------------------------------------------- /handwriting_urdf/mbot_description/urdf/mbot_with_laser.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/handwriting_urdf/mbot_description/urdf/mbot_with_laser.urdf -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/config/mbot.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/config/mbot.rviz -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/launch/display_mbot_xacro.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/launch/display_mbot_xacro.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/meshes/kinect.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/meshes/kinect.dae -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/meshes/kinect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/meshes/kinect.jpg -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/meshes/kinect.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/meshes/kinect.tga -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/package.xml -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/mbot_base_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/mbot_base_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/mbot_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/mbot_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/mbot_with_camera_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/mbot_with_camera_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/mbot_with_kinect_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/mbot_with_kinect_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/mbot_with_laser_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/mbot_with_laser_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/sensors/camera_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/sensors/camera_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/sensors/kinect_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/sensors/kinect_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_description/urdf/sensors/lidar_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_description/urdf/sensors/lidar_gazebo.xacro -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/launch/view_mbot_gazebo_empty_world.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/launch/view_mbot_gazebo_empty_world.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/launch/view_mbot_gazebo_play_ground.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/launch/view_mbot_gazebo_play_ground.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/launch/view_mbot_gazebo_room.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/launch/view_mbot_gazebo_room.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/launch/view_mbot_with_camera_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/launch/view_mbot_with_camera_gazebo.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/launch/view_mbot_with_kinect_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/launch/view_mbot_with_kinect_gazebo.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/launch/view_mbot_with_laser_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/launch/view_mbot_with_laser_gazebo.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/package.xml -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/worlds/playground.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/worlds/playground.world -------------------------------------------------------------------------------- /mbot_gazebo/mbot_gazebo/worlds/room.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_gazebo/worlds/room.world -------------------------------------------------------------------------------- /mbot_gazebo/mbot_teleop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_teleop/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_gazebo/mbot_teleop/launch/logitech.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_teleop/launch/logitech.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_teleop/launch/mbot_teleop.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_teleop/launch/mbot_teleop.launch -------------------------------------------------------------------------------- /mbot_gazebo/mbot_teleop/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_teleop/package.xml -------------------------------------------------------------------------------- /mbot_gazebo/mbot_teleop/scripts/mbot_teleop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_gazebo/mbot_teleop/scripts/mbot_teleop.py -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/config/mbot.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/config/mbot.rviz -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/launch/display_mbot_xacro.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/launch/display_mbot_xacro.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/meshes/kinect.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/meshes/kinect.dae -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/meshes/kinect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/meshes/kinect.jpg -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/meshes/kinect.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/meshes/kinect.tga -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/package.xml -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/mbot_base_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/mbot_base_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/mbot_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/mbot_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/mbot_with_camera_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/mbot_with_camera_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/mbot_with_kinect_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/mbot_with_kinect_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/mbot_with_laser_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/mbot_with_laser_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/sensors/camera_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/sensors/camera_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/sensors/kinect_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/sensors/kinect_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_description/urdf/sensors/lidar_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_description/urdf/sensors/lidar_gazebo.xacro -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/mbot_kinect_nav_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/mbot_kinect_nav_gazebo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/mbot_laser_nav_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/mbot_laser_nav_gazebo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/view_mbot_gazebo_empty_world.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/view_mbot_gazebo_empty_world.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/view_mbot_gazebo_play_ground.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/view_mbot_gazebo_play_ground.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/view_mbot_gazebo_room.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/view_mbot_gazebo_room.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/view_mbot_with_camera_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/view_mbot_with_camera_gazebo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/view_mbot_with_kinect_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/view_mbot_with_kinect_gazebo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/launch/view_mbot_with_laser_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/launch/view_mbot_with_laser_gazebo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/package.xml -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/worlds/cloister.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/worlds/cloister.world -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/worlds/playground.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/worlds/playground.world -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/worlds/playpen.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/worlds/playpen.world -------------------------------------------------------------------------------- /mbot_navigation/mbot_gazebo/worlds/room.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_gazebo/worlds/room.world -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/config/lidar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/config/lidar.lua -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/config/mbot/base_local_planner_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/config/mbot/base_local_planner_params.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/config/mbot/costmap_common_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/config/mbot/costmap_common_params.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/config/mbot/dwa_local_planner_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/config/mbot/dwa_local_planner_params.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/config/mbot/global_costmap_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/config/mbot/global_costmap_params.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/config/mbot/local_costmap_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/config/mbot/local_costmap_params.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/config/mbot/move_base_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/config/mbot/move_base_params.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/amcl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/amcl.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/cartographer_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/cartographer_demo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/exploring_slam_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/exploring_slam_demo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/gmapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/gmapping.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/gmapping_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/gmapping_demo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/hector.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/hector.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/hector_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/hector_demo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/move_base.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/move_base.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/nav_cloister_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/nav_cloister_demo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/launch/rtabmap_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/launch/rtabmap_demo.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/blank_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/blank_map.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/blank_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/blank_map.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/blank_map_with_obstacle.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/blank_map_with_obstacle.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/blank_map_with_obstacle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/blank_map_with_obstacle.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/cloister_gmapping.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/cloister_gmapping.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/cloister_gmapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/cloister_gmapping.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/cloister_hector.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/cloister_hector.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/cloister_hector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/cloister_hector.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/gmapping_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/gmapping_map.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/gmapping_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/gmapping_map.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/hector_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/hector_map.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/hector_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/hector_map.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/room.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/room.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/room.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/test_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/test_map.pgm -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/maps/test_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/maps/test_map.yaml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/package.xml -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/rviz/gmapping.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/rviz/gmapping.rviz -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/rviz/nav.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/rviz/nav.rviz -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/scripts/exploring_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/scripts/exploring_random.py -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/scripts/move_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/scripts/move_test.py -------------------------------------------------------------------------------- /mbot_navigation/mbot_navigation/src/move_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_navigation/src/move_test.cpp -------------------------------------------------------------------------------- /mbot_navigation/mbot_teleop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_teleop/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_navigation/mbot_teleop/launch/logitech.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_teleop/launch/logitech.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_teleop/launch/mbot_teleop.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_teleop/launch/mbot_teleop.launch -------------------------------------------------------------------------------- /mbot_navigation/mbot_teleop/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_teleop/package.xml -------------------------------------------------------------------------------- /mbot_navigation/mbot_teleop/scripts/mbot_teleop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_navigation/mbot_teleop/scripts/mbot_teleop.py -------------------------------------------------------------------------------- /mbot_slam/hector_slam/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/README.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_compressed_map_transport/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_compressed_map_transport/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_compressed_map_transport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_compressed_map_transport/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_compressed_map_transport/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_compressed_map_transport/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_compressed_map_transport/src/map_to_image_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_compressed_map_transport/src/map_to_image_node.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/include/hector_geotiff/geotiff_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/include/hector_geotiff/geotiff_writer.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/include/hector_geotiff/map_writer_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/include/hector_geotiff/map_writer_interface.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/include/hector_geotiff/map_writer_plugin_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/include/hector_geotiff/map_writer_plugin_interface.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/launch/geotiff_mapper.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/launch/geotiff_mapper.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/launch/geotiff_mapper_only.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/launch/geotiff_mapper_only.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/src/geotiff_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/src/geotiff_node.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/src/geotiff_saver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/src/geotiff_saver.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff/src/geotiff_writer/geotiff_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff/src/geotiff_writer/geotiff_writer.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff_plugins/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff_plugins/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff_plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff_plugins/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff_plugins/hector_geotiff_plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff_plugins/hector_geotiff_plugins.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff_plugins/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff_plugins/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_geotiff_plugins/src/trajectory_geotiff_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_geotiff_plugins/src/trajectory_geotiff_plugin.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_attitude_to_tf/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_attitude_to_tf/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_attitude_to_tf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_attitude_to_tf/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_attitude_to_tf/launch/example.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_attitude_to_tf/launch/example.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_attitude_to_tf/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_attitude_to_tf/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_attitude_to_tf/src/imu_attitude_to_tf_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_attitude_to_tf/src/imu_attitude_to_tf_node.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_tools/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_tools/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_tools/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_tools/launch/bertl_robot.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_tools/launch/bertl_robot.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_tools/launch/jasmine_robot.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_tools/launch/jasmine_robot.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_tools/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_tools/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_imu_tools/src/pose_and_orientation_to_imu_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_imu_tools/src/pose_and_orientation_to_imu_node.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_server/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_server/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_server/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_server/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_server/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_server/src/hector_map_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_server/src/hector_map_server.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_tools/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_tools/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_tools/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_tools/include/hector_map_tools/HectorMapTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_tools/include/hector_map_tools/HectorMapTools.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_map_tools/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_map_tools/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMap.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapBase.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapCacheArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapCacheArray.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapLogOdds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapLogOdds.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapSimpleCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/GridMapSimpleCount.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/MapDimensionProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/MapDimensionProperties.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/OccGridMapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/OccGridMapBase.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/OccGridMapUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/OccGridMapUtil.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/OccGridMapUtilConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/map/OccGridMapUtilConfig.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/matcher/ScanMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/matcher/ScanMatcher.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/scan/DataPointContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/scan/DataPointContainer.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/slam_main/MapProcContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/slam_main/MapProcContainer.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/slam_main/MapRepMultiMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/slam_main/MapRepMultiMap.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/slam_main/MapRepSingleMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/slam_main/MapRepSingleMap.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/util/DrawInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/util/DrawInterface.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/util/MapLockerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/util/MapLockerInterface.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/util/UtilFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/include/hector_slam_lib/util/UtilFunctions.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/launch/mapping_default.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/launch/mapping_default.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/msg/HectorDebugInfo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/msg/HectorDebugInfo.msg -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/msg/HectorIterData.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/msg/HectorIterData.msg -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/HectorDebugInfoProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/HectorDebugInfoProvider.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/HectorDrawings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/HectorDrawings.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/HectorMapMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/HectorMapMutex.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/HectorMappingRos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/HectorMappingRos.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/HectorMappingRos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/HectorMappingRos.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/PoseInfoContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/PoseInfoContainer.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/PoseInfoContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/PoseInfoContainer.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/main.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_mapping/src/main_mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_mapping/src/main_mapper.cpp -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_marker_drawing/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_marker_drawing/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_marker_drawing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_marker_drawing/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_marker_drawing/include/hector_marker_drawing/DrawInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_marker_drawing/include/hector_marker_drawing/DrawInterface.h -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_marker_drawing/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_marker_drawing/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/srv/GetDistanceToObstacle.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/srv/GetDistanceToObstacle.srv -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/srv/GetNormal.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/srv/GetNormal.srv -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/srv/GetRecoveryInfo.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/srv/GetRecoveryInfo.srv -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/srv/GetRobotTrajectory.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/srv/GetRobotTrajectory.srv -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_nav_msgs/srv/GetSearchPosition.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_nav_msgs/srv/GetSearchPosition.srv -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/cityflyer_logfile_processing.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/cityflyer_logfile_processing.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/hector_ugv.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/hector_ugv.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/height_mapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/height_mapping.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/mapping_box.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/mapping_box.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/mpo700_mapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/mpo700_mapping.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/postproc_data.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/postproc_data.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/postproc_qut_logs.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/postproc_qut_logs.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/pr2os.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/pr2os.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/launch/tutorial.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/launch/tutorial.launch -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_slam_launch/rviz_cfg/mapping_demo.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_slam_launch/rviz_cfg/mapping_demo.rviz -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_trajectory_server/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_trajectory_server/CHANGELOG.rst -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_trajectory_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_trajectory_server/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_trajectory_server/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_trajectory_server/package.xml -------------------------------------------------------------------------------- /mbot_slam/hector_slam/hector_trajectory_server/src/hector_trajectory_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/hector_slam/hector_trajectory_server/src/hector_trajectory_server.cpp -------------------------------------------------------------------------------- /mbot_slam/mbot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/mbot_description/config/mbot.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/config/mbot.rviz -------------------------------------------------------------------------------- /mbot_slam/mbot_description/launch/display_mbot_xacro.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/launch/display_mbot_xacro.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_description/meshes/kinect.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/meshes/kinect.dae -------------------------------------------------------------------------------- /mbot_slam/mbot_description/meshes/kinect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/meshes/kinect.jpg -------------------------------------------------------------------------------- /mbot_slam/mbot_description/meshes/kinect.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/meshes/kinect.tga -------------------------------------------------------------------------------- /mbot_slam/mbot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/package.xml -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/mbot_base_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/mbot_base_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/mbot_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/mbot_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/mbot_with_camera_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/mbot_with_camera_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/mbot_with_kinect_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/mbot_with_kinect_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/mbot_with_laser_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/mbot_with_laser_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/sensors/camera_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/sensors/camera_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/sensors/kinect_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/sensors/kinect_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_description/urdf/sensors/lidar_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_description/urdf/sensors/lidar_gazebo.xacro -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/mbot_kinect_nav_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/mbot_kinect_nav_gazebo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/mbot_laser_nav_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/mbot_laser_nav_gazebo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/view_mbot_gazebo_empty_world.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/view_mbot_gazebo_empty_world.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/view_mbot_gazebo_play_ground.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/view_mbot_gazebo_play_ground.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/view_mbot_gazebo_room.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/view_mbot_gazebo_room.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/view_mbot_with_camera_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/view_mbot_with_camera_gazebo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/view_mbot_with_kinect_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/view_mbot_with_kinect_gazebo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/launch/view_mbot_with_laser_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/launch/view_mbot_with_laser_gazebo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/package.xml -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/worlds/cloister.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/worlds/cloister.world -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/worlds/playground.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/worlds/playground.world -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/worlds/playpen.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/worlds/playpen.world -------------------------------------------------------------------------------- /mbot_slam/mbot_gazebo/worlds/room.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_gazebo/worlds/room.world -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/config/lidar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/config/lidar.lua -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/launch/cartographer_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/launch/cartographer_demo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/launch/gmapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/launch/gmapping.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/launch/gmapping_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/launch/gmapping_demo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/launch/hector.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/launch/hector.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/launch/hector_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/launch/hector_demo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/launch/rtabmap_demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/launch/rtabmap_demo.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/blank_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/blank_map.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/blank_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/blank_map.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/blank_map_with_obstacle.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/blank_map_with_obstacle.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/blank_map_with_obstacle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/blank_map_with_obstacle.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/cloister_gmapping.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/cloister_gmapping.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/cloister_gmapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/cloister_gmapping.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/cloister_hector.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/cloister_hector.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/cloister_hector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/cloister_hector.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/gmapping_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/gmapping_map.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/gmapping_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/gmapping_map.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/hector_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/hector_map.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/hector_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/hector_map.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/room.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/room.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/room.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/test_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/test_map.pgm -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/maps/test_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/maps/test_map.yaml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/package.xml -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/rviz/gmapping.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/rviz/gmapping.rviz -------------------------------------------------------------------------------- /mbot_slam/mbot_navigation/rviz/nav.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_navigation/rviz/nav.rviz -------------------------------------------------------------------------------- /mbot_slam/mbot_teleop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_teleop/CMakeLists.txt -------------------------------------------------------------------------------- /mbot_slam/mbot_teleop/launch/logitech.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_teleop/launch/logitech.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_teleop/launch/mbot_teleop.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_teleop/launch/mbot_teleop.launch -------------------------------------------------------------------------------- /mbot_slam/mbot_teleop/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_teleop/package.xml -------------------------------------------------------------------------------- /mbot_slam/mbot_teleop/scripts/mbot_teleop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/mbot_slam/mbot_teleop/scripts/mbot_teleop.py -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/.setup_assistant -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/CMakeLists.txt -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/chomp_planning.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/controllers_gazebo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/controllers_gazebo.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/fake_controllers.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/joint_limits.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/joint_names.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/joint_names.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/kinematics.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/ompl_planning.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/probot_anno.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/probot_anno.srdf -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/ros_controllers.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/config/sensors_3d.yaml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/chomp_planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/chomp_planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/demo.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/joystick_control.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/move_group.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/moveit.rviz -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/moveit_planning_execution.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/moveit_planning_execution.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/ompl_planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/ompl_planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/planning_context.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/ros_controllers.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/setup_assistant.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/trajectory_execution.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/trajectory_execution.launch.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/warehouse.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_anno_moveit_config/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_anno_moveit_config/package.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/CMakeLists.txt -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/package.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/scripts/moveit_attached_object_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/scripts/moveit_attached_object_demo.py -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/scripts/moveit_cartesian_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/scripts/moveit_cartesian_demo.py -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/scripts/moveit_fk_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/scripts/moveit_fk_demo.py -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/scripts/moveit_ik_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/scripts/moveit_ik_demo.py -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/src/moveit_cartesian_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/src/moveit_cartesian_demo.cpp -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/src/moveit_collision_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/src/moveit_collision_demo.cpp -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/src/moveit_fk_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/src/moveit_fk_demo.cpp -------------------------------------------------------------------------------- /moveit_beginner/probot_demo/src/moveit_ik_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_demo/src/moveit_ik_demo.cpp -------------------------------------------------------------------------------- /moveit_beginner/probot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/CMakeLists.txt -------------------------------------------------------------------------------- /moveit_beginner/probot_description/launch/view_probot_anno.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/launch/view_probot_anno.launch -------------------------------------------------------------------------------- /moveit_beginner/probot_description/meshes/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/meshes/base_link.STL -------------------------------------------------------------------------------- /moveit_beginner/probot_description/meshes/link_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/meshes/link_1.STL -------------------------------------------------------------------------------- /moveit_beginner/probot_description/meshes/link_2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/meshes/link_2.STL -------------------------------------------------------------------------------- /moveit_beginner/probot_description/meshes/link_3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/meshes/link_3.STL -------------------------------------------------------------------------------- /moveit_beginner/probot_description/meshes/link_4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/meshes/link_4.STL -------------------------------------------------------------------------------- /moveit_beginner/probot_description/meshes/link_5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/meshes/link_5.STL -------------------------------------------------------------------------------- /moveit_beginner/probot_description/meshes/link_6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/meshes/link_6.STL -------------------------------------------------------------------------------- /moveit_beginner/probot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/package.xml -------------------------------------------------------------------------------- /moveit_beginner/probot_description/urdf.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/urdf.rviz -------------------------------------------------------------------------------- /moveit_beginner/probot_description/urdf/probot_anno.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_beginner/probot_description/urdf/probot_anno.xacro -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/CMakeLists.txt -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/config/joint_names_c800_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/config/joint_names_c800_description.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/export.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/export.log -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/launch/display.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/launch/display.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/launch/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/launch/gazebo.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/meshes/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/meshes/base_link.STL -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/meshes/link_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/meshes/link_1.STL -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/meshes/link_2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/meshes/link_2.STL -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/meshes/link_3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/meshes/link_3.STL -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/meshes/link_4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/meshes/link_4.STL -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/meshes/link_5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/meshes/link_5.STL -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/meshes/link_6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/meshes/link_6.STL -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/package.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/urdf/c800_description.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/urdf/c800_description.csv -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_description/urdf/c800_description.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_description/urdf/c800_description.urdf -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/.setup_assistant -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/CMakeLists.txt -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/c800_description.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/c800_description.srdf -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/chomp_planning.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/fake_controllers.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/joint_limits.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/kinematics.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/ompl_planning.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/ros_controllers.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/config/sensors_3d.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/chomp_planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/chomp_planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/demo.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/demo_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/demo_gazebo.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/gazebo.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/joystick_control.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/move_group.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/moveit.rviz -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/ompl_planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/ompl_planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/planning_context.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/ros_controllers.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/setup_assistant.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/trajectory_execution.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/trajectory_execution.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/warehouse.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/c800_moveit_config/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/c800_moveit_config/package.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/CMakeLists.txt -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/config/marm_urdf.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/config/marm_urdf.rviz -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/launch/display_marm_urdf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/launch/display_marm_urdf.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/meshes/kinect.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/meshes/kinect.dae -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/meshes/kinect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/meshes/kinect.jpg -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/meshes/kinect.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/meshes/kinect.tga -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/package.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_description/urdf/marm.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_description/urdf/marm.urdf -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/.setup_assistant -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/CMakeLists.txt -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/chomp_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/chomp_planning.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/fake_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/fake_controllers.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/joint_limits.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/kinematics.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/marm.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/marm.srdf -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/ompl_planning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/ompl_planning.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/ros_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/ros_controllers.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/config/sensors_3d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/config/sensors_3d.yaml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/chomp_planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/chomp_planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/default_warehouse_db.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/default_warehouse_db.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/demo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/demo.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/demo_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/demo_gazebo.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/gazebo.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/joystick_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/joystick_control.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/marm_moveit_sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/marm_moveit_sensor_manager.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/move_group.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/move_group.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/moveit.rviz -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/moveit_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/moveit_rviz.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/ompl_planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/ompl_planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/planning_context.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/planning_context.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/planning_pipeline.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/planning_pipeline.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/ros_controllers.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/ros_controllers.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/run_benchmark_ompl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/run_benchmark_ompl.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/sensor_manager.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/sensor_manager.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/setup_assistant.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/setup_assistant.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/trajectory_execution.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/trajectory_execution.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/warehouse.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/warehouse.launch -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/launch/warehouse_settings.launch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/launch/warehouse_settings.launch.xml -------------------------------------------------------------------------------- /moveit_setup_assistant/marm_moveit_config/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/moveit_setup_assistant/marm_moveit_config/package.xml -------------------------------------------------------------------------------- /number_distinguish/.idea/Num_distinguish.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/.idea/Num_distinguish.iml -------------------------------------------------------------------------------- /number_distinguish/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /number_distinguish/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/.idea/misc.xml -------------------------------------------------------------------------------- /number_distinguish/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/.idea/modules.xml -------------------------------------------------------------------------------- /number_distinguish/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/.idea/workspace.xml -------------------------------------------------------------------------------- /number_distinguish/image.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image.zip -------------------------------------------------------------------------------- /number_distinguish/image/car1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image/car1.jpg -------------------------------------------------------------------------------- /number_distinguish/image/car2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image/car2.jpg -------------------------------------------------------------------------------- /number_distinguish/image/car3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image/car3.jpg -------------------------------------------------------------------------------- /number_distinguish/image/car4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image/car4.jpg -------------------------------------------------------------------------------- /number_distinguish/image/car5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image/car5.jpg -------------------------------------------------------------------------------- /number_distinguish/image/car6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image/car6.jpg -------------------------------------------------------------------------------- /number_distinguish/image/xca.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/image/xca.jpg -------------------------------------------------------------------------------- /number_distinguish/include/CNN_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/include/CNN_h.py -------------------------------------------------------------------------------- /number_distinguish/include/IMG_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/include/IMG_h.py -------------------------------------------------------------------------------- /number_distinguish/include/UI_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/include/UI_h.py -------------------------------------------------------------------------------- /number_distinguish/include/__pycache__/CNN_h.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/include/__pycache__/CNN_h.cpython-36.pyc -------------------------------------------------------------------------------- /number_distinguish/include/__pycache__/IMG_h.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/include/__pycache__/IMG_h.cpython-36.pyc -------------------------------------------------------------------------------- /number_distinguish/include/__pycache__/UI_h.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/include/__pycache__/UI_h.cpython-36.pyc -------------------------------------------------------------------------------- /number_distinguish/src/MAIN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/src/MAIN.py -------------------------------------------------------------------------------- /number_distinguish/src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/src/test.py -------------------------------------------------------------------------------- /number_distinguish/test_data/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/0.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/1.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/2.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/3.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/4.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/5.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/6.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/7.jpg -------------------------------------------------------------------------------- /number_distinguish/test_data/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/test_data/8.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/0.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/1.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/10.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/11.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/12.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/13.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/14.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/15.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/16.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/17.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/18.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/19.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/2.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/20.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/21.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/22.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/23.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/24.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/25.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/26.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/27.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/28.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/29.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/3.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/30.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/31.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/32.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/33.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/34.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/35.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/36.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/37.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/38.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/39.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/4.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/40.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/41.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/42.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/43.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/44.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/5.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/6.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/7.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/8.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/data/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/data/9.jpg -------------------------------------------------------------------------------- /number_distinguish/train_data/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/labels.txt -------------------------------------------------------------------------------- /number_distinguish/train_data/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/train_data/readme.txt -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /number_distinguish/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/activate -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/python.exe -------------------------------------------------------------------------------- /number_distinguish/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/number_distinguish/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /number_distinguish/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = D:\Anaconda3 2 | include-system-site-packages = false 3 | version = 3.7.4 4 | -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/CMakeLists.txt -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/camera_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/camera_calibration.yaml -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/config/ar_track_camera.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/config/ar_track_camera.rviz -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/config/ar_track_kinect.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/config/ar_track_kinect.rviz -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/data/haar_detectors/haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/data/haar_detectors/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/data/haar_detectors/haarcascade_profileface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/data/haar_detectors/haarcascade_profileface.xml -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/doc/checkerboard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/doc/checkerboard.pdf -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/kinect_depth_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/kinect_depth_calibration.yaml -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/kinect_rgb_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/kinect_rgb_calibration.yaml -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/ar_track_camera.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/ar_track_camera.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/ar_track_kinect.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/ar_track_kinect.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/face_detector.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/face_detector.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/freenect.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/freenect.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/freenect_with_calibration.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/freenect_with_calibration.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/motion_detector.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/motion_detector.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/usb_cam.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/usb_cam.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/launch/usb_cam_with_calibration.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/launch/usb_cam_with_calibration.launch -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/package.xml -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/scripts/cv_bridge_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/scripts/cv_bridge_test.py -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/scripts/face_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/scripts/face_detector.py -------------------------------------------------------------------------------- /robot_vision_beginner/robot_vision/scripts/motion_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/robot_vision/scripts/motion_detector.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/CMakeLists.txt -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/README.md -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/config/display.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/config/display.rviz -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/data/.gitignore -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/data/labels/mscoco_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/data/labels/mscoco_label_map.pbtxt -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/data/labels/pascal_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/data/labels/pascal_label_map.pbtxt -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/data/labels/pet_label_map.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/data/labels/pet_label_map.pbtxt -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/data/models/readme.md: -------------------------------------------------------------------------------- 1 | Place your models in this folder -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/launch/object_detect.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/launch/object_detect.launch -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/launch/usb_cam_detector.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/launch/usb_cam_detector.launch -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/package.xml -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/scripts/detect_ros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/scripts/detect_ros.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/setup.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/CONTRIBUTING.md -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/README.md -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/__init__.pyc -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/anchor_generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/box_coders/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/box_coders/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/box_coders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/builders/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/builders/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/builders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/batcher.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/box_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/box_list.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/losses.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/losses.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/losses.pyc -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/matcher.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/matcher.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/matcher.pyc -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/model.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/core/model.pyc -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/data_decoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/detect.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/eval.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/eval_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/eval_util.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/evaluator.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/exporter.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/exporter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/exporter_test.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/matchers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/matchers/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/matchers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/meta_architectures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/models/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/models/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/protos/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/protos/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/protos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/protos/ssd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/protos/ssd.proto -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/testcamera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/testcamera.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/train.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/trainer.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/trainer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/trainer_test.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/BUILD -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/metrics.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/ops.py -------------------------------------------------------------------------------- /robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/tensorflow_object_detector/src/object_detection/utils/ops.pyc -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/LICENSE -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/README.md -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/include/vision_msgs/create_aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/include/vision_msgs/create_aabb.h -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/BoundingBox2D.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/BoundingBox2D.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/BoundingBox3D.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/BoundingBox3D.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/Classification2D.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/Classification2D.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/Classification3D.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/Classification3D.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/Detection2D.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/Detection2D.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/Detection2DArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/Detection2DArray.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/Detection3D.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/Detection3D.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/Detection3DArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/Detection3DArray.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/ObjectHypothesis.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/ObjectHypothesis.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/ObjectHypothesisWithPose.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/ObjectHypothesisWithPose.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/msg/VisionInfo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/msg/VisionInfo.msg -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/package.xml -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/test/CMakeLists.txt -------------------------------------------------------------------------------- /robot_vision_beginner/vision_msgs/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/robot_vision_beginner/vision_msgs/test/main.cpp -------------------------------------------------------------------------------- /solidworks_to_urdf/SW_Models/C800.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/SW_Models/C800.STEP -------------------------------------------------------------------------------- /solidworks_to_urdf/SW_Models/UR5.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/SW_Models/UR5.STEP -------------------------------------------------------------------------------- /solidworks_to_urdf/SW_Models/ares.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/SW_Models/ares.STEP -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/CMakeLists.txt -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/config/joint_names_ares_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/config/joint_names_ares_description.yaml -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/export.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/export.log -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/launch/display.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/launch/display.launch -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/launch/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/launch/gazebo.launch -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/meshes/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/meshes/base_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/meshes/controller_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/meshes/controller_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/meshes/laser_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/meshes/laser_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/meshes/wheel_lb_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/meshes/wheel_lb_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/meshes/wheel_lf_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/meshes/wheel_lf_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/meshes/wheel_rb_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/meshes/wheel_rb_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/meshes/wheel_rf_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/meshes/wheel_rf_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/package.xml -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/urdf/ares_description.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/urdf/ares_description.csv -------------------------------------------------------------------------------- /solidworks_to_urdf/ares_description/urdf/ares_description.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/ares_description/urdf/ares_description.urdf -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/CMakeLists.txt -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/config/joint_names_c800_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/config/joint_names_c800_description.yaml -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/export.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/export.log -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/launch/display.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/launch/display.launch -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/launch/gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/launch/gazebo.launch -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/meshes/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/meshes/base_link.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/meshes/link_1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/meshes/link_1.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/meshes/link_2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/meshes/link_2.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/meshes/link_3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/meshes/link_3.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/meshes/link_4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/meshes/link_4.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/meshes/link_5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/meshes/link_5.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/meshes/link_6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/meshes/link_6.STL -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/package.xml -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/urdf/c800_description.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/urdf/c800_description.csv -------------------------------------------------------------------------------- /solidworks_to_urdf/c800_description/urdf/c800_description.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/c800_description/urdf/c800_description.urdf -------------------------------------------------------------------------------- /solidworks_to_urdf/sw2urdfSetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/solidworks_to_urdf/sw2urdfSetup.exe -------------------------------------------------------------------------------- /xfei_robot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/CMakeLists.txt -------------------------------------------------------------------------------- /xfei_robot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/README.md -------------------------------------------------------------------------------- /xfei_robot/VoiceOut/msc/b0c4f74dc1f1bd969732c841500eff0d/urec.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/VoiceOut/msc/b0c4f74dc1f1bd969732c841500eff0d/urec.data -------------------------------------------------------------------------------- /xfei_robot/VoiceOut/msc/b0c4f74dc1f1bd969732c841500eff0d/usr.cdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/VoiceOut/msc/b0c4f74dc1f1bd969732c841500eff0d/usr.cdata -------------------------------------------------------------------------------- /xfei_robot/VoiceOut/msc/msc.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xfei_robot/include/msp_cmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/include/msp_cmn.h -------------------------------------------------------------------------------- /xfei_robot/include/msp_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/include/msp_errors.h -------------------------------------------------------------------------------- /xfei_robot/include/msp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/include/msp_types.h -------------------------------------------------------------------------------- /xfei_robot/include/qise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/include/qise.h -------------------------------------------------------------------------------- /xfei_robot/include/qisr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/include/qisr.h -------------------------------------------------------------------------------- /xfei_robot/include/qtts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/include/qtts.h -------------------------------------------------------------------------------- /xfei_robot/launch/turtlebot3_begin.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/launch/turtlebot3_begin.launch -------------------------------------------------------------------------------- /xfei_robot/launch/voice_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/launch/voice_control.launch -------------------------------------------------------------------------------- /xfei_robot/launch/voice_control_turtlesim.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/launch/voice_control_turtlesim.launch -------------------------------------------------------------------------------- /xfei_robot/launch/voice_move_base.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/launch/voice_move_base.launch -------------------------------------------------------------------------------- /xfei_robot/launch/voice_move_base_player.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/launch/voice_move_base_player.launch -------------------------------------------------------------------------------- /xfei_robot/map/map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/map/map.pgm -------------------------------------------------------------------------------- /xfei_robot/map/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/map/map.yaml -------------------------------------------------------------------------------- /xfei_robot/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/package.xml -------------------------------------------------------------------------------- /xfei_robot/reference/CMake Practice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/reference/CMake Practice.pdf -------------------------------------------------------------------------------- /xfei_robot/reference/ROS十天学基础(by dreamluo).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/reference/ROS十天学基础(by dreamluo).pdf -------------------------------------------------------------------------------- /xfei_robot/reference/blog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/reference/blog.txt -------------------------------------------------------------------------------- /xfei_robot/script/initial_localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/script/initial_localization.py -------------------------------------------------------------------------------- /xfei_robot/script/voice_cmd_vel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/script/voice_cmd_vel.py -------------------------------------------------------------------------------- /xfei_robot/script/voice_move_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/script/voice_move_base.py -------------------------------------------------------------------------------- /xfei_robot/script/voice_move_base_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/script/voice_move_base_player.py -------------------------------------------------------------------------------- /xfei_robot/src/formats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/src/formats.h -------------------------------------------------------------------------------- /xfei_robot/src/iat_publish_speak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/src/iat_publish_speak.cpp -------------------------------------------------------------------------------- /xfei_robot/src/linuxrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/src/linuxrec.c -------------------------------------------------------------------------------- /xfei_robot/src/linuxrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/src/linuxrec.h -------------------------------------------------------------------------------- /xfei_robot/src/speech_recognizer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/src/speech_recognizer.c -------------------------------------------------------------------------------- /xfei_robot/src/speech_recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/src/speech_recognizer.h -------------------------------------------------------------------------------- /xfei_robot/src/tts_subscribe_speak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyuehome/ros_basic_tutorials/HEAD/xfei_robot/src/tts_subscribe_speak.cpp --------------------------------------------------------------------------------