├── CV_Cam.py ├── LICENSE ├── README.md ├── Runge_Kutta.m ├── bag2img.py ├── bagtomp4_chatgpt.py ├── bbox_vis.py ├── cam_16bit_ros.py ├── compressed_to_raw.py ├── control_jetbot_imu.py ├── csvtobag_IMU.py ├── cv_cam ├── CMakeLists.txt ├── package.xml └── src │ └── cv_cam.cpp ├── cv_cam_16bit.py ├── cv_cam_ros.py ├── cv_cam_ros ├── CMakeLists.txt ├── launch │ └── cv_cam.launch ├── package.xml └── src │ └── cv_cam.cpp ├── cv_images_to_mp4.py ├── dae_line_remover.py ├── filename_convert.py ├── gazebo_gt_pub.py ├── gazebo_to_path_and_path_frame.py ├── gt_vision_pose.py ├── image_GPS_log.py ├── image_name_converting.py ├── image_name_converting_and_resizing.py ├── image_splitter_by_chatGPT.py ├── images_to_rospub.py ├── labeling_edit.py ├── labeling_edit_chatGPT.py ├── lio_eval_new ├── README.md ├── calc_average.py ├── cpu_calct_loc_ptnum_monitor.py ├── dataset_auto_record_lio.py ├── evo_autorun.py ├── evo_autorun_rpe.py ├── livox_to_ouster.py ├── mulran_gt_to_tum.py ├── ncd_gt_to_tum.py ├── ntu_viral_gt_to_tum.py ├── run_adalio.sh ├── run_dlio.sh ├── run_dlo.sh ├── run_everything.sh ├── run_fast_lio.sh ├── run_genz_icp.sh ├── run_ig_lio.sh ├── run_kiss_icp.sh ├── run_liosam.sh ├── set_2022hilti_result_format.py ├── show_condition_number.py └── subt_mrs_gt_to_tum.py ├── lio_eval_ntuviral_matlab ├── README.md ├── combteeth.m ├── evaluate_all.m ├── evaluate_one.m ├── plot_localizability.m ├── plot_vel_acc_bias.m ├── quatconv.m ├── tightfig.m ├── traj_align.m ├── trans_B2prism.csv └── vecitp.m ├── lio_eval_set_old ├── calc_average.py ├── copy_hilti_gt_files.py ├── cpu_calct_loc_ptnum_monitor.py ├── dataset_auto_record_lio.py ├── file_mover.py ├── folder_gen.py ├── matlab_hilti │ ├── README.md │ ├── combteeth.m │ ├── evaluate_all.m │ ├── evaluate_one.m │ ├── plot_localizability.m │ ├── plot_vel_acc_bias.m │ ├── quatconv.m │ ├── tightfig.m │ ├── traj_align.m │ ├── trans_B2prism.csv │ └── vecitp.m ├── matlab_ntu │ ├── README.md │ ├── combteeth.m │ ├── evaluate_all.m │ ├── evaluate_one.m │ ├── plot_localizability.m │ ├── plot_vel_acc_bias.m │ ├── quatconv.m │ ├── tightfig.m │ ├── traj_align.m │ ├── trans_B2prism.csv │ └── vecitp.m └── rename_folder.py ├── marker_path_length.py ├── merge_all_bagfiles.py ├── mp4_to_ros.py ├── mp4tobag.py ├── nav_odometry_bag_to_txt.py ├── nav_path_length.py ├── octomap_grapher ├── CMakeLists.txt ├── launch │ └── grapher.launch ├── package.xml └── src │ └── main.cpp ├── octopus ├── CMakeLists.txt ├── package.xml └── src │ ├── main.cpp │ ├── main2.cpp │ └── main3.cpp ├── path_bag_to_txt.py ├── python_terminal.py ├── raw_to_compressed.py ├── rgb2gray.py ├── rgb2rgba_texture.py ├── ros_img_callback_save.py ├── ros_picam.py ├── rosbag_image_to_gif_chatgpt.py ├── rosbag_topic_name_changer.py ├── rviz_path.py ├── ser_pub_odom_sub_cmd.py ├── ser_rec_test.py ├── ser_sub_odom_pub_cmd.py ├── ser_trans_test.py ├── slam_vision_pose.py ├── slam_vision_pose_tf.py ├── tf_and_vision.tar ├── tf_and_vision.zip ├── tf_broadcaster.py └── vio_tf.cpp /CV_Cam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/CV_Cam.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/README.md -------------------------------------------------------------------------------- /Runge_Kutta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/Runge_Kutta.m -------------------------------------------------------------------------------- /bag2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/bag2img.py -------------------------------------------------------------------------------- /bagtomp4_chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/bagtomp4_chatgpt.py -------------------------------------------------------------------------------- /bbox_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/bbox_vis.py -------------------------------------------------------------------------------- /cam_16bit_ros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cam_16bit_ros.py -------------------------------------------------------------------------------- /compressed_to_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/compressed_to_raw.py -------------------------------------------------------------------------------- /control_jetbot_imu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/control_jetbot_imu.py -------------------------------------------------------------------------------- /csvtobag_IMU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/csvtobag_IMU.py -------------------------------------------------------------------------------- /cv_cam/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam/CMakeLists.txt -------------------------------------------------------------------------------- /cv_cam/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam/package.xml -------------------------------------------------------------------------------- /cv_cam/src/cv_cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam/src/cv_cam.cpp -------------------------------------------------------------------------------- /cv_cam_16bit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam_16bit.py -------------------------------------------------------------------------------- /cv_cam_ros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam_ros.py -------------------------------------------------------------------------------- /cv_cam_ros/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam_ros/CMakeLists.txt -------------------------------------------------------------------------------- /cv_cam_ros/launch/cv_cam.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam_ros/launch/cv_cam.launch -------------------------------------------------------------------------------- /cv_cam_ros/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam_ros/package.xml -------------------------------------------------------------------------------- /cv_cam_ros/src/cv_cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_cam_ros/src/cv_cam.cpp -------------------------------------------------------------------------------- /cv_images_to_mp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/cv_images_to_mp4.py -------------------------------------------------------------------------------- /dae_line_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/dae_line_remover.py -------------------------------------------------------------------------------- /filename_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/filename_convert.py -------------------------------------------------------------------------------- /gazebo_gt_pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/gazebo_gt_pub.py -------------------------------------------------------------------------------- /gazebo_to_path_and_path_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/gazebo_to_path_and_path_frame.py -------------------------------------------------------------------------------- /gt_vision_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/gt_vision_pose.py -------------------------------------------------------------------------------- /image_GPS_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/image_GPS_log.py -------------------------------------------------------------------------------- /image_name_converting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/image_name_converting.py -------------------------------------------------------------------------------- /image_name_converting_and_resizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/image_name_converting_and_resizing.py -------------------------------------------------------------------------------- /image_splitter_by_chatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/image_splitter_by_chatGPT.py -------------------------------------------------------------------------------- /images_to_rospub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/images_to_rospub.py -------------------------------------------------------------------------------- /labeling_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/labeling_edit.py -------------------------------------------------------------------------------- /labeling_edit_chatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/labeling_edit_chatGPT.py -------------------------------------------------------------------------------- /lio_eval_new/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/README.md -------------------------------------------------------------------------------- /lio_eval_new/calc_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/calc_average.py -------------------------------------------------------------------------------- /lio_eval_new/cpu_calct_loc_ptnum_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/cpu_calct_loc_ptnum_monitor.py -------------------------------------------------------------------------------- /lio_eval_new/dataset_auto_record_lio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/dataset_auto_record_lio.py -------------------------------------------------------------------------------- /lio_eval_new/evo_autorun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/evo_autorun.py -------------------------------------------------------------------------------- /lio_eval_new/evo_autorun_rpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/evo_autorun_rpe.py -------------------------------------------------------------------------------- /lio_eval_new/livox_to_ouster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/livox_to_ouster.py -------------------------------------------------------------------------------- /lio_eval_new/mulran_gt_to_tum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/mulran_gt_to_tum.py -------------------------------------------------------------------------------- /lio_eval_new/ncd_gt_to_tum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/ncd_gt_to_tum.py -------------------------------------------------------------------------------- /lio_eval_new/ntu_viral_gt_to_tum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/ntu_viral_gt_to_tum.py -------------------------------------------------------------------------------- /lio_eval_new/run_adalio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_adalio.sh -------------------------------------------------------------------------------- /lio_eval_new/run_dlio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_dlio.sh -------------------------------------------------------------------------------- /lio_eval_new/run_dlo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_dlo.sh -------------------------------------------------------------------------------- /lio_eval_new/run_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_everything.sh -------------------------------------------------------------------------------- /lio_eval_new/run_fast_lio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_fast_lio.sh -------------------------------------------------------------------------------- /lio_eval_new/run_genz_icp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_genz_icp.sh -------------------------------------------------------------------------------- /lio_eval_new/run_ig_lio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_ig_lio.sh -------------------------------------------------------------------------------- /lio_eval_new/run_kiss_icp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_kiss_icp.sh -------------------------------------------------------------------------------- /lio_eval_new/run_liosam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/run_liosam.sh -------------------------------------------------------------------------------- /lio_eval_new/set_2022hilti_result_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/set_2022hilti_result_format.py -------------------------------------------------------------------------------- /lio_eval_new/show_condition_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/show_condition_number.py -------------------------------------------------------------------------------- /lio_eval_new/subt_mrs_gt_to_tum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_new/subt_mrs_gt_to_tum.py -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/README.md -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/combteeth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/combteeth.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/evaluate_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/evaluate_all.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/evaluate_one.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/evaluate_one.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/plot_localizability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/plot_localizability.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/plot_vel_acc_bias.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/plot_vel_acc_bias.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/quatconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/quatconv.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/tightfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/tightfig.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/traj_align.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/traj_align.m -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/trans_B2prism.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/trans_B2prism.csv -------------------------------------------------------------------------------- /lio_eval_ntuviral_matlab/vecitp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_ntuviral_matlab/vecitp.m -------------------------------------------------------------------------------- /lio_eval_set_old/calc_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/calc_average.py -------------------------------------------------------------------------------- /lio_eval_set_old/copy_hilti_gt_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/copy_hilti_gt_files.py -------------------------------------------------------------------------------- /lio_eval_set_old/cpu_calct_loc_ptnum_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/cpu_calct_loc_ptnum_monitor.py -------------------------------------------------------------------------------- /lio_eval_set_old/dataset_auto_record_lio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/dataset_auto_record_lio.py -------------------------------------------------------------------------------- /lio_eval_set_old/file_mover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/file_mover.py -------------------------------------------------------------------------------- /lio_eval_set_old/folder_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/folder_gen.py -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/README.md -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/combteeth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/combteeth.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/evaluate_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/evaluate_all.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/evaluate_one.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/evaluate_one.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/plot_localizability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/plot_localizability.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/plot_vel_acc_bias.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/plot_vel_acc_bias.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/quatconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/quatconv.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/tightfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/tightfig.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/traj_align.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/traj_align.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/trans_B2prism.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/trans_B2prism.csv -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_hilti/vecitp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_hilti/vecitp.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/README.md -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/combteeth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/combteeth.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/evaluate_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/evaluate_all.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/evaluate_one.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/evaluate_one.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/plot_localizability.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/plot_localizability.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/plot_vel_acc_bias.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/plot_vel_acc_bias.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/quatconv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/quatconv.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/tightfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/tightfig.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/traj_align.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/traj_align.m -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/trans_B2prism.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/trans_B2prism.csv -------------------------------------------------------------------------------- /lio_eval_set_old/matlab_ntu/vecitp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/matlab_ntu/vecitp.m -------------------------------------------------------------------------------- /lio_eval_set_old/rename_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/lio_eval_set_old/rename_folder.py -------------------------------------------------------------------------------- /marker_path_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/marker_path_length.py -------------------------------------------------------------------------------- /merge_all_bagfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/merge_all_bagfiles.py -------------------------------------------------------------------------------- /mp4_to_ros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/mp4_to_ros.py -------------------------------------------------------------------------------- /mp4tobag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/mp4tobag.py -------------------------------------------------------------------------------- /nav_odometry_bag_to_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/nav_odometry_bag_to_txt.py -------------------------------------------------------------------------------- /nav_path_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/nav_path_length.py -------------------------------------------------------------------------------- /octomap_grapher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octomap_grapher/CMakeLists.txt -------------------------------------------------------------------------------- /octomap_grapher/launch/grapher.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octomap_grapher/launch/grapher.launch -------------------------------------------------------------------------------- /octomap_grapher/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octomap_grapher/package.xml -------------------------------------------------------------------------------- /octomap_grapher/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octomap_grapher/src/main.cpp -------------------------------------------------------------------------------- /octopus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octopus/CMakeLists.txt -------------------------------------------------------------------------------- /octopus/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octopus/package.xml -------------------------------------------------------------------------------- /octopus/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octopus/src/main.cpp -------------------------------------------------------------------------------- /octopus/src/main2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octopus/src/main2.cpp -------------------------------------------------------------------------------- /octopus/src/main3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/octopus/src/main3.cpp -------------------------------------------------------------------------------- /path_bag_to_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/path_bag_to_txt.py -------------------------------------------------------------------------------- /python_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/python_terminal.py -------------------------------------------------------------------------------- /raw_to_compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/raw_to_compressed.py -------------------------------------------------------------------------------- /rgb2gray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/rgb2gray.py -------------------------------------------------------------------------------- /rgb2rgba_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/rgb2rgba_texture.py -------------------------------------------------------------------------------- /ros_img_callback_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/ros_img_callback_save.py -------------------------------------------------------------------------------- /ros_picam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/ros_picam.py -------------------------------------------------------------------------------- /rosbag_image_to_gif_chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/rosbag_image_to_gif_chatgpt.py -------------------------------------------------------------------------------- /rosbag_topic_name_changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/rosbag_topic_name_changer.py -------------------------------------------------------------------------------- /rviz_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/rviz_path.py -------------------------------------------------------------------------------- /ser_pub_odom_sub_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/ser_pub_odom_sub_cmd.py -------------------------------------------------------------------------------- /ser_rec_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/ser_rec_test.py -------------------------------------------------------------------------------- /ser_sub_odom_pub_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/ser_sub_odom_pub_cmd.py -------------------------------------------------------------------------------- /ser_trans_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/ser_trans_test.py -------------------------------------------------------------------------------- /slam_vision_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/slam_vision_pose.py -------------------------------------------------------------------------------- /slam_vision_pose_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/slam_vision_pose_tf.py -------------------------------------------------------------------------------- /tf_and_vision.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/tf_and_vision.tar -------------------------------------------------------------------------------- /tf_and_vision.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/tf_and_vision.zip -------------------------------------------------------------------------------- /tf_broadcaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/tf_broadcaster.py -------------------------------------------------------------------------------- /vio_tf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engcang/utility_codes/HEAD/vio_tf.cpp --------------------------------------------------------------------------------