2022-12-09 19:20:15 -05:00
|
|
|
|
2023-01-06 13:57:00 +00:00
|
|
|
# Copyright 2023 Open Source Robotics Foundation
|
2022-12-09 19:20:15 -05:00
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
|
|
|
{ lib, buildRosPackage, fetchurl, bzip2, cmake, doxygen, eigen, libjpeg, liblapack, libpng, libv4l, libxml2, opencv, xorg }:
|
|
|
|
buildRosPackage {
|
|
|
|
pname = "ros-rolling-visp";
|
2023-05-02 16:50:22 -04:00
|
|
|
version = "3.5.0-r2";
|
2022-12-09 19:20:15 -05:00
|
|
|
|
|
|
|
src = fetchurl {
|
2023-05-02 16:50:22 -04:00
|
|
|
url = "https://github.com/ros2-gbp/visp-release/archive/release/rolling/visp/3.5.0-2.tar.gz";
|
|
|
|
name = "3.5.0-2.tar.gz";
|
|
|
|
sha256 = "b353cce0a1e3c03d28a2cd83644a45559d4dd1d6c81209c5c1a8680a1d7f35db";
|
2022-12-09 19:20:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "cmake";
|
|
|
|
buildInputs = [ bzip2 cmake doxygen ];
|
|
|
|
propagatedBuildInputs = [ eigen libjpeg liblapack libpng libv4l libxml2 opencv xorg.libX11 ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''ViSP standing for Visual Servoing Platform is a modular cross
|
|
|
|
platform library that allows prototyping and developing applications
|
|
|
|
using visual tracking and visual servoing technics at the heart of the
|
|
|
|
researches done by Inria Lagadic team. ViSP is able to compute control
|
|
|
|
laws that can be applied to robotic systems. It provides a set of visual
|
|
|
|
features that can be tracked using real time image processing or computer
|
|
|
|
vision algorithms. ViSP provides also simulation capabilities.
|
|
|
|
|
|
|
|
ViSP can be useful in robotics, computer vision, augmented reality
|
|
|
|
and computer animation.'';
|
|
|
|
license = with lib.licenses; [ "GPL-2.0-only" ];
|
|
|
|
};
|
|
|
|
}
|