Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deprecated header has been removed for j-turtle #162

Merged
merged 2 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/industrial_ci_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
env:
- {ROS_DISTRO: humble, ROS_REPO: main}
- {ROS_DISTRO: iron, ROS_REPO: main}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2023 Michael Ferguson
* Copyright (C) 2018-2024 Michael Ferguson
* Copyright (C) 2015 Fetch Robotics Inc.
* Copyright (C) 2013-2014 Unbounded Robotics Inc.
*
Expand Down Expand Up @@ -27,7 +27,7 @@
#include <robot_calibration_msgs/msg/calibration_data.hpp>

#include <opencv2/calib3d/calib3d.hpp>
#include <cv_bridge/cv_bridge.h>
#include <cv_bridge/cv_bridge.hpp>

namespace robot_calibration
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2022 Michael Ferguson
* Copyright (C) 2022-2024 Michael Ferguson
* Copyright (C) 2014-2017 Fetch Robotics Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -15,15 +15,15 @@
* limitations under the License.
*/

#ifndef ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_H
#define ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_H
#ifndef ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_HPP
#define ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_HPP

#include <rclcpp/rclcpp.hpp>
#include <robot_calibration/finders/feature_finder.hpp>
#include <robot_calibration/util/depth_camera_info.hpp>
#include <robot_calibration/util/eigen_geometry.hpp>
#include <robot_calibration_msgs/msg/calibration_data.hpp>
#include <cv_bridge/cv_bridge.h>
#include <cv_bridge/cv_bridge.hpp>

namespace robot_calibration
{
Expand Down Expand Up @@ -110,4 +110,4 @@ class PlaneFinder : public FeatureFinder

} // namespace robot_calibration

#endif // ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_H
#endif // ROBOT_CALIBRATION_CAPTURE_PLANE_FINDER_HPP