Skip to content

Commit 43a48a7

Browse files
committed
port to jazzy
1 parent d0738d6 commit 43a48a7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.8)
22
project(ros2_orb_slam3)
33

44
# Make sure to set this path before building the
5-
set(ENV{PYTHONPATH} "/opt/ros/humble/lib/python3.10/site-packages/") # Must be set to match your installation
5+
set(ENV{PYTHONPATH} "/opt/ros/jazzy/lib/python3.12/site-packages/") # Must be set to match your installation
66

77
# Must use C++17 to make it compatible with rclcpp
88
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -O3")

include/ros2_orb_slam3/common.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ using std::placeholders::_1; //* TODO why this is suggested in official tutorial
3333
#include <Eigen/Dense> // Includes Core, Geometry, LU, Cholesky, SVD, QR, and Eigenvalues header file
3434

3535
// Include cv-bridge
36-
#include <cv_bridge/cv_bridge.h>
36+
#include <cv_bridge/cv_bridge.hpp>
3737

3838
// Include OpenCV computer vision library
3939
#include <opencv2/opencv.hpp>
4040
#include <opencv2/core/core.hpp>
4141
#include <opencv2/imgproc/imgproc.hpp> // Image processing tools
4242
#include <opencv2/highgui/highgui.hpp> // GUI tools
4343
#include <opencv2/core/eigen.hpp>
44-
#include <image_transport/image_transport.h>
44+
#include <image_transport/image_transport.hpp>
4545

4646
//* ORB SLAM 3 includes
4747
#include "System.h" //* Also imports the ORB_SLAM3 namespace

0 commit comments

Comments
 (0)