2022-12-09 19:20:15 -05:00
|
|
|
|
2025-01-03 13:42:37 +00:00
|
|
|
# Copyright 2025 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2024-08-30 13:28:23 +00:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-auto, ament-lint-auto, ament-lint-common, class-loader, cv-bridge, image-geometry, image-proc, image-transport, message-filters, opencv, rclcpp, rclcpp-components, sensor-msgs, stereo-msgs, tf2, tf2-eigen, tf2-ros }:
|
2022-12-09 19:20:15 -05:00
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-depth-image-proc";
|
2025-03-01 18:33:54 +00:00
|
|
|
version = "6.0.10-r1";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2025-03-01 18:33:54 +00:00
|
|
|
url = "https://github.com/ros2-gbp/image_pipeline-release/archive/release/rolling/depth_image_proc/6.0.10-1.tar.gz";
|
|
|
|
name = "6.0.10-1.tar.gz";
|
|
|
|
sha256 = "7b858bdc796c03a30b02acb3d5a0a51b783209784952216d5fcdba804440df47";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_cmake";
|
|
|
|
buildInputs = [ ament-cmake-auto class-loader ];
|
|
|
|
checkInputs = [ ament-lint-auto ament-lint-common ];
|
2024-08-30 13:28:23 +00:00
|
|
|
propagatedBuildInputs = [ cv-bridge image-geometry image-proc image-transport message-filters opencv opencv.cxxdev rclcpp rclcpp-components sensor-msgs stereo-msgs tf2 tf2-eigen tf2-ros ];
|
2022-12-09 19:20:15 -05:00
|
|
|
nativeBuildInputs = [ ament-cmake-auto ];
|
|
|
|
|
|
|
|
meta = {
|
2024-03-23 14:09:26 +00:00
|
|
|
description = "Contains components for processing depth images such as those
|
2022-12-09 19:20:15 -05:00
|
|
|
produced by OpenNI camera. Functions include creating disparity
|
|
|
|
images and point clouds, as well as registering (reprojecting)
|
2024-03-23 14:09:26 +00:00
|
|
|
a depth image into another camera frame.";
|
2022-12-09 19:20:15 -05:00
|
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
|
|
};
|
|
|
|
}
|