mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
29 lines
1.2 KiB
Nix
29 lines
1.2 KiB
Nix
|
|
# Copyright 2023 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-gtest, ament-cmake-pytest, ament-cmake-python, ament-cmake-ros, opencv, sensor-msgs }:
|
|
buildRosPackage {
|
|
pname = "ros-rolling-image-geometry";
|
|
version = "3.4.0-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/vision_opencv-release/archive/release/rolling/image_geometry/3.4.0-2.tar.gz";
|
|
name = "3.4.0-2.tar.gz";
|
|
sha256 = "65f5ba78491537ec9c0286cf4cc11e03628a8cc5816745b9b94a00aa6b2b9512";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
buildInputs = [ ament-cmake-python ament-cmake-ros ];
|
|
checkInputs = [ ament-cmake-gtest ament-cmake-pytest ];
|
|
propagatedBuildInputs = [ opencv sensor-msgs ];
|
|
nativeBuildInputs = [ ament-cmake-python ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''`image_geometry` contains C++ and Python libraries for interpreting images
|
|
geometrically. It interfaces the calibration parameters in sensor_msgs/CameraInfo
|
|
messages with OpenCV functions such as image rectification, much as cv_bridge
|
|
interfaces ROS sensor_msgs/Image with OpenCV data types.'';
|
|
license = with lib.licenses; [ asl20 bsdOriginal ];
|
|
};
|
|
}
|