File: tutorial-bridge-ros.dox

package info (click to toggle)
visp 3.7.0-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 166,384 kB
  • sloc: cpp: 392,705; ansic: 224,448; xml: 23,444; python: 13,701; java: 4,792; sh: 207; objc: 145; makefile: 118
file content (64 lines) | stat: -rw-r--r-- 4,719 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**

\page tutorial-bridge-ros Tutorial: Using ViSP with ROS 1
\tableofcontents

In this tutorial you will learn how to install ViSP from prebuilt ROS packages on Linux Ubuntu or Debian. 

\note Concerning ViSP installation, we provide also other \ref tutorial.

\section install_ros_package ViSP ROS package

ViSP is available as a [ROS package](http://wiki.ros.org/visp) for `kinetic`, `melodic` and `noetic` distros. Under Ubuntu, to get the package simply type:

\code
$ sudo apt-get install ros-<distro>-visp
\endcode

\section install_ros_package_other Other ROS packages

We provide also other ROS packages that exploit ViSP:

- [vision_visp](http://wiki.ros.org/vision_visp): a metapackage that contains
  -# [visp_bridge](http://wiki.ros.org/visp_bridge): a bunch of wrappers between ViSP and ROS data structures 
  -# [visp_tracker](http://wiki.ros.org/visp_tracker): a ROS version of ViSP model-based tracker
\htmlonly
<p align="center"><iframe width="560" height="315" src="https://www.youtube.com/embed/UK10KMMJFCI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
\endhtmlonly
  -# [visp_auto_tracker](http://wiki.ros.org/visp_auto_tracker): a tracker with auto-detection of a target
\htmlonly
<p align="center"><iframe width="560" height="315" src="https://www.youtube.com/embed/_dFF0_vWRcA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
\endhtmlonly
- [visp_ros](http://wiki.ros.org/visp_ros): a ViSP extension for ROS users that makes ROS easy to use. It contains:
  -# a library with new C++ classes (vpROSGrabber, vpROSRobot, vpROSRobotPioneer, vpROSRobotFrankaCoppeliasim) 
     that could be used like usual ViSP classes. They are based on ROS, but to use them there is no need to know
     so much about ROS. Thus, the library makes possible to use ROS in a transparent way, either by building
     classical binaries without catkin, either by building ROS nodes with catkin but without the need to write
     ROS specific code. Creating a ROS node out of ViSP becomes simple 
  -# ROS nodes that allow to control specific hardware such as for the moment robots that can be controlled
     only in our lab due to proprietary drivers: Afma6 gantry robot, Biclops PT head, ADEPT Viper 650 and 850
     robots described [here](https://team.inria.fr/rainbow/research/robotics-platforms/) and other robots
     that anyone can buy and use with open-source drivers interfaced in ViSP: Pioneer mobile robot, Parrot bebop2 drone.
     This [tutorial](http://wiki.ros.org/visp_ros/Tutorials/How%20to%20do%20visual%20servoing%20with%20Parrot%20Bebop%202%20drone%20and%20visp_ros)
     explains how to visual-servo a Parrot bebop2 drone like in the next video.
\htmlonly
<p align="center"><iframe width="560" height="315" src="https://www.youtube.com/embed/le07g-RRsJM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
\endhtmlonly
  -# a [tutorial](http://docs.ros.org/en/noetic/api/visp_ros/html/tutorial-franka-coppeliasim.html) that shows how to simulate a Franka Panda robot using [CoppeliaSim](https://www.coppeliarobotics.com/).
     The simulation is a physical simulation with a model that has been accurately identified from a real Franka robot.
     All the details are in the paper:<br>
     <em>C. Gaz, M. Cognetti, A. Oliva, P. Robuffo Giordano, A. De Luca, Dynamic Identification of the Franka
     Emika Panda Robot With Retrieval of Feasible Parameters Using Penalty-Based Optimization. IEEE RA-L, 2019.</em>
\htmlonly
<p align="center"><iframe width="560" height="315" src="https://www.youtube.com/embed/02Bx093Fuak" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
\endhtmlonly
- [demo_pioneer](http://wiki.ros.org/demo_pioneer): a set of ROS visual-servoing demos using a Pioneer robot and based on ViSP
\htmlonly
<p align="center"><iframe width="560" height="315" src="https://www.youtube.com/embed/n3UmgCXw5lY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
\endhtmlonly

\section install_ros_package_next Next tutorial

You are now ready to see the next \ref tutorial-getting-started that will show you how to use ViSP as a 3rd party to build your own project.

*/