How To Install visp-images-data on Ubuntu
Posted on April 1, 2023  (Last modified on May 20, 2023 )
2 minutes • 421 words
Introduction
In this tutorial we learn how to install visp-images-data
on Ubuntu.
What is visp-images-data
visp-images-data is:
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.
This package contains reference data for ViSP tests and examples.
There are three methods to install visp-images-data
on Ubuntu. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install visp-images-data Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install visp-images-data
using apt-get
by running the following command:
sudo apt-get -y install visp-images-data
Install visp-images-data Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install visp-images-data
using apt
by running the following command:
sudo apt -y install visp-images-data
Install visp-images-data Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install visp-images-data
using aptitude
by running the following command:
sudo aptitude -y install visp-images-data
How To Uninstall visp-images-data on Ubuntu
To uninstall only the visp-images-data
package we can use the following command:
sudo apt-get remove visp-images-data
Uninstall visp-images-data And Its Dependencies
To uninstall visp-images-data
and its dependencies that are no longer needed by Ubuntu, we can use the command below:
sudo apt-get -y autoremove visp-images-data
Remove visp-images-data Configurations and Data
To remove visp-images-data
configuration and data from Ubuntu we can use the following command:
sudo apt-get -y purge visp-images-data
Remove visp-images-data configuration, data, and all of its dependencies
We can use the following command to remove visp-images-data
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge visp-images-data
Dependencies
visp-images-data have the following dependencies:
References
Summary
In this tutorial we learn how to install visp-images-data
package on Ubuntu using different package management tools: apt, apt-get and aptitude.