-
Notifications
You must be signed in to change notification settings - Fork 737
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jazzy' into mergify/bp/jazzy/pr-986
- Loading branch information
Showing
20 changed files
with
90 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,58 @@ | |
Changelog for package camera_calibration | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
5.0.2 (2024-05-27) | ||
------------------ | ||
* fix: cv2.aruco.interpolateCornersCharuco is deprecated (backport `#979 <https://github.com/ros-perception/image_pipeline/issues/979>`_) (`#980 <https://github.com/ros-perception/image_pipeline/issues/980>`_) | ||
There has been API Changes in the newer releases of opencv2 (from | ||
4.8.0). The PR addresses this by supporting both the old and new APIs. | ||
updated Syntax | ||
``` | ||
charucodetector = cv2.aruco.CharucoDetector(board) | ||
charuco_corners, charuco_ids, marker_corners, marker_ids = charucodetector.detectBoard(image) | ||
``` | ||
before 4.8.0 | ||
``` | ||
marker_corners, marker_ids, rejectedImgPoints = cv2.aruco.detectMarkers( image, dictionary) | ||
retval, charuco_corners, charuco_ids = cv2.aruco.interpolateCornersCharuco( marker_corners, marker_ids, image, board) | ||
``` | ||
See the changed examples in the main opencv2 repo: | ||
https://github.com/opencv/opencv/blob/f9a59f2592993d3dcc080e495f4f5e02dd8ec7ef/samples/python/calibrate.py#L110<hr>This | ||
is an automatic backport of pull request `#979 <https://github.com/ros-perception/image_pipeline/issues/979>`_ done by | ||
[Mergify](https://mergify.com). | ||
Co-authored-by: Földi Tamás <[email protected]> | ||
* Update for compatibility with image_pipeline 4.1.0 (`#968 <https://github.com/ros-perception/image_pipeline/issues/968>`_) | ||
This is a PR to fix: | ||
- `#966 <https://github.com/ros-perception/image_pipeline/issues/966>`_ | ||
As noted in `#966 <https://github.com/ros-perception/image_pipeline/issues/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. | ||
* replace disutils with python3-semver (`#970 <https://github.com/ros-perception/image_pipeline/issues/970>`_) | ||
Fix for | ||
- `#969 <https://github.com/ros-perception/image_pipeline/issues/969>`_ | ||
I added a dependency for `python3-semver` to replace version parsing | ||
with `disutils`. | ||
Please let me know if you have any questions, concerns, or additional | ||
requested changes. | ||
* Contributors: Scott Monaghan, mergify[bot] | ||
|
||
5.0.1 (2024-03-26) | ||
------------------ | ||
* Fix spelling error for cv2.aruco.DICT from 6x6_50 to 7x7_1000 (`#961 <https://github.com/ros-perception/image_pipeline/issues/961>`_) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>image_pipeline</name> | ||
<version>5.0.1</version> | ||
<version>5.0.2</version> | ||
<description>image_pipeline fills the gap between getting raw images from a camera driver and higher-level vision processing.</description> | ||
|
||
<maintainer email="[email protected]">Vincent Rabaud</maintainer> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>image_proc</name> | ||
<version>5.0.1</version> | ||
<version>5.0.2</version> | ||
<description>Single image rectification and color processing.</description> | ||
|
||
<maintainer email="[email protected]">Vincent Rabaud</maintainer> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>stereo_image_proc</name> | ||
<version>5.0.1</version> | ||
<version>5.0.2</version> | ||
<description>Stereo and single image rectification and disparity processing.</description> | ||
|
||
<maintainer email="[email protected]">Vincent Rabaud</maintainer> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters