-
Notifications
You must be signed in to change notification settings - Fork 728
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
Update for compatibility with image_geometry 4.1.0 #968
Update for compatibility with image_geometry 4.1.0 #968
Conversation
Thank you @ScottMonaghan for the contribution. CI is broken, we need to wait to have a |
@ros-pull-request-builder retest this please |
It appears this may not be complete? The latest dev job has a failed test:
|
Hmm... that means we're referencing an image_geometry package older than the current 4.1 release: https://index.ros.org/p/image_geometry/github-ros-perception-vision_opencv/#rolling In 4.1 from_camera_info replaces FromCameraInfo which has been deprecated. |
Looks like Rolling has 4.1 - but Jazzy only has 4.0? Is that expected? |
Certainly not what I expected, but I'm new here and may have made a mistake. @ijnek, can you offer some insight here? image-geometry should be 4.1 for Jazzy correct? |
This is a PR to fix: - ros-perception#966 As noted in ros-perception#966, as of writing image_pipeline [4.1.0 has been released](https://github.com/ros-perception/vision_opencv/releases/tag/4.1.0), is updated on [index.ros.org](https://index.ros.org/p/image_geometry/github-ros-perception-vision_opencv/#rolling), but it has not yet been migrated to [packages.ros.org](http://packages.ros.org/ros2/ubuntu/dists/noble/main/binary-amd64/Packages). As such `camera_calibration` will also require the source of [image_pipeline 4.1.0](https://github.com/ros-perception/vision_opencv/releases/tag/4.1.0) or higher to successfully build. I tested to ensure successful build with colcon build & colcon test. Note that colcon test has the following warning that is out of scope of this PR: ``` =============================== warnings summary =============================== src/camera_calibration/calibrator.py:47 Warning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives ``` Please let me know if there are any questions, concerns, or requested changes.
This is a PR to fix:
As noted in #966, as of writing image_geometry 4.1.0 has been released, is updated on index.ros.org, but it has not yet been migrated to packages.ros.org.
As such
camera_calibration
will also require the source of image_geometry 4.1.0 or higher to successfully build.I tested to ensure successful build with colcon build & colcon test.
Note that colcon test has the following warning that is out of scope of this PR:
Please let me know if there are any questions, concerns, or requested changes.