├── .gitignore ├── CMakeLists.txt ├── README.md ├── can_bridge ├── CMakeLists.txt ├── docs │ └── Yunle_S01_CAN_CMX_V0_1_8-20180522.xlsx ├── include │ ├── CanBridge.h │ ├── CanClient.h │ ├── DefaultCanClient.h │ ├── ErrorCode.h │ ├── Msg.h │ └── utils.h ├── launch │ └── can_bridge.launch ├── package.xml ├── readme.md └── src │ ├── CanBridge.cpp │ ├── CanBridge_node.cpp │ ├── CanClient.cpp │ ├── DefaultCanClient.cpp │ └── Msg.cpp ├── common ├── .gitignore ├── static_tf │ ├── CMakeLists.txt │ ├── launch │ │ ├── record_raw_data.launch │ │ ├── static_tf_sccar.launch │ │ └── static_tf_yunlecar.launch │ ├── package.xml │ └── src │ │ └── filter_imu.cpp ├── user_protocol │ └── include │ │ └── user_protocol.h └── utils │ ├── CMakeLists.txt │ ├── include │ ├── filter_ground.h.backup │ ├── ground_filter.hpp │ ├── ground_filter.hpp.original │ └── utils.hpp │ ├── launch │ └── util_viz.launch │ ├── package.xml │ ├── params │ └── util_viz.yaml │ └── src │ ├── filter_ground.cpp.backup │ ├── ground_filter.hpp.backup │ └── util_viz.cpp ├── control ├── bst_control │ └── src │ │ ├── control_algorithm.pyc │ │ ├── find_lane.pyc │ │ └── windows.pyc ├── motor_control │ ├── README.md │ ├── car_control.ino │ └── mycar_control │ │ └── mycar_control.ino ├── waypoint_follower │ ├── CMakeLists.txt │ ├── launch │ │ └── pure_persuit.launch │ ├── nodes │ │ └── pure_persuit │ │ │ ├── pure_persuit.cpp │ │ │ ├── pure_persuit.h │ │ │ └── pure_persuit_node.cpp │ └── package.xml └── waypoint_maker │ ├── CMakeLists.txt │ ├── filtered_waypoints.csv │ ├── launch │ └── waypoint_loader.launch │ ├── nodes │ └── waypoint_loader │ │ ├── waypoint_loader.cpp │ │ └── waypoint_loader.h │ └── package.xml ├── detection ├── bst_detection │ ├── CMakeLists.txt_backup │ ├── calib │ │ ├── 1080_intrinsic.xml │ │ ├── extrinsic100.xml │ │ ├── extrinsic60.xml │ │ ├── intrins100.xml │ │ ├── intrins60.xml │ │ └── radar.yml │ ├── include │ │ └── bst_detection │ │ │ ├── api.h │ │ │ └── yunle_sensor_msg.h │ ├── launch │ │ └── bst_detection_node.launch │ ├── package.backup │ └── src │ │ └── detection_node.cpp ├── calibration │ ├── calibration_camera_lidar │ │ ├── CMakeLists.txt │ │ ├── CalibrationToolkit │ │ │ ├── calibrationtoolkit.cpp │ │ │ ├── calibrationtoolkit.h │ │ │ ├── selectionwidget.cpp │ │ │ └── selectionwidget.h │ │ ├── CalibrationToolkit_Manual.pdf │ │ ├── docs │ │ │ ├── Untitled Document~ │ │ │ ├── rccar_calibration_camera_lidar_.yaml │ │ │ ├── yunlecar_20190331_1500_autoware_camera_calibration.yml │ │ │ └── yunlecar_calibration_camera_lidar.yaml │ │ ├── launch │ │ │ └── camera_lidar_calib.launch │ │ ├── nodes │ │ │ ├── calibration_publisher │ │ │ │ ├── README.md │ │ │ │ └── calibration_publisher.cpp │ │ │ ├── calibration_test │ │ │ │ ├── camera_lidar2d_offline_calib.cpp │ │ │ │ ├── chessboard.cpp │ │ │ │ ├── chessboard.h │ │ │ │ ├── common_2d_calib.cpp │ │ │ │ ├── common_2d_calib.h │ │ │ │ ├── data_struct.h │ │ │ │ ├── image_window.cpp │ │ │ │ ├── image_window.h │ │ │ │ ├── scan_window.cpp │ │ │ │ ├── scan_window.h │ │ │ │ ├── trans.cpp │ │ │ │ └── trans.h │ │ │ └── calibration_toolkit │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ └── mainwindow.ui │ │ └── package.xml │ ├── calibration_publisher │ │ ├── CMakeLists.txt │ │ ├── launch │ │ │ ├── rccar_calibration_publisher.launch │ │ │ ├── rccar_calibration_publisher.launch~ │ │ │ ├── yunlecar_calibration_publisher.launch │ │ │ └── yunlecar_calibration_publisher.launch~ │ │ ├── package.xml │ │ └── src │ │ │ └── calibration_publisher.cpp │ └── camera_calibration │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── docs │ │ ├── 20190120_1023_autoware_camera_calibration.yaml │ │ └── smartcar_logo.png │ │ ├── nodes │ │ ├── cameracalibrator.py │ │ └── cameracheck.py │ │ ├── package.xml │ │ ├── scripts │ │ └── tarfile_calibration.py │ │ ├── setup.py │ │ └── src │ │ └── camera_calibration │ │ ├── __init__.py │ │ ├── calibrator.py │ │ ├── calibrator.pyc │ │ ├── camera_calibrator.py │ │ ├── camera_calibrator.pyc │ │ └── camera_checker.py ├── camera_point_fusion │ ├── joint_pixel_pointcloud │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ │ └── joint_pixel_pointcloud.h │ │ ├── launch │ │ │ ├── joint_pixel_pointcloud.launch │ │ │ └── joint_pixel_pointcloud.launch~ │ │ ├── package.xml │ │ ├── rviz │ │ │ └── perception.rviz │ │ └── src │ │ │ ├── joint_pixel_pointcloud.cpp │ │ │ └── joint_pixel_pointcloud_node.cpp │ └── points2image │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── points_image │ │ │ └── points_image.hpp │ │ ├── interface.yaml │ │ ├── launch │ │ └── points2image.launch │ │ ├── lib │ │ └── points_image │ │ │ └── points_image.cpp │ │ ├── nodes │ │ └── points2image │ │ │ └── points2image.cpp │ │ └── package.xml └── lidar_detection │ ├── filter_global_ground │ ├── CMakeLists.txt │ ├── include │ │ └── filter_global_ground │ │ │ └── save_map_core.h │ ├── launch │ │ └── test_filter_global_ground.launch │ ├── package.xml │ └── src │ │ ├── filter_global_ground_core.cpp │ │ └── filter_global_ground_node.cpp │ ├── lidar_cluster_detector │ ├── CMakeLists.txt │ ├── include │ │ ├── cluster.h │ │ ├── lidar_euclidean_cluster.h │ │ └── utils.h │ ├── launch │ │ └── lidar_euclidean_cluster.launch │ ├── package.xml │ └── src │ │ ├── cluster.cpp │ │ ├── lidar_euclidean_cluster.cpp │ │ ├── lidar_euclidean_cluster_node.cpp │ │ ├── preprocess.cpp │ │ ├── publisher.cpp │ │ └── utils.cpp │ ├── lidar_detector_HD │ ├── detected_objects_visualizer │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ │ ├── visualize_detected_objects.h │ │ │ └── visualize_rects.h │ │ ├── package.xml │ │ └── src │ │ │ ├── visualize_detected_objects.cpp │ │ │ ├── visualize_detected_objects_main.cpp │ │ │ ├── visualize_rects.cpp │ │ │ └── visualize_rects_main.cpp │ └── lidar_detection │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── include │ │ ├── cluster_hd.h │ │ ├── gencolors.cpp │ │ ├── gpu_euclidean_clustering.h │ │ └── lidar_detection_core.h │ │ ├── launch │ │ ├── Yunlecar_lidar_detection.launch │ │ └── test_lidar_detection.launch │ │ ├── package.xml │ │ └── src │ │ ├── cluster_hd.cpp │ │ ├── gpu_euclidean_clustering.cu │ │ ├── lidar_detection_core.cpp │ │ └── lidar_detection_node.cpp │ └── ray_ground_filter │ ├── CMakeLists.txt │ ├── README.md │ ├── cfg │ └── ray_ground_filter.cfg │ ├── include │ └── ray_ground_filter_core.h │ ├── launch │ ├── RCcar_ray_ground_filter.launch │ ├── Yunlecar_ray_ground_filter.launch │ └── test_Yunlecar_ray_ground_filter.launch │ ├── package.xml │ ├── rviz │ └── test_ese.rviz │ └── src │ ├── ray_ground_filter_core.cpp │ └── ray_ground_filter_node.cpp ├── driver ├── cv_camera_driver │ ├── CMakeLists.txt │ ├── docs │ │ └── 20190113_1301_smartcar_camera_calibration.yaml │ ├── include │ │ └── cv_camera │ │ │ ├── capture.h │ │ │ ├── driver.h │ │ │ └── exception.h │ ├── launch │ │ └── cv_camera_driver.launch │ ├── package.xml │ └── src │ │ ├── capture.cpp │ │ ├── cv_camera_node.cpp │ │ ├── cv_camera_nodelet.cpp │ │ └── driver.cpp ├── gpio │ ├── CMakeLists.txt │ ├── README.md │ ├── docs │ │ └── TX2-j21-pin.png │ ├── include │ │ ├── jetsonGPIO.h │ │ └── ros_gpio_control │ │ │ └── gpio.h │ ├── launch │ │ └── gpio.launch │ ├── package.xml │ └── src │ │ ├── gpio.cpp │ │ ├── gpio_control_node.cpp │ │ └── jetsonGPIO.cpp ├── hall_encoder │ ├── CMakeLists.txt │ ├── launch │ │ └── hall_encoder_node.launch │ ├── package.xml │ └── src │ │ ├── hall_encoder_node.cpp │ │ └── hall_encoder_node.h ├── odom_imu │ ├── CMakeLists.txt │ ├── include │ │ └── odom_imu │ │ │ ├── odom_imu.h │ │ │ ├── odom_imu.h.bak │ │ │ └── user_protocol.h │ ├── launch │ │ ├── odom_imu.launch │ │ └── test_odom_imu.launch │ ├── package.xml │ └── src │ │ ├── odom_imu.cpp │ │ ├── odom_imu.cpp.bak │ │ └── odom_imu_node.cpp ├── razor_imu_9dof │ ├── .gitignore │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── README.md │ ├── cfg │ │ ├── imu (copy).cfg │ │ └── imu.cfg │ ├── config │ │ ├── my_razor.yaml │ │ ├── my_razor_24.yaml │ │ ├── my_razor_30.yaml │ │ ├── razor.yaml │ │ └── razor_diags.yaml │ ├── launch │ │ ├── razor-pub-3.0.launch │ │ ├── razor-pub-and-display-3-0.launch │ │ ├── razor-pub-and-display.launch │ │ └── razor-pub.launch │ ├── magnetometer_calibration │ │ ├── Matlab │ │ │ └── magnetometer_calibration │ │ │ │ ├── ellipsoid_fit.m │ │ │ │ ├── ellipsoid_fit_license.txt │ │ │ │ └── magnetometer_calibration.m │ │ └── Processing │ │ │ └── Magnetometer_calibration │ │ │ ├── Magnetometer_calibration.pde │ │ │ └── data │ │ │ └── Univers-66.vlw │ ├── nodes │ │ ├── display_3D_visualization.py │ │ ├── imu3_0.py │ │ └── imu_node.py │ ├── package.xml │ └── src │ │ └── Razor_AHRS │ │ ├── Compass.ino │ │ ├── DCM.ino │ │ ├── Math.ino │ │ ├── Output.ino │ │ ├── Razor_AHRS.ino │ │ └── Sensors.ino ├── ultrasonic_serial │ ├── CMakeLists.txt │ ├── README.md │ ├── launch │ │ └── ultrasonic_serial_node.launch │ ├── package.xml │ └── src │ │ └── ultrasonic_serial_node.cpp ├── velodyne │ ├── .gitignore │ ├── .travis.yml │ ├── COPYING │ ├── README.rst │ ├── velodyne │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ └── package.xml │ ├── velodyne_driver │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── cfg │ │ │ └── VelodyneNode.cfg │ │ ├── include │ │ │ └── velodyne_driver │ │ │ │ ├── input.h │ │ │ │ └── ring_sequence.h │ │ ├── launch │ │ │ └── nodelet_manager.launch │ │ ├── mainpage.dox │ │ ├── nodelet_velodyne.xml │ │ ├── package.xml │ │ ├── src │ │ │ ├── driver │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── driver.cc │ │ │ │ ├── driver.h │ │ │ │ ├── nodelet.cc │ │ │ │ └── velodyne_node.cc │ │ │ ├── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── input.cc │ │ │ └── vdump │ │ └── tests │ │ │ ├── diagnostic_agg.yaml │ │ │ ├── pcap_32e_node_hertz.test │ │ │ ├── pcap_32e_nodelet_hertz.test │ │ │ ├── pcap_node_hertz.test │ │ │ ├── pcap_nodelet_hertz.test │ │ │ ├── pcap_vlp16_node_hertz.test │ │ │ └── pcap_vlp16_nodelet_hertz.test │ ├── velodyne_laserscan │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── cfg │ │ │ └── VelodyneLaserScan.cfg │ │ ├── nodelets.xml │ │ ├── package.xml │ │ ├── src │ │ │ ├── VelodyneLaserScan.cpp │ │ │ ├── VelodyneLaserScan.h │ │ │ ├── node.cpp │ │ │ └── nodelet.cpp │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── lazy_subscriber.cpp │ │ │ ├── lazy_subscriber_node.test │ │ │ ├── lazy_subscriber_nodelet.test │ │ │ ├── system.cpp │ │ │ ├── system_node.test │ │ │ └── system_nodelet.test │ ├── velodyne_msgs │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── mainpage.dox │ │ ├── msg │ │ │ ├── VelodynePacket.msg │ │ │ └── VelodyneScan.msg │ │ └── package.xml │ └── velodyne_pointcloud │ │ ├── CHANGELOG.rst │ │ ├── CMakeLists.txt │ │ ├── cfg │ │ ├── CloudNode.cfg │ │ └── TransformNode.cfg │ │ ├── include │ │ └── velodyne_pointcloud │ │ │ ├── calibration.h │ │ │ ├── point_types.h │ │ │ └── rawdata.h │ │ ├── launch │ │ ├── 32e_points.launch │ │ ├── VLP-32C_points.launch │ │ ├── VLP16_points.launch │ │ ├── cloud_nodelet.launch │ │ ├── laserscan_nodelet.launch │ │ └── transform_nodelet.launch │ │ ├── mainpage.dox │ │ ├── nodelets.xml │ │ ├── package.xml │ │ ├── params │ │ ├── 32db.yaml │ │ ├── 64e_s2.1-sztaki.yaml │ │ ├── 64e_utexas.yaml │ │ ├── VLP16_hires_db.yaml │ │ ├── VLP16db.yaml │ │ ├── VeloView-VLP-32C.yaml │ │ └── rviz_points.vcg │ │ ├── scripts │ │ └── gen_calibration.py │ │ ├── src │ │ ├── conversions │ │ │ ├── CMakeLists.txt │ │ │ ├── cloud_node.cc │ │ │ ├── cloud_nodelet.cc │ │ │ ├── colors.cc │ │ │ ├── colors.h │ │ │ ├── convert.cc │ │ │ ├── convert.h │ │ │ ├── ringcolors_node.cc │ │ │ ├── ringcolors_nodelet.cc │ │ │ ├── transform.cc │ │ │ ├── transform.h │ │ │ ├── transform_node.cc │ │ │ └── transform_nodelet.cc │ │ └── lib │ │ │ ├── CMakeLists.txt │ │ │ ├── calibration.cc │ │ │ └── rawdata.cc │ │ └── tests │ │ ├── 32db.xml │ │ ├── 64e_s2.1-sztaki.xml │ │ ├── CMakeLists.txt │ │ ├── angles-calibrated.yaml │ │ ├── angles.yaml │ │ ├── cloud_node_32e_hz.test │ │ ├── cloud_node_64e_s2.1_hz.test │ │ ├── cloud_node_hz.test │ │ ├── cloud_node_vlp16_hz.test │ │ ├── cloud_nodelet_32e_hz.test │ │ ├── cloud_nodelet_64e_s2.1_hz.test │ │ ├── cloud_nodelet_hz.test │ │ ├── cloud_nodelet_vlp16_hz.test │ │ ├── empty.xml │ │ ├── issue_84_float_intensities.yaml │ │ ├── static_vehicle_tf.launch │ │ ├── test_calibration.cpp │ │ ├── test_db_without_intensities.xml │ │ ├── transform_node_hz.test │ │ ├── transform_nodelet_hz.test │ │ └── two_nodelet_managers.test └── zed_wrapper │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── cfg │ └── Zed.cfg │ ├── launch │ ├── README.md │ ├── zed.launch │ ├── zed_camera.launch │ ├── zed_camera_nodelet.launch │ ├── zed_multi_cam.launch │ ├── zed_multi_gpu.launch │ └── zed_no_tf.launch │ ├── nodelet_plugins.xml │ ├── package.xml │ ├── records │ ├── record_depth.sh │ └── record_stereo.sh │ ├── src │ ├── nodelet │ │ ├── include │ │ │ └── zed_wrapper_nodelet.hpp │ │ └── src │ │ │ └── zed_wrapper_nodelet.cpp │ ├── tools │ │ ├── include │ │ │ └── sl_tools.h │ │ └── src │ │ │ └── sl_tools.cpp │ └── zed_wrapper_node.cpp │ ├── srv │ ├── reset_odometry.srv │ ├── reset_tracking.srv │ ├── set_initial_pose.srv │ ├── start_svo_recording.srv │ └── stop_svo_recording.srv │ └── urdf │ ├── ZED.stl │ ├── ZEDM.stl │ ├── zed.urdf │ └── zedm.urdf ├── gateway ├── .gitignore ├── CMakeLists.txt ├── config │ └── server_config.ini.example ├── launch │ └── gateway.launch ├── package.xml ├── src │ ├── app.py │ ├── beans.py │ ├── common.py │ ├── connector.py │ ├── monitor.py │ ├── switch.py │ ├── telecontrol.py │ ├── video_rtmp_client.py │ └── web_server.py └── test_gateway.launch ├── launch_package ├── CMakeLists.txt ├── README.md ├── launch │ ├── smartcar.launch │ ├── test_calibration.launch │ ├── test_fusion.launch │ ├── test_local_plannner.launch │ ├── test_ndt_localization.launch │ ├── test_perception.launch │ ├── test_smartcar.launch │ └── yunle_car.launch ├── package.xml └── src │ └── welcome.cpp ├── localization └── ndt_localization │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ ├── ndt_cpu │ │ ├── NormalDistributionsTransform.h │ │ ├── Octree.h │ │ ├── Registration.h │ │ ├── SymmetricEigenSolver.h │ │ ├── VoxelGrid.h │ │ └── debug.h │ ├── ndt_gpu │ │ ├── Matrix.h │ │ ├── MatrixDevice.h │ │ ├── MatrixHost.h │ │ ├── NormalDistributionsTransform.h │ │ ├── Registration.h │ │ ├── SymmetricEigenSolver.h │ │ ├── VoxelGrid.h │ │ ├── common.h │ │ └── debug.h │ ├── ndt_localization │ │ └── ndt_localization.h │ └── pcl_omp_registration │ │ ├── impl │ │ ├── ndt.hpp │ │ └── registration.hpp │ │ ├── ndt.h │ │ └── registration.h │ ├── launch │ ├── ndt_localization.launch │ ├── points_to_costmap.launch │ ├── smartcar_ndt_localization.launch │ ├── test │ │ ├── camera.launch │ │ ├── test_path_planner.launch │ │ ├── test_pure_pursuit.launch │ │ └── test_ray_ground_filter.launch │ ├── test_ndt_localization_real.launch │ ├── test_ndt_localization_sim.launch │ └── test_yunle_ndt.launch │ ├── package.xml │ ├── params │ ├── test.yaml │ └── test.yaml~ │ ├── rviz │ ├── smartcar_test.rviz │ ├── test.rviz │ └── test_ndt_localization.rviz │ ├── src │ ├── ndt_localization.cpp │ ├── ndt_localization_node.cpp │ ├── ndt_test.cpp │ └── tf_test.cpp │ └── trajectories │ ├── 2018-10-22-19-44-24.traj │ └── 2018-10-22-20-16-18.traj ├── map ├── gen_costmap │ ├── CMakeLists.txt │ ├── README.md │ ├── cfg │ │ ├── gen_costmap.cfg │ │ └── gen_costmap.yaml │ ├── launch │ │ ├── gen_costmap.launch │ │ └── test_gen_costmap.launch │ ├── package.xml │ └── src │ │ └── gen_costmap.cpp ├── map_tools │ ├── extract_globalpath │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── launch │ │ │ ├── extract_single.launch │ │ │ └── extract_whole.launch │ │ ├── map_file │ │ │ └── map.yaml │ │ ├── package.xml │ │ ├── path_file_RCcar │ │ │ ├── cross_0.csv │ │ │ ├── cross_1.csv │ │ │ ├── cross_2.csv │ │ │ ├── cross_3.csv │ │ │ ├── cross_4.csv │ │ │ ├── cross_5.csv │ │ │ ├── cross_6.csv │ │ │ ├── cross_7.csv │ │ │ ├── cross_8.csv │ │ │ ├── cross_9.csv │ │ │ ├── lane_0.csv │ │ │ ├── lane_1.csv │ │ │ ├── lane_2.csv │ │ │ ├── lane_3.csv │ │ │ ├── lane_4.csv │ │ │ ├── lane_5.csv │ │ │ └── lane_6.csv │ │ ├── path_file_Yunlecar │ │ │ ├── cross_0.csv │ │ │ ├── cross_1.csv │ │ │ ├── cross_2.csv │ │ │ ├── cross_3.csv │ │ │ ├── cross_4.csv │ │ │ ├── cross_5.csv │ │ │ ├── cross_6.csv │ │ │ ├── cross_7.csv │ │ │ ├── cross_8.csv │ │ │ ├── cross_9.csv │ │ │ ├── lane_0.csv │ │ │ ├── lane_1.csv │ │ │ ├── lane_2.csv │ │ │ ├── lane_3.csv │ │ │ ├── lane_4.csv │ │ │ ├── lane_5.csv │ │ │ └── lane_6.csv │ │ ├── rviz │ │ │ ├── path190218.png │ │ │ └── test.rviz │ │ ├── src │ │ │ ├── extract_lane_cross.cpp │ │ │ └── extract_single.cpp │ │ └── yunlecar_zetong_path.png │ └── map_filter │ │ ├── CMakeLists.txt │ │ ├── cfg │ │ └── filter.cfg │ │ ├── launch │ │ └── map_filter.launch │ │ ├── package.xml │ │ ├── rviz │ │ └── rviz.rviz │ │ └── src │ │ └── map_filter.cpp ├── ndt_mapping │ ├── CMakeLists.txt │ ├── README.md │ ├── include │ │ ├── fast_ndt_mapping │ │ │ └── LidarMapping.h │ │ ├── ndt_cpu │ │ │ ├── NormalDistributionsTransform.h │ │ │ ├── Octree.h │ │ │ ├── Registration.h │ │ │ ├── SymmetricEigenSolver.h │ │ │ ├── VoxelGrid.h │ │ │ └── debug.h │ │ ├── ndt_gpu │ │ │ ├── Matrix.h │ │ │ ├── MatrixDevice.h │ │ │ ├── MatrixHost.h │ │ │ ├── NormalDistributionsTransform.h │ │ │ ├── Registration.h │ │ │ ├── SymmetricEigenSolver.h │ │ │ ├── VoxelGrid.h │ │ │ ├── common.h │ │ │ └── debug.h │ │ └── pcl_omp_registration │ │ │ ├── impl │ │ │ ├── ndt.hpp │ │ │ └── registration.hpp │ │ │ ├── ndt.h │ │ │ └── registration.h │ ├── launch │ │ ├── collect_data.launch │ │ ├── fast_ndt_carla.launch │ │ └── fast_ndt_mapping.launch │ ├── package.xml │ ├── params │ │ ├── params_carla.yaml │ │ └── params_ndt_mapping.yaml │ ├── rviz │ │ └── test.rviz │ └── src │ │ ├── LidarMapping.1backup.cpp │ │ ├── LidarMapping.cpp │ │ └── fast_ndt_mapping_node.cpp └── static_map │ ├── CMakeLists.txt │ ├── README.md │ ├── launch │ ├── filter_ground.launch │ └── load_densy_map.launch │ ├── map_file │ └── map.yaml │ ├── package.xml │ └── src │ ├── static_map.cpp │ └── static_map_densy.cpp ├── msgs ├── autoware_msgs │ ├── CMakeLists.txt │ ├── msg │ │ ├── AccelCmd.msg │ │ ├── AdjustXY.msg │ │ ├── BrakeCmd.msg │ │ ├── CameraExtrinsic.msg │ │ ├── Centroids.msg │ │ ├── CloudCluster.msg │ │ ├── CloudClusterArray.msg │ │ ├── ColorSet.msg │ │ ├── ControlCommand.msg │ │ ├── ControlCommandStamped.msg │ │ ├── DTLane.msg │ │ ├── DetectedObject.msg │ │ ├── DetectedObjectArray.msg │ │ ├── ExtractedPosition.msg │ │ ├── GeometricRectangle.msg │ │ ├── ICPStat.msg │ │ ├── ImageLaneObjects.msg │ │ ├── ImageObj.msg │ │ ├── ImageObjRanged.msg │ │ ├── ImageObjTracked.msg │ │ ├── ImageObjects.msg │ │ ├── ImageRect.msg │ │ ├── ImageRectRanged.msg │ │ ├── IndicatorCmd.msg │ │ ├── LampCmd.msg │ │ ├── Lane.msg │ │ ├── LaneArray.msg │ │ ├── NDTStat.msg │ │ ├── ObjLabel.msg │ │ ├── ObjPose.msg │ │ ├── PointsImage.msg │ │ ├── ProjectionMatrix.msg │ │ ├── RemoteCmd.msg │ │ ├── ScanImage.msg │ │ ├── Signals.msg │ │ ├── State.msg │ │ ├── StateCmd.msg │ │ ├── SteerCmd.msg │ │ ├── SyncTimeDiff.msg │ │ ├── SyncTimeMonitor.msg │ │ ├── TrafficLight.msg │ │ ├── TrafficLightResult.msg │ │ ├── TrafficLightResultArray.msg │ │ ├── TunedResult.msg │ │ ├── ValueSet.msg │ │ ├── VehicleCmd.msg │ │ ├── VehicleStatus.msg │ │ ├── VscanTracked.msg │ │ ├── VscanTrackedArray.msg │ │ ├── Waypoint.msg │ │ └── WaypointState.msg │ └── package.xml └── can_msgs │ ├── CMakeLists.txt │ └── msg │ ├── ECU.msg │ ├── Feedback.msg │ ├── TeleControl.msg │ ├── TeleReport.msg │ ├── battery.msg │ └── brake.msg └── pics ├── car1.jpeg ├── car2.jpeg ├── 底盘尺寸图.png ├── 整体图.png ├── 框架图.png └── 线控底盘.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/README.md -------------------------------------------------------------------------------- /can_bridge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/CMakeLists.txt -------------------------------------------------------------------------------- /can_bridge/docs/Yunle_S01_CAN_CMX_V0_1_8-20180522.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/docs/Yunle_S01_CAN_CMX_V0_1_8-20180522.xlsx -------------------------------------------------------------------------------- /can_bridge/include/CanBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/include/CanBridge.h -------------------------------------------------------------------------------- /can_bridge/include/CanClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/include/CanClient.h -------------------------------------------------------------------------------- /can_bridge/include/DefaultCanClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/include/DefaultCanClient.h -------------------------------------------------------------------------------- /can_bridge/include/ErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/include/ErrorCode.h -------------------------------------------------------------------------------- /can_bridge/include/Msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/include/Msg.h -------------------------------------------------------------------------------- /can_bridge/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/include/utils.h -------------------------------------------------------------------------------- /can_bridge/launch/can_bridge.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/launch/can_bridge.launch -------------------------------------------------------------------------------- /can_bridge/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/package.xml -------------------------------------------------------------------------------- /can_bridge/readme.md: -------------------------------------------------------------------------------- 1 | can_bridge主要功能: 2 | - 向车端ecu发送控制命令 3 | - 读取车辆状态信息 4 | - 读取毫米波雷达信号 -------------------------------------------------------------------------------- /can_bridge/src/CanBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/src/CanBridge.cpp -------------------------------------------------------------------------------- /can_bridge/src/CanBridge_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/src/CanBridge_node.cpp -------------------------------------------------------------------------------- /can_bridge/src/CanClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/src/CanClient.cpp -------------------------------------------------------------------------------- /can_bridge/src/DefaultCanClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/src/DefaultCanClient.cpp -------------------------------------------------------------------------------- /can_bridge/src/Msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/can_bridge/src/Msg.cpp -------------------------------------------------------------------------------- /common/.gitignore: -------------------------------------------------------------------------------- 1 | /models 2 | -------------------------------------------------------------------------------- /common/static_tf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/static_tf/CMakeLists.txt -------------------------------------------------------------------------------- /common/static_tf/launch/record_raw_data.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/static_tf/launch/record_raw_data.launch -------------------------------------------------------------------------------- /common/static_tf/launch/static_tf_sccar.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/static_tf/launch/static_tf_sccar.launch -------------------------------------------------------------------------------- /common/static_tf/launch/static_tf_yunlecar.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/static_tf/launch/static_tf_yunlecar.launch -------------------------------------------------------------------------------- /common/static_tf/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/static_tf/package.xml -------------------------------------------------------------------------------- /common/static_tf/src/filter_imu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/static_tf/src/filter_imu.cpp -------------------------------------------------------------------------------- /common/user_protocol/include/user_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/user_protocol/include/user_protocol.h -------------------------------------------------------------------------------- /common/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/CMakeLists.txt -------------------------------------------------------------------------------- /common/utils/include/filter_ground.h.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/include/filter_ground.h.backup -------------------------------------------------------------------------------- /common/utils/include/ground_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/include/ground_filter.hpp -------------------------------------------------------------------------------- /common/utils/include/ground_filter.hpp.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/include/ground_filter.hpp.original -------------------------------------------------------------------------------- /common/utils/include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/include/utils.hpp -------------------------------------------------------------------------------- /common/utils/launch/util_viz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/launch/util_viz.launch -------------------------------------------------------------------------------- /common/utils/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/package.xml -------------------------------------------------------------------------------- /common/utils/params/util_viz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/params/util_viz.yaml -------------------------------------------------------------------------------- /common/utils/src/filter_ground.cpp.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/src/filter_ground.cpp.backup -------------------------------------------------------------------------------- /common/utils/src/ground_filter.hpp.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/src/ground_filter.hpp.backup -------------------------------------------------------------------------------- /common/utils/src/util_viz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/common/utils/src/util_viz.cpp -------------------------------------------------------------------------------- /control/bst_control/src/control_algorithm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/bst_control/src/control_algorithm.pyc -------------------------------------------------------------------------------- /control/bst_control/src/find_lane.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/bst_control/src/find_lane.pyc -------------------------------------------------------------------------------- /control/bst_control/src/windows.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/bst_control/src/windows.pyc -------------------------------------------------------------------------------- /control/motor_control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/motor_control/README.md -------------------------------------------------------------------------------- /control/motor_control/car_control.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/motor_control/car_control.ino -------------------------------------------------------------------------------- /control/motor_control/mycar_control/mycar_control.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/motor_control/mycar_control/mycar_control.ino -------------------------------------------------------------------------------- /control/waypoint_follower/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_follower/CMakeLists.txt -------------------------------------------------------------------------------- /control/waypoint_follower/launch/pure_persuit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_follower/launch/pure_persuit.launch -------------------------------------------------------------------------------- /control/waypoint_follower/nodes/pure_persuit/pure_persuit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_follower/nodes/pure_persuit/pure_persuit.cpp -------------------------------------------------------------------------------- /control/waypoint_follower/nodes/pure_persuit/pure_persuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_follower/nodes/pure_persuit/pure_persuit.h -------------------------------------------------------------------------------- /control/waypoint_follower/nodes/pure_persuit/pure_persuit_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_follower/nodes/pure_persuit/pure_persuit_node.cpp -------------------------------------------------------------------------------- /control/waypoint_follower/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_follower/package.xml -------------------------------------------------------------------------------- /control/waypoint_maker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_maker/CMakeLists.txt -------------------------------------------------------------------------------- /control/waypoint_maker/filtered_waypoints.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_maker/filtered_waypoints.csv -------------------------------------------------------------------------------- /control/waypoint_maker/launch/waypoint_loader.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_maker/launch/waypoint_loader.launch -------------------------------------------------------------------------------- /control/waypoint_maker/nodes/waypoint_loader/waypoint_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_maker/nodes/waypoint_loader/waypoint_loader.cpp -------------------------------------------------------------------------------- /control/waypoint_maker/nodes/waypoint_loader/waypoint_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_maker/nodes/waypoint_loader/waypoint_loader.h -------------------------------------------------------------------------------- /control/waypoint_maker/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/control/waypoint_maker/package.xml -------------------------------------------------------------------------------- /detection/bst_detection/CMakeLists.txt_backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/CMakeLists.txt_backup -------------------------------------------------------------------------------- /detection/bst_detection/calib/1080_intrinsic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/calib/1080_intrinsic.xml -------------------------------------------------------------------------------- /detection/bst_detection/calib/extrinsic100.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/calib/extrinsic100.xml -------------------------------------------------------------------------------- /detection/bst_detection/calib/extrinsic60.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/calib/extrinsic60.xml -------------------------------------------------------------------------------- /detection/bst_detection/calib/intrins100.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/calib/intrins100.xml -------------------------------------------------------------------------------- /detection/bst_detection/calib/intrins60.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/calib/intrins60.xml -------------------------------------------------------------------------------- /detection/bst_detection/calib/radar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/calib/radar.yml -------------------------------------------------------------------------------- /detection/bst_detection/include/bst_detection/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/include/bst_detection/api.h -------------------------------------------------------------------------------- /detection/bst_detection/include/bst_detection/yunle_sensor_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/include/bst_detection/yunle_sensor_msg.h -------------------------------------------------------------------------------- /detection/bst_detection/launch/bst_detection_node.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/launch/bst_detection_node.launch -------------------------------------------------------------------------------- /detection/bst_detection/package.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/package.backup -------------------------------------------------------------------------------- /detection/bst_detection/src/detection_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/bst_detection/src/detection_node.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/CMakeLists.txt -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/CalibrationToolkit/calibrationtoolkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/CalibrationToolkit/calibrationtoolkit.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/CalibrationToolkit/calibrationtoolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/CalibrationToolkit/calibrationtoolkit.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/CalibrationToolkit/selectionwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/CalibrationToolkit/selectionwidget.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/CalibrationToolkit/selectionwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/CalibrationToolkit/selectionwidget.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/CalibrationToolkit_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/CalibrationToolkit_Manual.pdf -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/docs/Untitled Document~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/docs/rccar_calibration_camera_lidar_.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/docs/rccar_calibration_camera_lidar_.yaml -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/docs/yunlecar_20190331_1500_autoware_camera_calibration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/docs/yunlecar_20190331_1500_autoware_camera_calibration.yml -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/docs/yunlecar_calibration_camera_lidar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/docs/yunlecar_calibration_camera_lidar.yaml -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/launch/camera_lidar_calib.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/launch/camera_lidar_calib.launch -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_publisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_publisher/README.md -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_publisher/calibration_publisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_publisher/calibration_publisher.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/camera_lidar2d_offline_calib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/camera_lidar2d_offline_calib.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/chessboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/chessboard.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/chessboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/chessboard.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/common_2d_calib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/common_2d_calib.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/common_2d_calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/common_2d_calib.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/data_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/data_struct.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/image_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/image_window.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/image_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/image_window.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/scan_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/scan_window.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/scan_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/scan_window.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/trans.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_test/trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_test/trans.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/main.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/mainwindow.cpp -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/mainwindow.h -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/nodes/calibration_toolkit/mainwindow.ui -------------------------------------------------------------------------------- /detection/calibration/calibration_camera_lidar/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_camera_lidar/package.xml -------------------------------------------------------------------------------- /detection/calibration/calibration_publisher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_publisher/CMakeLists.txt -------------------------------------------------------------------------------- /detection/calibration/calibration_publisher/launch/rccar_calibration_publisher.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_publisher/launch/rccar_calibration_publisher.launch -------------------------------------------------------------------------------- /detection/calibration/calibration_publisher/launch/rccar_calibration_publisher.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_publisher/launch/rccar_calibration_publisher.launch~ -------------------------------------------------------------------------------- /detection/calibration/calibration_publisher/launch/yunlecar_calibration_publisher.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_publisher/launch/yunlecar_calibration_publisher.launch -------------------------------------------------------------------------------- /detection/calibration/calibration_publisher/launch/yunlecar_calibration_publisher.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_publisher/launch/yunlecar_calibration_publisher.launch~ -------------------------------------------------------------------------------- /detection/calibration/calibration_publisher/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_publisher/package.xml -------------------------------------------------------------------------------- /detection/calibration/calibration_publisher/src/calibration_publisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/calibration_publisher/src/calibration_publisher.cpp -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/CMakeLists.txt -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/README.md -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/docs/20190120_1023_autoware_camera_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/docs/20190120_1023_autoware_camera_calibration.yaml -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/docs/smartcar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/docs/smartcar_logo.png -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/nodes/cameracalibrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/nodes/cameracalibrator.py -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/nodes/cameracheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/nodes/cameracheck.py -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/package.xml -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/scripts/tarfile_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/scripts/tarfile_calibration.py -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/setup.py -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/src/camera_calibration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/src/camera_calibration/calibrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/src/camera_calibration/calibrator.py -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/src/camera_calibration/calibrator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/src/camera_calibration/calibrator.pyc -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/src/camera_calibration/camera_calibrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/src/camera_calibration/camera_calibrator.py -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/src/camera_calibration/camera_calibrator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/src/camera_calibration/camera_calibrator.pyc -------------------------------------------------------------------------------- /detection/calibration/camera_calibration/src/camera_calibration/camera_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/calibration/camera_calibration/src/camera_calibration/camera_checker.py -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/CMakeLists.txt -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/README.md -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/include/joint_pixel_pointcloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/include/joint_pixel_pointcloud.h -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/launch/joint_pixel_pointcloud.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/launch/joint_pixel_pointcloud.launch -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/launch/joint_pixel_pointcloud.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/launch/joint_pixel_pointcloud.launch~ -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/package.xml -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/rviz/perception.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/rviz/perception.rviz -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/src/joint_pixel_pointcloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/src/joint_pixel_pointcloud.cpp -------------------------------------------------------------------------------- /detection/camera_point_fusion/joint_pixel_pointcloud/src/joint_pixel_pointcloud_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/joint_pixel_pointcloud/src/joint_pixel_pointcloud_node.cpp -------------------------------------------------------------------------------- /detection/camera_point_fusion/points2image/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/points2image/CMakeLists.txt -------------------------------------------------------------------------------- /detection/camera_point_fusion/points2image/include/points_image/points_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/points2image/include/points_image/points_image.hpp -------------------------------------------------------------------------------- /detection/camera_point_fusion/points2image/interface.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/points2image/interface.yaml -------------------------------------------------------------------------------- /detection/camera_point_fusion/points2image/launch/points2image.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/points2image/launch/points2image.launch -------------------------------------------------------------------------------- /detection/camera_point_fusion/points2image/lib/points_image/points_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/points2image/lib/points_image/points_image.cpp -------------------------------------------------------------------------------- /detection/camera_point_fusion/points2image/nodes/points2image/points2image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/points2image/nodes/points2image/points2image.cpp -------------------------------------------------------------------------------- /detection/camera_point_fusion/points2image/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/camera_point_fusion/points2image/package.xml -------------------------------------------------------------------------------- /detection/lidar_detection/filter_global_ground/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/filter_global_ground/CMakeLists.txt -------------------------------------------------------------------------------- /detection/lidar_detection/filter_global_ground/include/filter_global_ground/save_map_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/filter_global_ground/include/filter_global_ground/save_map_core.h -------------------------------------------------------------------------------- /detection/lidar_detection/filter_global_ground/launch/test_filter_global_ground.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/filter_global_ground/launch/test_filter_global_ground.launch -------------------------------------------------------------------------------- /detection/lidar_detection/filter_global_ground/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/filter_global_ground/package.xml -------------------------------------------------------------------------------- /detection/lidar_detection/filter_global_ground/src/filter_global_ground_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/filter_global_ground/src/filter_global_ground_core.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/filter_global_ground/src/filter_global_ground_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/filter_global_ground/src/filter_global_ground_node.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/CMakeLists.txt -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/include/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/include/cluster.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/include/lidar_euclidean_cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/include/lidar_euclidean_cluster.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/include/utils.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/launch/lidar_euclidean_cluster.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/launch/lidar_euclidean_cluster.launch -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/package.xml -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/src/cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/src/cluster.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/src/lidar_euclidean_cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/src/lidar_euclidean_cluster.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/src/lidar_euclidean_cluster_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/src/lidar_euclidean_cluster_node.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/src/preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/src/preprocess.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/src/publisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/src/publisher.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_cluster_detector/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_cluster_detector/src/utils.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/CHANGELOG.rst -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/CMakeLists.txt -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/README.md -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/include/visualize_detected_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/include/visualize_detected_objects.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/include/visualize_rects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/include/visualize_rects.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/package.xml -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_detected_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_detected_objects.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_detected_objects_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_detected_objects_main.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_rects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_rects.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_rects_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/detected_objects_visualizer/src/visualize_rects_main.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/CMakeLists.txt -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/README.md -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/include/cluster_hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/include/cluster_hd.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/include/gencolors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/include/gencolors.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/include/gpu_euclidean_clustering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/include/gpu_euclidean_clustering.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/include/lidar_detection_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/include/lidar_detection_core.h -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/launch/Yunlecar_lidar_detection.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/launch/Yunlecar_lidar_detection.launch -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/launch/test_lidar_detection.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/launch/test_lidar_detection.launch -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/package.xml -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/src/cluster_hd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/src/cluster_hd.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/src/gpu_euclidean_clustering.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/src/gpu_euclidean_clustering.cu -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/src/lidar_detection_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/src/lidar_detection_core.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/lidar_detector_HD/lidar_detection/src/lidar_detection_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/lidar_detector_HD/lidar_detection/src/lidar_detection_node.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/CMakeLists.txt -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/README.md -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/cfg/ray_ground_filter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/cfg/ray_ground_filter.cfg -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/include/ray_ground_filter_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/include/ray_ground_filter_core.h -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/launch/RCcar_ray_ground_filter.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/launch/RCcar_ray_ground_filter.launch -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/launch/Yunlecar_ray_ground_filter.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/launch/Yunlecar_ray_ground_filter.launch -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/launch/test_Yunlecar_ray_ground_filter.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/launch/test_Yunlecar_ray_ground_filter.launch -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/package.xml -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/rviz/test_ese.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/rviz/test_ese.rviz -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/src/ray_ground_filter_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/src/ray_ground_filter_core.cpp -------------------------------------------------------------------------------- /detection/lidar_detection/ray_ground_filter/src/ray_ground_filter_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/detection/lidar_detection/ray_ground_filter/src/ray_ground_filter_node.cpp -------------------------------------------------------------------------------- /driver/cv_camera_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/CMakeLists.txt -------------------------------------------------------------------------------- /driver/cv_camera_driver/docs/20190113_1301_smartcar_camera_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/docs/20190113_1301_smartcar_camera_calibration.yaml -------------------------------------------------------------------------------- /driver/cv_camera_driver/include/cv_camera/capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/include/cv_camera/capture.h -------------------------------------------------------------------------------- /driver/cv_camera_driver/include/cv_camera/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/include/cv_camera/driver.h -------------------------------------------------------------------------------- /driver/cv_camera_driver/include/cv_camera/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/include/cv_camera/exception.h -------------------------------------------------------------------------------- /driver/cv_camera_driver/launch/cv_camera_driver.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/launch/cv_camera_driver.launch -------------------------------------------------------------------------------- /driver/cv_camera_driver/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/package.xml -------------------------------------------------------------------------------- /driver/cv_camera_driver/src/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/src/capture.cpp -------------------------------------------------------------------------------- /driver/cv_camera_driver/src/cv_camera_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/src/cv_camera_node.cpp -------------------------------------------------------------------------------- /driver/cv_camera_driver/src/cv_camera_nodelet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/src/cv_camera_nodelet.cpp -------------------------------------------------------------------------------- /driver/cv_camera_driver/src/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/cv_camera_driver/src/driver.cpp -------------------------------------------------------------------------------- /driver/gpio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/CMakeLists.txt -------------------------------------------------------------------------------- /driver/gpio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/README.md -------------------------------------------------------------------------------- /driver/gpio/docs/TX2-j21-pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/docs/TX2-j21-pin.png -------------------------------------------------------------------------------- /driver/gpio/include/jetsonGPIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/include/jetsonGPIO.h -------------------------------------------------------------------------------- /driver/gpio/include/ros_gpio_control/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/include/ros_gpio_control/gpio.h -------------------------------------------------------------------------------- /driver/gpio/launch/gpio.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/launch/gpio.launch -------------------------------------------------------------------------------- /driver/gpio/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/package.xml -------------------------------------------------------------------------------- /driver/gpio/src/gpio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/src/gpio.cpp -------------------------------------------------------------------------------- /driver/gpio/src/gpio_control_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/src/gpio_control_node.cpp -------------------------------------------------------------------------------- /driver/gpio/src/jetsonGPIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/gpio/src/jetsonGPIO.cpp -------------------------------------------------------------------------------- /driver/hall_encoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/hall_encoder/CMakeLists.txt -------------------------------------------------------------------------------- /driver/hall_encoder/launch/hall_encoder_node.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/hall_encoder/launch/hall_encoder_node.launch -------------------------------------------------------------------------------- /driver/hall_encoder/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/hall_encoder/package.xml -------------------------------------------------------------------------------- /driver/hall_encoder/src/hall_encoder_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/hall_encoder/src/hall_encoder_node.cpp -------------------------------------------------------------------------------- /driver/hall_encoder/src/hall_encoder_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/hall_encoder/src/hall_encoder_node.h -------------------------------------------------------------------------------- /driver/odom_imu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/CMakeLists.txt -------------------------------------------------------------------------------- /driver/odom_imu/include/odom_imu/odom_imu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/include/odom_imu/odom_imu.h -------------------------------------------------------------------------------- /driver/odom_imu/include/odom_imu/odom_imu.h.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/include/odom_imu/odom_imu.h.bak -------------------------------------------------------------------------------- /driver/odom_imu/include/odom_imu/user_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/include/odom_imu/user_protocol.h -------------------------------------------------------------------------------- /driver/odom_imu/launch/odom_imu.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/launch/odom_imu.launch -------------------------------------------------------------------------------- /driver/odom_imu/launch/test_odom_imu.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/launch/test_odom_imu.launch -------------------------------------------------------------------------------- /driver/odom_imu/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/package.xml -------------------------------------------------------------------------------- /driver/odom_imu/src/odom_imu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/src/odom_imu.cpp -------------------------------------------------------------------------------- /driver/odom_imu/src/odom_imu.cpp.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/src/odom_imu.cpp.bak -------------------------------------------------------------------------------- /driver/odom_imu/src/odom_imu_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/odom_imu/src/odom_imu_node.cpp -------------------------------------------------------------------------------- /driver/razor_imu_9dof/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | 3 | -------------------------------------------------------------------------------- /driver/razor_imu_9dof/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/CHANGELOG.rst -------------------------------------------------------------------------------- /driver/razor_imu_9dof/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/CMakeLists.txt -------------------------------------------------------------------------------- /driver/razor_imu_9dof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/README.md -------------------------------------------------------------------------------- /driver/razor_imu_9dof/cfg/imu (copy).cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/cfg/imu (copy).cfg -------------------------------------------------------------------------------- /driver/razor_imu_9dof/cfg/imu.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/cfg/imu.cfg -------------------------------------------------------------------------------- /driver/razor_imu_9dof/config/my_razor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/config/my_razor.yaml -------------------------------------------------------------------------------- /driver/razor_imu_9dof/config/my_razor_24.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/config/my_razor_24.yaml -------------------------------------------------------------------------------- /driver/razor_imu_9dof/config/my_razor_30.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/config/my_razor_30.yaml -------------------------------------------------------------------------------- /driver/razor_imu_9dof/config/razor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/config/razor.yaml -------------------------------------------------------------------------------- /driver/razor_imu_9dof/config/razor_diags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/config/razor_diags.yaml -------------------------------------------------------------------------------- /driver/razor_imu_9dof/launch/razor-pub-3.0.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/launch/razor-pub-3.0.launch -------------------------------------------------------------------------------- /driver/razor_imu_9dof/launch/razor-pub-and-display-3-0.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/launch/razor-pub-and-display-3-0.launch -------------------------------------------------------------------------------- /driver/razor_imu_9dof/launch/razor-pub-and-display.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/launch/razor-pub-and-display.launch -------------------------------------------------------------------------------- /driver/razor_imu_9dof/launch/razor-pub.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/launch/razor-pub.launch -------------------------------------------------------------------------------- /driver/razor_imu_9dof/magnetometer_calibration/Matlab/magnetometer_calibration/ellipsoid_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/magnetometer_calibration/Matlab/magnetometer_calibration/ellipsoid_fit.m -------------------------------------------------------------------------------- /driver/razor_imu_9dof/magnetometer_calibration/Matlab/magnetometer_calibration/ellipsoid_fit_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/magnetometer_calibration/Matlab/magnetometer_calibration/ellipsoid_fit_license.txt -------------------------------------------------------------------------------- /driver/razor_imu_9dof/magnetometer_calibration/Matlab/magnetometer_calibration/magnetometer_calibration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/magnetometer_calibration/Matlab/magnetometer_calibration/magnetometer_calibration.m -------------------------------------------------------------------------------- /driver/razor_imu_9dof/magnetometer_calibration/Processing/Magnetometer_calibration/Magnetometer_calibration.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/magnetometer_calibration/Processing/Magnetometer_calibration/Magnetometer_calibration.pde -------------------------------------------------------------------------------- /driver/razor_imu_9dof/magnetometer_calibration/Processing/Magnetometer_calibration/data/Univers-66.vlw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/magnetometer_calibration/Processing/Magnetometer_calibration/data/Univers-66.vlw -------------------------------------------------------------------------------- /driver/razor_imu_9dof/nodes/display_3D_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/nodes/display_3D_visualization.py -------------------------------------------------------------------------------- /driver/razor_imu_9dof/nodes/imu3_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/nodes/imu3_0.py -------------------------------------------------------------------------------- /driver/razor_imu_9dof/nodes/imu_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/nodes/imu_node.py -------------------------------------------------------------------------------- /driver/razor_imu_9dof/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/package.xml -------------------------------------------------------------------------------- /driver/razor_imu_9dof/src/Razor_AHRS/Compass.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/src/Razor_AHRS/Compass.ino -------------------------------------------------------------------------------- /driver/razor_imu_9dof/src/Razor_AHRS/DCM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/src/Razor_AHRS/DCM.ino -------------------------------------------------------------------------------- /driver/razor_imu_9dof/src/Razor_AHRS/Math.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/src/Razor_AHRS/Math.ino -------------------------------------------------------------------------------- /driver/razor_imu_9dof/src/Razor_AHRS/Output.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/src/Razor_AHRS/Output.ino -------------------------------------------------------------------------------- /driver/razor_imu_9dof/src/Razor_AHRS/Razor_AHRS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/src/Razor_AHRS/Razor_AHRS.ino -------------------------------------------------------------------------------- /driver/razor_imu_9dof/src/Razor_AHRS/Sensors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/razor_imu_9dof/src/Razor_AHRS/Sensors.ino -------------------------------------------------------------------------------- /driver/ultrasonic_serial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/ultrasonic_serial/CMakeLists.txt -------------------------------------------------------------------------------- /driver/ultrasonic_serial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/ultrasonic_serial/README.md -------------------------------------------------------------------------------- /driver/ultrasonic_serial/launch/ultrasonic_serial_node.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/ultrasonic_serial/launch/ultrasonic_serial_node.launch -------------------------------------------------------------------------------- /driver/ultrasonic_serial/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/ultrasonic_serial/package.xml -------------------------------------------------------------------------------- /driver/ultrasonic_serial/src/ultrasonic_serial_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/ultrasonic_serial/src/ultrasonic_serial_node.cpp -------------------------------------------------------------------------------- /driver/velodyne/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.tar.gz 3 | *~ 4 | *.user 5 | doc 6 | TAGS 7 | -------------------------------------------------------------------------------- /driver/velodyne/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/.travis.yml -------------------------------------------------------------------------------- /driver/velodyne/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/COPYING -------------------------------------------------------------------------------- /driver/velodyne/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/README.rst -------------------------------------------------------------------------------- /driver/velodyne/velodyne/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne/CHANGELOG.rst -------------------------------------------------------------------------------- /driver/velodyne/velodyne/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne/package.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/CHANGELOG.rst -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/cfg/VelodyneNode.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/cfg/VelodyneNode.cfg -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/include/velodyne_driver/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/include/velodyne_driver/input.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/include/velodyne_driver/ring_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/include/velodyne_driver/ring_sequence.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/launch/nodelet_manager.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/launch/nodelet_manager.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/mainpage.dox -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/nodelet_velodyne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/nodelet_velodyne.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/package.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/driver/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/driver/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/driver/driver.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/driver/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/driver/driver.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/driver/nodelet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/driver/nodelet.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/driver/velodyne_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/driver/velodyne_node.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/lib/input.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/lib/input.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/src/vdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/src/vdump -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/tests/diagnostic_agg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/tests/diagnostic_agg.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/tests/pcap_32e_node_hertz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/tests/pcap_32e_node_hertz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/tests/pcap_32e_nodelet_hertz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/tests/pcap_32e_nodelet_hertz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/tests/pcap_node_hertz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/tests/pcap_node_hertz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/tests/pcap_nodelet_hertz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/tests/pcap_nodelet_hertz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/tests/pcap_vlp16_node_hertz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/tests/pcap_vlp16_node_hertz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_driver/tests/pcap_vlp16_nodelet_hertz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_driver/tests/pcap_vlp16_nodelet_hertz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/CHANGELOG.rst -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/cfg/VelodyneLaserScan.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/cfg/VelodyneLaserScan.cfg -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/nodelets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/nodelets.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/package.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/src/VelodyneLaserScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/src/VelodyneLaserScan.cpp -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/src/VelodyneLaserScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/src/VelodyneLaserScan.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/src/node.cpp -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/src/nodelet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/src/nodelet.cpp -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/tests/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/tests/lazy_subscriber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/tests/lazy_subscriber.cpp -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/tests/lazy_subscriber_node.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/tests/lazy_subscriber_node.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/tests/lazy_subscriber_nodelet.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/tests/lazy_subscriber_nodelet.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/tests/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/tests/system.cpp -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/tests/system_node.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/tests/system_node.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_laserscan/tests/system_nodelet.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_laserscan/tests/system_nodelet.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /driver/velodyne/velodyne_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_msgs/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_msgs/mainpage.dox -------------------------------------------------------------------------------- /driver/velodyne/velodyne_msgs/msg/VelodynePacket.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_msgs/msg/VelodynePacket.msg -------------------------------------------------------------------------------- /driver/velodyne/velodyne_msgs/msg/VelodyneScan.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_msgs/msg/VelodyneScan.msg -------------------------------------------------------------------------------- /driver/velodyne/velodyne_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_msgs/package.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/CHANGELOG.rst -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/cfg/CloudNode.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/cfg/CloudNode.cfg -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/cfg/TransformNode.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/cfg/TransformNode.cfg -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/calibration.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/point_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/point_types.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/rawdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/include/velodyne_pointcloud/rawdata.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/launch/32e_points.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/launch/32e_points.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/launch/VLP-32C_points.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/launch/VLP-32C_points.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/launch/VLP16_points.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/launch/VLP16_points.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/launch/cloud_nodelet.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/launch/cloud_nodelet.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/launch/laserscan_nodelet.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/launch/laserscan_nodelet.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/launch/transform_nodelet.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/launch/transform_nodelet.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/mainpage.dox -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/nodelets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/nodelets.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/package.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/params/32db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/params/32db.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/params/64e_s2.1-sztaki.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/params/64e_s2.1-sztaki.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/params/64e_utexas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/params/64e_utexas.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/params/VLP16_hires_db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/params/VLP16_hires_db.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/params/VLP16db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/params/VLP16db.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/params/VeloView-VLP-32C.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/params/VeloView-VLP-32C.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/params/rviz_points.vcg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/params/rviz_points.vcg -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/scripts/gen_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/scripts/gen_calibration.py -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/cloud_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/cloud_node.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/cloud_nodelet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/cloud_nodelet.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/colors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/colors.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/colors.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/convert.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/convert.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/ringcolors_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/ringcolors_node.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/ringcolors_nodelet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/ringcolors_nodelet.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/transform.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/transform.h -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/transform_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/transform_node.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/conversions/transform_nodelet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/conversions/transform_nodelet.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/lib/calibration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/lib/calibration.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/src/lib/rawdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/src/lib/rawdata.cc -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/32db.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/32db.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/64e_s2.1-sztaki.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/64e_s2.1-sztaki.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/CMakeLists.txt -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/angles-calibrated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/angles-calibrated.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/angles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/angles.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_node_32e_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_node_32e_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_node_64e_s2.1_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_node_64e_s2.1_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_node_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_node_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_node_vlp16_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_node_vlp16_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_32e_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_32e_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_64e_s2.1_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_64e_s2.1_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_vlp16_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/cloud_nodelet_vlp16_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/empty.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/issue_84_float_intensities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/issue_84_float_intensities.yaml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/static_vehicle_tf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/static_vehicle_tf.launch -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/test_calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/test_calibration.cpp -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/test_db_without_intensities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/test_db_without_intensities.xml -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/transform_node_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/transform_node_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/transform_nodelet_hz.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/transform_nodelet_hz.test -------------------------------------------------------------------------------- /driver/velodyne/velodyne_pointcloud/tests/two_nodelet_managers.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/velodyne/velodyne_pointcloud/tests/two_nodelet_managers.test -------------------------------------------------------------------------------- /driver/zed_wrapper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/.gitignore -------------------------------------------------------------------------------- /driver/zed_wrapper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/CMakeLists.txt -------------------------------------------------------------------------------- /driver/zed_wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/README.md -------------------------------------------------------------------------------- /driver/zed_wrapper/cfg/Zed.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/cfg/Zed.cfg -------------------------------------------------------------------------------- /driver/zed_wrapper/launch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/launch/README.md -------------------------------------------------------------------------------- /driver/zed_wrapper/launch/zed.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/launch/zed.launch -------------------------------------------------------------------------------- /driver/zed_wrapper/launch/zed_camera.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/launch/zed_camera.launch -------------------------------------------------------------------------------- /driver/zed_wrapper/launch/zed_camera_nodelet.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/launch/zed_camera_nodelet.launch -------------------------------------------------------------------------------- /driver/zed_wrapper/launch/zed_multi_cam.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/launch/zed_multi_cam.launch -------------------------------------------------------------------------------- /driver/zed_wrapper/launch/zed_multi_gpu.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/launch/zed_multi_gpu.launch -------------------------------------------------------------------------------- /driver/zed_wrapper/launch/zed_no_tf.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/launch/zed_no_tf.launch -------------------------------------------------------------------------------- /driver/zed_wrapper/nodelet_plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/nodelet_plugins.xml -------------------------------------------------------------------------------- /driver/zed_wrapper/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/package.xml -------------------------------------------------------------------------------- /driver/zed_wrapper/records/record_depth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/records/record_depth.sh -------------------------------------------------------------------------------- /driver/zed_wrapper/records/record_stereo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/records/record_stereo.sh -------------------------------------------------------------------------------- /driver/zed_wrapper/src/nodelet/include/zed_wrapper_nodelet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/src/nodelet/include/zed_wrapper_nodelet.hpp -------------------------------------------------------------------------------- /driver/zed_wrapper/src/nodelet/src/zed_wrapper_nodelet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/src/nodelet/src/zed_wrapper_nodelet.cpp -------------------------------------------------------------------------------- /driver/zed_wrapper/src/tools/include/sl_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/src/tools/include/sl_tools.h -------------------------------------------------------------------------------- /driver/zed_wrapper/src/tools/src/sl_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/src/tools/src/sl_tools.cpp -------------------------------------------------------------------------------- /driver/zed_wrapper/src/zed_wrapper_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/src/zed_wrapper_node.cpp -------------------------------------------------------------------------------- /driver/zed_wrapper/srv/reset_odometry.srv: -------------------------------------------------------------------------------- 1 | --- 2 | bool reset_done -------------------------------------------------------------------------------- /driver/zed_wrapper/srv/reset_tracking.srv: -------------------------------------------------------------------------------- 1 | --- 2 | bool reset_done -------------------------------------------------------------------------------- /driver/zed_wrapper/srv/set_initial_pose.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/srv/set_initial_pose.srv -------------------------------------------------------------------------------- /driver/zed_wrapper/srv/start_svo_recording.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/srv/start_svo_recording.srv -------------------------------------------------------------------------------- /driver/zed_wrapper/srv/stop_svo_recording.srv: -------------------------------------------------------------------------------- 1 | --- 2 | bool done 3 | string info 4 | -------------------------------------------------------------------------------- /driver/zed_wrapper/urdf/ZED.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/urdf/ZED.stl -------------------------------------------------------------------------------- /driver/zed_wrapper/urdf/ZEDM.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/urdf/ZEDM.stl -------------------------------------------------------------------------------- /driver/zed_wrapper/urdf/zed.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/urdf/zed.urdf -------------------------------------------------------------------------------- /driver/zed_wrapper/urdf/zedm.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/driver/zed_wrapper/urdf/zedm.urdf -------------------------------------------------------------------------------- /gateway/.gitignore: -------------------------------------------------------------------------------- 1 | src/*.pyc 2 | config/*.ini -------------------------------------------------------------------------------- /gateway/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/CMakeLists.txt -------------------------------------------------------------------------------- /gateway/config/server_config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/config/server_config.ini.example -------------------------------------------------------------------------------- /gateway/launch/gateway.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/launch/gateway.launch -------------------------------------------------------------------------------- /gateway/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/package.xml -------------------------------------------------------------------------------- /gateway/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/app.py -------------------------------------------------------------------------------- /gateway/src/beans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/beans.py -------------------------------------------------------------------------------- /gateway/src/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/common.py -------------------------------------------------------------------------------- /gateway/src/connector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/connector.py -------------------------------------------------------------------------------- /gateway/src/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/monitor.py -------------------------------------------------------------------------------- /gateway/src/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/switch.py -------------------------------------------------------------------------------- /gateway/src/telecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/telecontrol.py -------------------------------------------------------------------------------- /gateway/src/video_rtmp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/video_rtmp_client.py -------------------------------------------------------------------------------- /gateway/src/web_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/src/web_server.py -------------------------------------------------------------------------------- /gateway/test_gateway.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/gateway/test_gateway.launch -------------------------------------------------------------------------------- /launch_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/CMakeLists.txt -------------------------------------------------------------------------------- /launch_package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/README.md -------------------------------------------------------------------------------- /launch_package/launch/smartcar.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/smartcar.launch -------------------------------------------------------------------------------- /launch_package/launch/test_calibration.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/test_calibration.launch -------------------------------------------------------------------------------- /launch_package/launch/test_fusion.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/test_fusion.launch -------------------------------------------------------------------------------- /launch_package/launch/test_local_plannner.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/test_local_plannner.launch -------------------------------------------------------------------------------- /launch_package/launch/test_ndt_localization.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/test_ndt_localization.launch -------------------------------------------------------------------------------- /launch_package/launch/test_perception.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/test_perception.launch -------------------------------------------------------------------------------- /launch_package/launch/test_smartcar.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/test_smartcar.launch -------------------------------------------------------------------------------- /launch_package/launch/yunle_car.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/launch/yunle_car.launch -------------------------------------------------------------------------------- /launch_package/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/package.xml -------------------------------------------------------------------------------- /launch_package/src/welcome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/launch_package/src/welcome.cpp -------------------------------------------------------------------------------- /localization/ndt_localization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/CMakeLists.txt -------------------------------------------------------------------------------- /localization/ndt_localization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/README.md -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_cpu/NormalDistributionsTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_cpu/NormalDistributionsTransform.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_cpu/Octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_cpu/Octree.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_cpu/Registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_cpu/Registration.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_cpu/SymmetricEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_cpu/SymmetricEigenSolver.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_cpu/VoxelGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_cpu/VoxelGrid.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_cpu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_cpu/debug.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/Matrix.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/MatrixDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/MatrixDevice.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/MatrixHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/MatrixHost.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/NormalDistributionsTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/NormalDistributionsTransform.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/Registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/Registration.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/SymmetricEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/SymmetricEigenSolver.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/VoxelGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/VoxelGrid.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/common.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_gpu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_gpu/debug.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/ndt_localization/ndt_localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/ndt_localization/ndt_localization.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/pcl_omp_registration/impl/ndt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/pcl_omp_registration/impl/ndt.hpp -------------------------------------------------------------------------------- /localization/ndt_localization/include/pcl_omp_registration/impl/registration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/pcl_omp_registration/impl/registration.hpp -------------------------------------------------------------------------------- /localization/ndt_localization/include/pcl_omp_registration/ndt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/pcl_omp_registration/ndt.h -------------------------------------------------------------------------------- /localization/ndt_localization/include/pcl_omp_registration/registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/include/pcl_omp_registration/registration.h -------------------------------------------------------------------------------- /localization/ndt_localization/launch/ndt_localization.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/ndt_localization.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/points_to_costmap.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/points_to_costmap.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/smartcar_ndt_localization.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/smartcar_ndt_localization.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/test/camera.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/test/camera.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/test/test_path_planner.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/test/test_path_planner.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/test/test_pure_pursuit.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/test/test_pure_pursuit.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/test/test_ray_ground_filter.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/test/test_ray_ground_filter.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/test_ndt_localization_real.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/test_ndt_localization_real.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/test_ndt_localization_sim.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/test_ndt_localization_sim.launch -------------------------------------------------------------------------------- /localization/ndt_localization/launch/test_yunle_ndt.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/launch/test_yunle_ndt.launch -------------------------------------------------------------------------------- /localization/ndt_localization/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/package.xml -------------------------------------------------------------------------------- /localization/ndt_localization/params/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/params/test.yaml -------------------------------------------------------------------------------- /localization/ndt_localization/params/test.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/params/test.yaml~ -------------------------------------------------------------------------------- /localization/ndt_localization/rviz/smartcar_test.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/rviz/smartcar_test.rviz -------------------------------------------------------------------------------- /localization/ndt_localization/rviz/test.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/rviz/test.rviz -------------------------------------------------------------------------------- /localization/ndt_localization/rviz/test_ndt_localization.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/rviz/test_ndt_localization.rviz -------------------------------------------------------------------------------- /localization/ndt_localization/src/ndt_localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/src/ndt_localization.cpp -------------------------------------------------------------------------------- /localization/ndt_localization/src/ndt_localization_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/src/ndt_localization_node.cpp -------------------------------------------------------------------------------- /localization/ndt_localization/src/ndt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/src/ndt_test.cpp -------------------------------------------------------------------------------- /localization/ndt_localization/src/tf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/src/tf_test.cpp -------------------------------------------------------------------------------- /localization/ndt_localization/trajectories/2018-10-22-19-44-24.traj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/trajectories/2018-10-22-19-44-24.traj -------------------------------------------------------------------------------- /localization/ndt_localization/trajectories/2018-10-22-20-16-18.traj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/localization/ndt_localization/trajectories/2018-10-22-20-16-18.traj -------------------------------------------------------------------------------- /map/gen_costmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/CMakeLists.txt -------------------------------------------------------------------------------- /map/gen_costmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/README.md -------------------------------------------------------------------------------- /map/gen_costmap/cfg/gen_costmap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/cfg/gen_costmap.cfg -------------------------------------------------------------------------------- /map/gen_costmap/cfg/gen_costmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/cfg/gen_costmap.yaml -------------------------------------------------------------------------------- /map/gen_costmap/launch/gen_costmap.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/launch/gen_costmap.launch -------------------------------------------------------------------------------- /map/gen_costmap/launch/test_gen_costmap.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/launch/test_gen_costmap.launch -------------------------------------------------------------------------------- /map/gen_costmap/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/package.xml -------------------------------------------------------------------------------- /map/gen_costmap/src/gen_costmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/gen_costmap/src/gen_costmap.cpp -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/CMakeLists.txt -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/README.md -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/launch/extract_single.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/launch/extract_single.launch -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/launch/extract_whole.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/launch/extract_whole.launch -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/map_file/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/map_file/map.yaml -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/package.xml -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_0.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_1.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_2.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_3.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_4.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_5.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_6.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_7.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_8.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/cross_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/cross_9.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/lane_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/lane_0.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/lane_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/lane_1.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/lane_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/lane_2.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/lane_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/lane_3.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/lane_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/lane_4.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/lane_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/lane_5.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_RCcar/lane_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_RCcar/lane_6.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_0.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_1.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_2.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_3.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_4.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_5.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_6.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_7.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_8.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/cross_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/cross_9.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/lane_0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/lane_0.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/lane_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/lane_1.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/lane_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/lane_2.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/lane_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/lane_3.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/lane_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/lane_4.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/lane_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/lane_5.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/path_file_Yunlecar/lane_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/path_file_Yunlecar/lane_6.csv -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/rviz/path190218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/rviz/path190218.png -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/rviz/test.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/rviz/test.rviz -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/src/extract_lane_cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/src/extract_lane_cross.cpp -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/src/extract_single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/src/extract_single.cpp -------------------------------------------------------------------------------- /map/map_tools/extract_globalpath/yunlecar_zetong_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/extract_globalpath/yunlecar_zetong_path.png -------------------------------------------------------------------------------- /map/map_tools/map_filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/map_filter/CMakeLists.txt -------------------------------------------------------------------------------- /map/map_tools/map_filter/cfg/filter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/map_filter/cfg/filter.cfg -------------------------------------------------------------------------------- /map/map_tools/map_filter/launch/map_filter.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/map_filter/launch/map_filter.launch -------------------------------------------------------------------------------- /map/map_tools/map_filter/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/map_filter/package.xml -------------------------------------------------------------------------------- /map/map_tools/map_filter/rviz/rviz.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/map_filter/rviz/rviz.rviz -------------------------------------------------------------------------------- /map/map_tools/map_filter/src/map_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/map_tools/map_filter/src/map_filter.cpp -------------------------------------------------------------------------------- /map/ndt_mapping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/CMakeLists.txt -------------------------------------------------------------------------------- /map/ndt_mapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/README.md -------------------------------------------------------------------------------- /map/ndt_mapping/include/fast_ndt_mapping/LidarMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/fast_ndt_mapping/LidarMapping.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_cpu/NormalDistributionsTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_cpu/NormalDistributionsTransform.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_cpu/Octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_cpu/Octree.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_cpu/Registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_cpu/Registration.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_cpu/SymmetricEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_cpu/SymmetricEigenSolver.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_cpu/VoxelGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_cpu/VoxelGrid.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_cpu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_cpu/debug.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/Matrix.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/MatrixDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/MatrixDevice.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/MatrixHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/MatrixHost.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/NormalDistributionsTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/NormalDistributionsTransform.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/Registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/Registration.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/SymmetricEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/SymmetricEigenSolver.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/VoxelGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/VoxelGrid.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/common.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/ndt_gpu/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/ndt_gpu/debug.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/pcl_omp_registration/impl/ndt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/pcl_omp_registration/impl/ndt.hpp -------------------------------------------------------------------------------- /map/ndt_mapping/include/pcl_omp_registration/impl/registration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/pcl_omp_registration/impl/registration.hpp -------------------------------------------------------------------------------- /map/ndt_mapping/include/pcl_omp_registration/ndt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/pcl_omp_registration/ndt.h -------------------------------------------------------------------------------- /map/ndt_mapping/include/pcl_omp_registration/registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/include/pcl_omp_registration/registration.h -------------------------------------------------------------------------------- /map/ndt_mapping/launch/collect_data.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/launch/collect_data.launch -------------------------------------------------------------------------------- /map/ndt_mapping/launch/fast_ndt_carla.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/launch/fast_ndt_carla.launch -------------------------------------------------------------------------------- /map/ndt_mapping/launch/fast_ndt_mapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/launch/fast_ndt_mapping.launch -------------------------------------------------------------------------------- /map/ndt_mapping/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/package.xml -------------------------------------------------------------------------------- /map/ndt_mapping/params/params_carla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/params/params_carla.yaml -------------------------------------------------------------------------------- /map/ndt_mapping/params/params_ndt_mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/params/params_ndt_mapping.yaml -------------------------------------------------------------------------------- /map/ndt_mapping/rviz/test.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/rviz/test.rviz -------------------------------------------------------------------------------- /map/ndt_mapping/src/LidarMapping.1backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/src/LidarMapping.1backup.cpp -------------------------------------------------------------------------------- /map/ndt_mapping/src/LidarMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/src/LidarMapping.cpp -------------------------------------------------------------------------------- /map/ndt_mapping/src/fast_ndt_mapping_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/ndt_mapping/src/fast_ndt_mapping_node.cpp -------------------------------------------------------------------------------- /map/static_map/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/CMakeLists.txt -------------------------------------------------------------------------------- /map/static_map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/README.md -------------------------------------------------------------------------------- /map/static_map/launch/filter_ground.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/launch/filter_ground.launch -------------------------------------------------------------------------------- /map/static_map/launch/load_densy_map.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/launch/load_densy_map.launch -------------------------------------------------------------------------------- /map/static_map/map_file/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/map_file/map.yaml -------------------------------------------------------------------------------- /map/static_map/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/package.xml -------------------------------------------------------------------------------- /map/static_map/src/static_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/src/static_map.cpp -------------------------------------------------------------------------------- /map/static_map/src/static_map_densy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/map/static_map/src/static_map_densy.cpp -------------------------------------------------------------------------------- /msgs/autoware_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/AccelCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/AccelCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/AdjustXY.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/AdjustXY.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/BrakeCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/BrakeCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/CameraExtrinsic.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/CameraExtrinsic.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/Centroids.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/Centroids.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/CloudCluster.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/CloudCluster.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/CloudClusterArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/CloudClusterArray.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ColorSet.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ColorSet.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ControlCommand.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ControlCommand.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ControlCommandStamped.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ControlCommandStamped.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/DTLane.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/DTLane.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/DetectedObject.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/DetectedObject.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/DetectedObjectArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/DetectedObjectArray.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ExtractedPosition.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ExtractedPosition.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/GeometricRectangle.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/GeometricRectangle.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ICPStat.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ICPStat.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ImageLaneObjects.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ImageLaneObjects.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ImageObj.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ImageObj.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ImageObjRanged.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ImageObjRanged.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ImageObjTracked.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ImageObjTracked.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ImageObjects.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ImageObjects.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ImageRect.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ImageRect.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ImageRectRanged.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ImageRectRanged.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/IndicatorCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/IndicatorCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/LampCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/LampCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/Lane.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/Lane.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/LaneArray.msg: -------------------------------------------------------------------------------- 1 | Lane[] lanes -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/NDTStat.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/NDTStat.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ObjLabel.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ObjLabel.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ObjPose.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ObjPose.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/PointsImage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/PointsImage.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ProjectionMatrix.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ProjectionMatrix.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/RemoteCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/RemoteCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ScanImage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ScanImage.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/Signals.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/Signals.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/State.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/State.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/StateCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/StateCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/SteerCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/SteerCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/SyncTimeDiff.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/SyncTimeDiff.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/SyncTimeMonitor.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/SyncTimeMonitor.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/TrafficLight.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/TrafficLight.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/TrafficLightResult.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/TrafficLightResult.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/TrafficLightResultArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/TrafficLightResultArray.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/TunedResult.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/TunedResult.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/ValueSet.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/ValueSet.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/VehicleCmd.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/VehicleCmd.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/VehicleStatus.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/VehicleStatus.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/VscanTracked.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/VscanTracked.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/VscanTrackedArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/VscanTrackedArray.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/Waypoint.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/Waypoint.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/msg/WaypointState.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/msg/WaypointState.msg -------------------------------------------------------------------------------- /msgs/autoware_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/autoware_msgs/package.xml -------------------------------------------------------------------------------- /msgs/can_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/can_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /msgs/can_msgs/msg/ECU.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/can_msgs/msg/ECU.msg -------------------------------------------------------------------------------- /msgs/can_msgs/msg/Feedback.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/can_msgs/msg/Feedback.msg -------------------------------------------------------------------------------- /msgs/can_msgs/msg/TeleControl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/can_msgs/msg/TeleControl.msg -------------------------------------------------------------------------------- /msgs/can_msgs/msg/TeleReport.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/can_msgs/msg/TeleReport.msg -------------------------------------------------------------------------------- /msgs/can_msgs/msg/battery.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/msgs/can_msgs/msg/battery.msg -------------------------------------------------------------------------------- /msgs/can_msgs/msg/brake.msg: -------------------------------------------------------------------------------- 1 | bool brake -------------------------------------------------------------------------------- /pics/car1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/pics/car1.jpeg -------------------------------------------------------------------------------- /pics/car2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/pics/car2.jpeg -------------------------------------------------------------------------------- /pics/底盘尺寸图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/pics/底盘尺寸图.png -------------------------------------------------------------------------------- /pics/整体图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/pics/整体图.png -------------------------------------------------------------------------------- /pics/框架图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/pics/框架图.png -------------------------------------------------------------------------------- /pics/线控底盘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFXiang/4WD_Smart_Car/HEAD/pics/线控底盘.png --------------------------------------------------------------------------------