SimGAN
Pytorch Implementation of SimGAN: Hybrid Simulator Identification for Domain Adaptation via Adversarial Reinforcement L…
LeGO-LOAM, LIO-SAM, LVI-SAM, FAST-LIO2, Faster-LIO, VoxelMap, R3LIVE, Point-LIO, KISS-ICP, DLO, DLIO, Ada-LIO, PV-LIO,…
git clone https://github.com/engcang/SLAM-application.gitengcang/SLAM-applicationvideo: Lego-LOAM vs LIO-SAM vs LVI-SAMvideo2: LIO-SAM vs LVI-SAMvideo3: LIO-SAM vs FAST-LIO2video4: FAST-LIO2 vs Livox-mapping vs LOAM-Livox using Livox Mid-70 LiDAR, real-worldvideo5: FAST-LIO2 in the building with narrow stairs using Ouster OS0-128, real-worldvideo6: FAST-LIO2 in the narrow tunnels using Ouster OS0-128 on the UAV (drone)video7: Faster-LIO vs FAST-LIO in the building with narrow stairs using Ouster OS0-128, real-worldvideo8: VoxelMap in the building using Intel Realsense L515, real-worldvideo9: R3LIVE in the building and around the building using Livox Mid-70 LiDAR, FLIR Blackfly S, Pixhawk4 mini, real-worldvideo10: FAST-LIO2 vs Ada-LIO vs Point-LIO vs KISS-ICP in the building with narrow stairs, real-worldvideo11: FAST-LIO2 vs Ada-LIO in Gazebo challenging environmentsvideo12: DLO vs FAST-LIO2video13: DLO vs DLIO vs Ada-LIO vs FAST-LIO2video15: Ada-LIO vs PV-LIO vs SLAMeshvideo16: Ada-LIO vs PV-LIOvideo17: Ada-LIO vs ImMeshvideo14: FAST-LIO-MULTI bundle update vs asynchronous updateCommon packages
$ sudo apt-get install -y ros-noetic-navigation ros-noetic-robot-localization ros-noetic-robot-state-publisher
[CMake] version should be more recent than 3.20.5 for CT-ICP
$ wget https://github.com/Kitware/CMake/archive/refs/tags/v3.31.3.tar.gz $ tar zxf v3.31.3.tar.gz $ cd CMake-3.31.3 $ ./bootstrap $ make $ sudo make install
GTSAM for LVI-SAM and LIO-SAM
$ wget -O gtsam.zip https://github.com/borglab/gtsam/archive/4.0.2.zip $ unzip gtsam.zip $ cd gtsam-4.0.2/ $ mkdir build && cd build $ cmake -DGTSAM_BUILD_WITH_MARCH_NATIVE=OFF -DGTSAM_USE_SYSTEM_EIGEN=ON .. $ sudo make install -j8
Ceres solver for LVI-SAM, SLAMesh, and SLICT1.0
$ sudo apt-get install -y cmake libgoogle-glog-dev libatlas-base-dev libsuitesparse-dev $ wget http://ceres-solver.org/ceres-solver-1.14.0.tar.gz #LVI-SAM $ wget http://ceres-solver.org/ceres-solver-2.1.0.tar.gz #SLAMesh, SLICT1.0 $ tar zxf ceres-solver-1.14.0.tar.gz #LVI-SAM $ tar zxf ceres-solver-2.1.0.tar.gz #SLAMesh, SLICT1.0 $ mkdir ceres-bin $ mkdir solver && cd ceres-bin $ cmake ../ceres-solver-1.14.0 -DEXPORT_BUILD_DIR=ON -DCMAKE_INSTALL_PREFIX="../solver" #good for build without being root privileged and at wanted directory $ make -j8 # 8 : number of cores $ make test $ make install
CGAL and pcl-tools for R3LIVE
$ sudo apt install libcgal-dev pcl-tools Optionally, $ sudo apt install meshlab
glog, g++-9 and gcc-9 for Faster-LIO
$ sudo apt-get install libgoogle-glog-dev $ sudo add-apt-repository ppa:ubuntu-toolchain-r/test $ sudo apt update $ sudo apt install gcc-9 g++-9 $ sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-9
Ouster-ros package cannot be built with gcc and g++ with the version higher than 6,ouster-ros,
catkin b -DCMAKE_C_COMPILER=gcc-6 -DCMAKE_CXX_COMPILER=g++-6 -DCMAKE_BUILD_TYPE=Release
$ cd ~/your_workspace/src $ git clone https://github.com/RobustFieldAutonomyLab/LeGO-LOAM.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ sudo apt install libomp-dev libpcl-dev libeigen3-dev $ cd ~/your_workspace/src $ git clone https://github.com/vectr-ucla/direct_lidar_odometry.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
CT-ICP
$ wget https://github.com/Kitware/CMake/archive/refs/tags/v3.31.3.tar.gz $ tar zxf v3.31.3.tar.gz $ cd CMake-3.31.3 $ ./bootstrap $ make $ sudo make install
$ cd <OUTSIDE_OF_WORKSPACE_BUT_SOMEWHERE_ELSE> $ git clone https://github.com/jedeschaud/ct_icp $ cd ct_icp $ mkdir .cmake-build-superbuild $ cd .cmake-build-superbuild $ cmake ../superbuild $ cmake --build . --config Release $ cd .. $ mkdir cmake-build-release $ cd cmake-build-release $ cmake .. -DCMAKE_BUILD_TYPE=Release $ cmake --build . --target install --config Release --parallel 12 $ cd .. $ cd ros/roscore $ mkdir cmake-build-release && cd cmake-build-release $ cmake .. -DCMAKE_BUILD_TYPE=Release $ cmake --build . --target install --config Release --parallel 12 $ cd <path-to-your-catkin-workspace>/src $ ln -s <path-to-ct_icp-git-project>/ros/catkin_ws/ct_icp_odometry ct_icp_odometry $ ln -s <path-to-ct_icp-git-project>/ros/catkin_ws/slam_roscore slam_roscore $ cd .. $ catkin build -DSUPERBUILD_INSTALL_DIR=<path-to-superbuild-install-dir> >> This directory is <CT_ICP_GIT_CLONED_PATH>/ct_icp/install
gcc and g++ with the version higher than 9$ cd ~/your_workspace/src $ git clone https://github.com/PRBonn/kiss-icp.git $ git reset --hard 460c6f2 $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc-9 -DCMAKE_CXX_COMPILER=g++-9
gcc and g++ with the version higher than 9$ cd ~/your_workspace/src $ git clone https://github.com/cocel-postech/genz-icp $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=gcc-9 -DCMAKE_CXX_COMPILER=g++-9
$ cd ~/your_workspace/src $ git clone https://github.com/TixiaoShan/LIO-SAM.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ cd ~/your_workspace/src $ git clone https://github.com/TixiaoShan/LVI-SAM.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
OpenCV 4.X, edit LVI-SAM/src/visual_odometry/visual_loop/ThirdParty/DVision/BRIEF.cpp:53// cv::cvtColor(image, aux, CV_RGB2GRAY); cv::cvtColor(image, aux, cv::COLOR_RGB2GRAY);
$ cd ~/your_workspace/src $ git clone https://github.com/Livox-SDK/livox_ros_driver.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release $ cd ~/your_workspace/src $ git clone --recursive https://github.com/hku-mars/FAST_LIO.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ cd ~/your_workspace/src $ git clone https://github.com/gaoxiang12/faster-lio.git $ cd faster-lio/thirdparty $ tar -xvf tbb2018_20170726oss_lin.tgz $ cd ~/your_workspace $ catkin build -DCUSTOM_TBB_DIR=$(pwd)/src/faster-lio/thirdparty/tbb2018_20170726oss -DCMAKE_BUILD_TYPE=Release
ARM architecture (e.g., Jetson Xavier)$ cd ~/your_workspace/src
$ git clone https://github.com/gaoxiang12/faster-lio.git
$ cd faster-lio/thirdparty
$ git clone https://github.com/syoyo/tbb-aarch64
$ cd tbb-aarch64
$ ./scripts/bootstrap-aarch64-linux.sh
$ cd build-aarch64
$ make && make install
$ gedit faster-lio/cmake/packages.cmake
Edit line 13 as:
#set(TBB2018_LIBRARY_DIR "${CUSTOM_TBB_DIR}/lib/intel64/gcc4.7")
set(TBB2018_LIBRARY_DIR "${CUSTOM_TBB_DIR}/lib")
$ cd ~/your_workspace
$ catkin build -DCUSTOM_TBB_DIR=$(pwd)/src/faster-lio/thirdparty/tbb-aarch64/dist -DCMAKE_BUILD_TYPE=Release
$ cd ~/your_workspace/src $ git clone https://github.com/Livox-SDK/livox_ros_driver.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release $ git clone https://github.com/hku-mars/VoxelMap.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
/usr/include/lz4.h:196:57: error: conflicting declaration ‘typedef struct LZ4_stream_t LZ4_stream_t’ ...
ROS-noetic. Fix as here$ sudo mv /usr/include/flann/ext/lz4.h /usr/include/flann/ext/lz4.h.bak $ sudo mv /usr/include/flann/ext/lz4hc.h /usr/include/flann/ext/lz4.h.bak $ sudo ln -s /usr/include/lz4.h /usr/include/flann/ext/lz4.h $ sudo ln -s /usr/include/lz4hc.h /usr/include/flann/ext/lz4hc.h
$ cd ~/your_workspace/src $ git clone https://github.com/hku-mars/r3live.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
LiDAR incoming frame too old ...
Livox-ros-driver does not publish the data with ROS timestamp, but LiDAR time.modified livox-ros-driver herelddc.cpp yourself, line 563://livox_msg.header.stamp = ros::Time((timestamp - init_lidar_tim - packet_offset_time ) / 1e9 + init_ros_time);
livox_msg.header.stamp = ros::Time::now();
/**************** Modified for R2LIVE **********************/
ros::Publisher *p_publisher = Lddc::GetCurrentPublisher(handle);
if (kOutputToRos == output_type_)
{
p_publisher->publish(livox_msg);
}
Kalibr or camera_calibration
lidar_camera_calibration repo, if you want to.LiVOX LiDAR, use livox_camera_calib repo
bag file of LiVOX LiDAR data and capture the image from RGB camera you use.bag file into a PCD file with (change directories in the launch file):$ roslaunch livox_camera_calib bag_to_pcd.launch
$ roslaunch livox_camera_calib calib.launch
livox_camera_calib should be transposed in the r3live_config.yaml file. Refer my extrinsic result and r3live config file
Left: Target image. Right: Target PCD
Left: calibrated image and residuals. Right: calibrated image
Sensor configuration of mine: Pixhawk4 mini as an IMU, FLIR Blackfly S USB3 (BFS-U3-23S3C-C), LiVOX MID-70
$ cd ~/your_workspace/src $ git clone https://github.com/Livox-SDK/livox_ros_driver.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release $ cd ~/your_workspace/src $ git clone --recursive https://github.com/hku-mars/Point-LIO.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ sudo apt install libomp-dev libpcl-dev libeigen3-dev $ cd ~/your_workspace/src $ git clone https://github.com/vectr-ucla/direct_lidar_inertial_odometry.git $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ cd ~/your_workspace/src $ git clone https://github.com/Livox-SDK/livox_ros_driver $ git clone https://github.com/HViktorTsoi/PV-LIO $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ sudo apt-get install build-essential cmake cmake-curses-gui libflann-dev libgsl-dev libeigen3-dev libopenmpi-dev \
openmpi-bin opencl-c-headers ocl-icd-opencl-dev libboost-all-dev libopencv-dev libyaml-cpp-dev \
freeglut3-dev libhdf5-dev qtbase5-dev qt5-default libqt5opengl5-dev liblz4-dev
# Ubuntu 18.04
$ sudo apt-get install libvtk6-dev libvtk6-qt-dev
# Ubuntu 20.04
$ sudo apt-get install libvtk7-dev libvtk7-qt-dev
$ git clone https://github.com/uos/lvr2.git
$ cd lvr2
$ mkdir build && cd build
$ cmake .. && make
$ sudo make install
$ cd ~/your_workspace/src
$ git clone https://github.com/naturerobots/mesh_tools.git
$ git clone https://github.com/RuanJY/SLAMesh.git
$ cd..
$ catkin build -DCMAKE_BUILD_TYPE=Release
Ceres >= 2.0 version and OpenCV 4.X version, ceres.solve can occur errorOpenCV dependency in CMakeLists.txt#target_link_libraries(slamesh ${catkin_LIBRARIES} ${PCL_LIBRARIES} ${OpenCV_LIBS} ${G2O_LIBS} ${CERES_LIBRARIES} ${LVR2_LIBRARIES})
target_link_libraries(slamesh ${catkin_LIBRARIES} ${PCL_LIBRARIES} ${G2O_LIBS} ${CERES_LIBRARIES} ${LVR2_LIBRARIES})
$ sudo apt-get install ros-noetic-cv-bridge ros-noetic-tf ros-noetic-message-filters ros-noetic-image-transport* $ sudo apt-get install -y libcgal-dev pcl-tools libgl-dev libglm-dev libglfw3-dev libglew-dev libglw1-mesa-dev libxkbcommon-x11-dev $ cd ~/your_workspace/src $ git clone https://github.com/Livox-SDK/livox_ros_driver $ git clone https://github.com/hku-mars/ImMesh $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
CGAL version issue will bother you.$ cd ~/your_workspace/src $ git clone https://github.com/zijiechenrobotics/ig_lio $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ cd ~/your_workspace/src $ git clone https://github.com/ZikangYuan/sr_lio/ $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
$ cd ~/your_workspace/src $ git clone https://github.com/Livox-SDK/livox_ros_driver $ git clone https://github.com/engcang/FAST_LIO_MULTI --recursive $ cd .. $ catkin build -DCMAKE_BUILD_TYPE=Release
Ceres >= 2.1.0sudo apt install libsuitesparse-dev libtbb-dev sudo apt install ros-noetic-tf2-sensor-msgs ros-noetic-tf-conversions sudo apt install libatlas-base-dev libeigen3-dev libgoogle-glog-dev sudo apt install python3-wstool python3-catkin-tools python3-osrf-pycommon cd workspace_1 git clone https://github.com/Livox-SDK/Livox-SDK cd Livox-SDK/build cmake .. && sudo make install -j12 cd workspace_1 git clone https://github.com/Livox-SDK/Livox-SDK2 cd Livox-SDK2 && mkdir build && cd build cmake .. && sudo make install -j12 cd workspace_1/src git clone https://github.com/livox-SDK/livox_ros_driver git clone https://github.com/livox-SDK/livox_ros_driver2 cd livox_ros_driver2 ./build.sh ROS1 >>> Make chained workspace, it will be good for your mental health >>> because of livox_ros_driver2 cd workspace_2 source workspace_1/devel/setup.bash cd workspace_2/src git clone https://github.com/brytsknguyen/ufomap cd ufomap && git checkout devel_surfel cd workspace_2/src wget https://github.com/brytsknguyen/slict/archive/refs/tags/slict.1.0.tar.gz tar -zxf slict.1.0.tar.gz cd .. catkin build
cd workspace/src git clone https://github.com/minwoo0611/MA-LIO.git cd.. catkin build
PCL error, just comment the find_package in MA_LIO/CMakeLists.txt#before find_package(PCL 1.8 REQUIRED) #after #find_package(PCL 1.8 REQUIRED)
laserMapping.cpp file's uncertainty calculation part// before ... // for (int i = 0; i < (int)kf.lidar_uncertainty[num].size() - 1; i++) ... // for (int i = 0; i < (int)kf.lidar_uncertainty[num].size() - 1; i++) // after ... for (int i = 0; i < (int)kf.lidar_uncertainty[num].size(); i++) ... for (int i = 0; i < (int)kf.lidar_uncertainty[num].size(); i++)
sudo apt-get install ros-noetic-catkin python3-catkin-tools sudo apt-get install ros-noetic-pcl-ros sudo apt install ros-noetic-tf2-sensor-msgs ros-noetic-tf2-geometry-msgs ros-noetic-eigen-conversions cd workspace/src git clone https://github.com/NeBula-Autonomy/LOCUS.git git clone https://github.com/NeBula-Autonomy/common_nebula_slam.git cd .. catkin build -DCMAKE_BUILD_TYPE=Release
Ceres >= 2.1.0sudo apt install libomp-dev cd workspace/src git clone https://github.com/gogojjh/M-LOAM.git cd .. catkin build -DCMAKE_BUILD_TYPE=Release
pcl_conversion error, just comment them in src/rosXXX.cpp// #include <pcl/ros/conversions.h>
cv error in kittiHelper.cpp, fix them as:// cv::Mat left_image = cv::imread(left_image_path.str(), CV_LOAD_IMAGE_GRAYSCALE); // cv::Mat right_image = cv::imread(left_image_path.str(), CV_LOAD_IMAGE_GRAYSCALE); cv::Mat left_image = cv::imread(left_image_path.str(), cv::IMREAD_GRAYSCALE); cv::Mat right_image = cv::imread(left_image_path.str(), cv::IMREAD_GRAYSCALE);
M-LOAM/estimator/src/imageSegmenter/image_segmenter.hpp// before
//dist = sqrt(d1 * d1 + d2 * d2 - 2 * d1 * d2 * cos(alpha));
//alpha = iter->first == 0 ? segment_alphax_ : segment_alphay_;
// after (order matters)
alpha = iter->first == 0 ? segment_alphax_ : segment_alphay_;
dist = sqrt(d1 * d1 + d2 * d2 - 2 * d1 * d2 * cos(alpha));
// before
//cloud_scan[i].erase(cloud_scan[i].begin() + cloud_scan_order[index]);
//if (j % 5 == 0)
// laser_cloud_outlier.push_back(cloud_matrix.points[index]);
// after
if (cloud_scan_order[index] >= 0 && cloud_scan_order[index] < cloud_scan[i].size())
{
cloud_scan[i].erase(cloud_scan[i].begin() + cloud_scan_order[index]);
if (j % 5 == 0)
laser_cloud_outlier.push_back(cloud_matrix.points[index]);
}
Gazebo Velodyne pluginCPU ray, instead of GPU ray, height - width should be interchanged, I used this script filemore like this
Pytorch Implementation of SimGAN: Hybrid Simulator Identification for Domain Adaptation via Adversarial Reinforcement L…
search projects, people, and tags