Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed May 7, 2024
1 parent 7df9f39 commit eaad20f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aruco_opencv/src/aruco_tracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ class ArucoTracker : public rclcpp_lifecycle::LifecycleNode
}

#if CV_VERSION_MAJOR > 4 || CV_VERSION_MAJOR == 4 && CV_VERSION_MINOR >= 7
dictionary_ = cv::makePtr<cv::aruco::Dictionary>(cv::aruco::getPredefinedDictionary(
dictionary_ = cv::makePtr<cv::aruco::Dictionary>(
cv::aruco::getPredefinedDictionary(
ARUCO_DICT_MAP.at(marker_dict_)));
#else
dictionary_ = cv::aruco::getPredefinedDictionary(ARUCO_DICT_MAP.at(marker_dict_));
Expand Down

0 comments on commit eaad20f

Please sign in to comment.