How To Install libcvd-tools on Debian 12

Learn how to install libcvd-tools on Debian 12 with this tutorial. libcvd-tools is C++ library for computer vision, image, and video processing - tools

Introduction

In this tutorial we learn how to install libcvd-tools on Debian 12.

What is libcvd-tools

libcvd-tools is:

libCVD is a very portable and high performance C++ library for computer vision, image, and video processing. The emphasis is on providing simple and efficient image and video handling and high quality implementations of common low-level image processing function. The library is designed in a loosely-coupled manner, so that parts can be used easily in isolation if the whole library is not required. The video grabbing module provides a simple, uniform interface for videos from a variety of sources (live and recorded) and allows easy access to the raw pixel data. Likewise, the image loading/saving module provides simple, uniform interfaces for loading and saving images from bitmaps to 64 bit per channel RGBA images. The image processing routines can be applied easily to images and video, and accelerated versions exist for platforms supporting SSE.

This package contains tools and utilities using libcvd.

There are three methods to install libcvd-tools on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libcvd-tools Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libcvd-tools using apt-get by running the following command:

sudo apt-get -y install libcvd-tools

Install libcvd-tools Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libcvd-tools using apt by running the following command:

sudo apt -y install libcvd-tools

Install libcvd-tools 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 Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libcvd-tools using aptitude by running the following command:

sudo aptitude -y install libcvd-tools

How To Uninstall libcvd-tools on Debian 12

To uninstall only the libcvd-tools package we can use the following command:

sudo apt-get remove libcvd-tools

Uninstall libcvd-tools And Its Dependencies

To uninstall libcvd-tools and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove libcvd-tools

Remove libcvd-tools Configurations and Data

To remove libcvd-tools configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libcvd-tools

Remove libcvd-tools configuration, data, and all of its dependencies

We can use the following command to remove libcvd-tools configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libcvd-tools

Dependencies

libcvd-tools have the following dependencies:

References

Summary

In this tutorial we learn how to install libcvd-tools package on Debian 12 using different package management tools: apt, apt-get and aptitude.