Skip to content

Commit

Permalink
Changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde committed Jul 24, 2024
1 parent 5fd07be commit 019ba5b
Show file tree
Hide file tree
Showing 9 changed files with 86 additions and 0 deletions.
17 changes: 17 additions & 0 deletions camera_calibration/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
Changelog for package camera_calibration
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------
* Change camera info message to lower case (backport `#1005 <https://github.com/ros-perception/image_pipeline/issues/1005>`_) (`#1008 <https://github.com/ros-perception/image_pipeline/issues/1008>`_)
Change camera info message to lower case since message type had been
change in rolling and humble.
[](https://github.com/ros2/common_interfaces/blob/rolling/sensor_msgs/msg/CameraInfo.msg)<hr>This
is an automatic backport of pull request `#1005 <https://github.com/ros-perception/image_pipeline/issues/1005>`_ done by
[Mergify](https://mergify.com).
---------
Co-authored-by: SFhmichael <[email protected]>
Co-authored-by: Alejandro Hernández Cordero <[email protected]>
* [backport humble] Fix spelling error for cv2.aruco.DICT from 6x6_50 to 7x7_1000 (`#961 <https://github.com/ros-perception/image_pipeline/issues/961>`_) (`#1004 <https://github.com/ros-perception/image_pipeline/issues/1004>`_)
Backport `#961 <https://github.com/ros-perception/image_pipeline/issues/961>`_ fix to humble
Co-authored-by: Vishal Balaji <[email protected]>
Co-authored-by: Vishal Balaji <[email protected]>
* Contributors: Balint Rozgonyi, mergify[bot]

3.0.4 (2024-03-01)
------------------

Expand Down
3 changes: 3 additions & 0 deletions depth_image_proc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package depth_image_proc
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------

3.0.4 (2024-03-01)
------------------
* [backport humble] Fixed image types in depth_image_proc (`#916 <https://github.com/ros-perception/image_pipeline/issues/916>`_)
Expand Down
3 changes: 3 additions & 0 deletions image_pipeline/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package image_pipeline
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------

3.0.4 (2024-03-01)
------------------

Expand Down
8 changes: 8 additions & 0 deletions image_proc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog for package image_proc
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------
* [backport humble] Node namespace parameter (`#963 <https://github.com/ros-perception/image_pipeline/issues/963>`_)
Backport pull request `#925 <https://github.com/ros-perception/image_pipeline/issues/925>`_ which solves issue `#952 <https://github.com/ros-perception/image_pipeline/issues/952>`_ by adding the
`namespace` parameter to the `image_proc` launch file
Co-authored-by: Lucas Wendland <[email protected]>
* Contributors: Alejandro Hernández Cordero

3.0.4 (2024-03-01)
------------------

Expand Down
43 changes: 43 additions & 0 deletions image_publisher/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,49 @@
Changelog for package image_publisher
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------
* [humble] image_publisher: Fix loading of the camera info parameters on startup (backport `#983 <https://github.com/ros-perception/image_pipeline/issues/983>`_) (`#996 <https://github.com/ros-perception/image_pipeline/issues/996>`_)
As described in
https://github.com/ros-perception/image_pipeline/issues/965 camera info
is not loaded from the file on node initialization, but only when the
parameter is reloaded.
This PR resolves this issue and should be straightforward to port it to
`Humble`, `Iron` and `Jazzy`.<hr>This is an automatic backport of pull
request `#983 <https://github.com/ros-perception/image_pipeline/issues/983>`_ done by [Mergify](https://mergify.com).
---------
Co-authored-by: Krzysztof Wojciechowski <[email protected]>
Co-authored-by: Michael Ferguson <[email protected]>
* image_publisher: add field of view parameter (backport `#985 <https://github.com/ros-perception/image_pipeline/issues/985>`_) (`#993 <https://github.com/ros-perception/image_pipeline/issues/993>`_)
Currently, the default value for focal length when no camera info is
provided defaults to `1.0` rendering whole approximate intrinsics and
projection matrices useless. Based on [this
article](https://learnopencv.com/approximate-focal-length-for-webcams-and-cell-phone-cameras/),
I propose a better approximation of the focal length based on the field
of view of the camera.
For most of the use cases, users will either know the field of view of
the camera the used, or they already calibrated it ahead of time.
If there is some documentation to fill. please let me know.
This PR should be straightforward to port it to `Humble`, `Iron` and
`Jazzy`.
<hr>This is an automatic backport of pull request `#985 <https://github.com/ros-perception/image_pipeline/issues/985>`_ done by
[Mergify](https://mergify.com).
Co-authored-by: Krzysztof Wojciechowski <[email protected]>
* image_publisher: Fix image, constantly flipping when static image is published (backport `#986 <https://github.com/ros-perception/image_pipeline/issues/986>`_) (`#988 <https://github.com/ros-perception/image_pipeline/issues/988>`_)
Continuation of
https://github.com/ros-perception/image_pipeline/pull/984.
When publishing video stream from a camera, the image was flipped
correctly. Yet for a static image, which was loaded once, the flip
function was applied every time `ImagePublisher::doWork()` was called,
resulting in the published image being flipped back and forth all the
time.
This PR should be straightforward to port it to `Humble`, `Iron` and
`Jazzy`.<hr>This is an automatic backport of pull request `#986 <https://github.com/ros-perception/image_pipeline/issues/986>`_ done by
[Mergify](https://mergify.com).
Co-authored-by: Krzysztof Wojciechowski <[email protected]>
Co-authored-by: Alejandro Hernández Cordero <[email protected]>
* Contributors: mergify[bot]

3.0.4 (2024-03-01)
------------------

Expand Down
3 changes: 3 additions & 0 deletions image_rotate/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package image_rotate
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------

3.0.4 (2024-03-01)
------------------

Expand Down
3 changes: 3 additions & 0 deletions image_view/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package image_view
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------

3.0.4 (2024-03-01)
------------------

Expand Down
3 changes: 3 additions & 0 deletions stereo_image_proc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package stereo_image_proc
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------

3.0.4 (2024-03-01)
------------------

Expand Down
3 changes: 3 additions & 0 deletions tracetools_image_pipeline/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package tracetools_image_pipeline
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

3.0.5 (2024-07-24)
------------------

3.0.4 (2024-03-01)
------------------

Expand Down

0 comments on commit 019ba5b

Please sign in to comment.