How To Install libcvd-dev on Debian 12

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

Introduction

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

What is libcvd-dev

libcvd-dev 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 the development files.

There are three methods to install libcvd-dev 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-dev 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-dev using apt-get by running the following command:

sudo apt-get -y install libcvd-dev

Install libcvd-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install libcvd-dev

Install libcvd-dev 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-dev using aptitude by running the following command:

sudo aptitude -y install libcvd-dev

How To Uninstall libcvd-dev on Debian 12

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

sudo apt-get remove libcvd-dev

Uninstall libcvd-dev And Its Dependencies

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

sudo apt-get -y autoremove libcvd-dev

Remove libcvd-dev Configurations and Data

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

sudo apt-get -y purge libcvd-dev

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

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

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

Dependencies

libcvd-dev have the following dependencies:

References

Summary

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