Skip to content

Commit

Permalink
fix checkerboard parameter name (#154)
Browse files Browse the repository at this point in the history
recently fixed this parameter to actually work, but the
name is still different from ROS1.
  • Loading branch information
mikeferguson committed May 17, 2023
1 parent b32a89b commit a4054ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robot_calibration/src/finders/checkerboard_finder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ bool CheckerboardFinder<T>::init(const std::string& name,

// Name of the sensor model that will be used during optimization
camera_sensor_name_ = node->declare_parameter<std::string>(name + ".camera_sensor_name", "camera");
chain_sensor_name_ = node->declare_parameter<std::string>(name + ".chain_sensor_name_id", "arm");
chain_sensor_name_ = node->declare_parameter<std::string>(name + ".chain_sensor_name", "arm");

// Publish where checkerboard points were seen
publisher_ = node->create_publisher<sensor_msgs::msg::PointCloud2>(name + "_points", 10);
Expand Down

0 comments on commit a4054ce

Please sign in to comment.