2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
# Copyright 2020 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-cmake-gtest, ament-lint-auto, ament-lint-common, class-loader, cv-bridge, image-geometry, image-transport, message-filters, sensor-msgs, stereo-msgs, tf2, tf2-eigen, tf2-ros }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-foxy-depth-image-proc";
|
2020-07-31 13:40:46 +00:00
|
|
|
version = "2.2.0-r2";
|
2020-06-12 18:02:43 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-07-31 13:40:46 +00:00
|
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/foxy/depth_image_proc/2.2.0-2.tar.gz";
|
|
|
|
name = "2.2.0-2.tar.gz";
|
|
|
|
sha256 = "ade4efec13b8f61f38fc3510e027d05dff173eb029246f52d7f2c5b4383a80ed";
|
2020-06-12 18:02:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ class-loader message-filters sensor-msgs stereo-msgs ];
|
|
|
|
checkInputs = [ ament-cmake-gtest ament-lint-auto ament-lint-common ];
|
|
|
|
propagatedBuildInputs = [ cv-bridge image-geometry image-transport tf2 tf2-eigen tf2-ros ];
|
|
|
|
nativeBuildInputs = [ ament-cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''Contains components for processing depth images such as those
|
|
|
|
produced by OpenNI camera. Functions include creating disparity
|
|
|
|
images and point clouds, as well as registering (reprojecting)
|
|
|
|
a depth image into another camera frame.'';
|
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|