Skip to content

Commit

Permalink
Merge pull request #344 from ethz-asl/fix/noetic
Browse files Browse the repository at this point in the history
Fix for noetic/focal
  • Loading branch information
floriantschopp committed Nov 16, 2021
2 parents 7c02a46 + 27e4d45 commit 483daf4
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,6 @@
[submodule "dependencies/3rdparty/pointmatcher-ros"]
path = dependencies/3rdparty/pointmatcher-ros
url = git@github.com:ANYbotics/pointmatcher-ros.git
[submodule "dependencies/internal/libpointmatcher"]
path = dependencies/internal/libpointmatcher
url = git@github.com:ethz-asl/libpointmatcher.git
[submodule "dependencies/3rdparty/libpointmatcher"]
path = dependencies/3rdparty/libpointmatcher
url = git@github.com:ANYbotics/libpointmatcher.git
2 changes: 1 addition & 1 deletion aslam_cv2
2 changes: 1 addition & 1 deletion common/maplab-common/src/python-interface.cc
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ bool PythonInterface::loadModule(const std::string& python_script) {
}
CHECK(!module_name.empty());

PyObject* pyname = PyString_FromString(module_name.c_str());
PyObject* pyname = PyBytes_FromString(module_name.c_str());
python_module_->obj = PyImport_Import(pyname);
Py_DECREF(pyname);
return *python_module_;
Expand Down
1 change: 1 addition & 0 deletions dependencies/3rdparty/libpointmatcher
Submodule libpointmatcher added at 35a68f
2 changes: 1 addition & 1 deletion dependencies/3rdparty/opencv3_catkin
Submodule opencv3_catkin updated 1 files
+3 −2 CMakeLists.txt
2 changes: 1 addition & 1 deletion dependencies/3rdparty/protobuf_catkin
2 changes: 1 addition & 1 deletion dependencies/3rdparty/vision_opencv
2 changes: 1 addition & 1 deletion dependencies/internal/ethzasl_brisk
1 change: 0 additions & 1 deletion dependencies/internal/libpointmatcher
Submodule libpointmatcher deleted from f0b816
2 changes: 1 addition & 1 deletion dependencies/internal/maplab_tools
Submodule maplab_tools updated 88 files
+2 −0 .gitignore
+3 −0 .gitmodules
+34 −0 artifact_republisher/CMakeLists.txt
+39 −0 artifact_republisher/app/artifact-republisher-app.cc
+44 −0 artifact_republisher/include/artifact_republisher/artifact-republisher.h
+20 −0 artifact_republisher/package.xml
+11 −0 artifact_republisher/share/run_artifact_republisher
+95 −0 artifact_republisher/src/artifact-republisher.cc
+1 −0 image_debayer/include/image_debayer/image-reconstruction.h
+417 −0 image_debayer/script/.ipynb_checkpoints/white_balance_test-checkpoint.ipynb
+ image_debayer/script/cca_automatic.mp4
+ image_debayer/script/cca_std_lw.mp4
+ image_debayer/script/opencv_learning.mp4
+ image_debayer/script/opencv_simple_wb.mp4
+ image_debayer/script/srgb.mp4
+386 −0 image_debayer/script/white_balance_test.ipynb
+6 −2 image_debayer/share/run_image_debayer
+23 −0 image_debayer/src/image-reconstruction.cc
+34 −0 lidar_image_projection/CMakeLists.txt
+39 −0 lidar_image_projection/app/lidar-image-projection-app.cc
+72 −0 lidar_image_projection/include/lidar-image-projection/lidar-image-projection-node.h
+181 −0 lidar_image_projection/include/lidar-image-projection/message-sync.h
+23 −0 lidar_image_projection/include/lidar-image-projection/transformation-utils.h
+23 −0 lidar_image_projection/package.xml
+12 −0 lidar_image_projection/share/lidar-image-projection-anymal
+19 −0 lidar_image_projection/share/lidar-image-projection-lidarmace
+277 −0 lidar_image_projection/src/lidar-image-projection-node.cc
+50 −0 lidar_image_projection/src/transformation-utils.cc
+0 −0 maplab_camera_info_publisher/CATKIN_IGNORE
+75 −70 maplab_camera_info_publisher/include/maplab-camera-info-publisher/maplab-camera-info-publisher-node.h
+3 −1 maplab_camera_info_publisher/package.xml
+5 −2 maplab_camera_info_publisher/share/camera_info_publisher_alpha
+16 −0 maplab_camera_info_publisher/share/camera_info_publisher_anymal
+18 −0 maplab_camera_info_publisher/share/camera_info_publisher_badger_FR
+198 −207 maplab_camera_info_publisher/src/maplab-camera-info-publisher-node.cc
+16 −0 maplab_profiles/CMakeLists.txt
+253 −0 maplab_profiles/bin/EuRoC_comp.ipynb
+112 −0 maplab_profiles/bin/command_post.py
+66 −0 maplab_profiles/bin/config.py
+141 −0 maplab_profiles/bin/datasource.py
+270 −0 maplab_profiles/bin/evaluation.ipynb
+583 −0 maplab_profiles/bin/evaluation_euroc.ipynb
+370 −0 maplab_profiles/bin/evaluation_hilti.ipynb
+386 −0 maplab_profiles/bin/evaluation_raw.ipynb
+193 −0 maplab_profiles/bin/playground.ipynb
+153 −0 maplab_profiles/bin/pose_trajectory_evaluation.py
+240 −0 maplab_profiles/bin/profiler.py
+37 −0 maplab_profiles/bin/profiler_node.py
+16 −0 maplab_profiles/config/commander_config.yaml
+6 −0 maplab_profiles/config/debug_grid_search.yaml
+75 −0 maplab_profiles/config/default.yaml
+2 −0 maplab_profiles/config/grid_search.yaml
+76 −0 maplab_profiles/config/high_performance.yaml
+63 −0 maplab_profiles/config/lidar-only.yaml
+77 −0 maplab_profiles/config/low_performance.yaml
+34 −0 maplab_profiles/config/profiler_config_local.yaml
+34 −0 maplab_profiles/config/profiler_config_mapcompute.yaml
+14 −0 maplab_profiles/launch/commander.launch
+14 −0 maplab_profiles/launch/profiler.launch
+18 −0 maplab_profiles/package.xml
+16 −0 path_saver/CMakeLists.txt
+64 −0 path_saver/bin/saver_node.py
+2 −0 path_saver/config/compslam.yaml
+2 −0 path_saver/config/gt.yaml
+14 −0 path_saver/launch/saver.launch
+14 −0 path_saver/launch/saver_gt.launch
+17 −0 path_saver/package.xml
+0 −0 ply_publisher/CATKIN_IGNORE
+27 −26 ply_publisher/include/ply-publisher/ply-publisher-node.h
+0 −1 ply_publisher/package.xml
+3 −1 ply_publisher/share/run_ply_publisher
+47 −33 ply_publisher/src/ply-publisher-node.cc
+16 −0 white_balancer/CMakeLists.txt
+165 −0 white_balancer/bin/WBsRGB.py
+200 −0 white_balancer/bin/methods.py
+169 −0 white_balancer/bin/wb_node.py
+10 −0 white_balancer/config/config.yaml
+1 −0 white_balancer/deps/WB_sRGB
+24 −0 white_balancer/launch/wb_node.launch
+ white_balancer/models/encoderBias+.npy
+ white_balancer/models/encoderBias.npy
+ white_balancer/models/encoderWeights+.npy
+ white_balancer/models/encoderWeights.npy
+ white_balancer/models/features+.npy
+ white_balancer/models/features.npy
+ white_balancer/models/mappingFuncs+.npy
+ white_balancer/models/mappingFuncs.npy
+17 −0 white_balancer/package.xml
2 changes: 1 addition & 1 deletion dependencies/internal/plotty
Submodule plotty updated 1 files
+14 −16 src/matplotlibcpp.cpp

0 comments on commit 483daf4

Please sign in to comment.