mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-ros/compressed_depth_image_transport: fix build with opencv4
Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: Alexis Ballier <aballier@gentoo.org>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
@@ -18,8 +18,9 @@ RDEPEND="
|
||||
dev-ros/cv_bridge
|
||||
dev-ros/dynamic_reconfigure[${PYTHON_USEDEP}]
|
||||
dev-ros/image_transport
|
||||
media-libs/opencv:=
|
||||
>=media-libs/opencv-4:=
|
||||
dev-libs/boost:=
|
||||
dev-libs/console_bridge:=
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
PATCHES=( "${FILESDIR}/ocv4.patch" )
|
||||
|
||||
13
dev-ros/compressed_depth_image_transport/files/ocv4.patch
Normal file
13
dev-ros/compressed_depth_image_transport/files/ocv4.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
Index: compressed_depth_image_transport/src/codec.cpp
|
||||
===================================================================
|
||||
--- compressed_depth_image_transport.orig/src/codec.cpp
|
||||
+++ compressed_depth_image_transport/src/codec.cpp
|
||||
@@ -135,7 +135,7 @@ sensor_msgs::Image::Ptr decodeCompressed
|
||||
// Decode raw image
|
||||
try
|
||||
{
|
||||
- cv_ptr->image = cv::imdecode(imageData, CV_LOAD_IMAGE_UNCHANGED);
|
||||
+ cv_ptr->image = cv::imdecode(imageData, cv::IMREAD_UNCHANGED);
|
||||
}
|
||||
catch (cv::Exception& e)
|
||||
{
|
||||
Reference in New Issue
Block a user