How To Install liblimereg-dev on Ubuntu 18.04

In this tutorial we learn how to install liblimereg-dev on Ubuntu 18.04. liblimereg-dev is Library for lightweight image registration [development files]

Introduction

In this tutorial we learn how to install liblimereg-dev on Ubuntu 18.04.

What is liblimereg-dev

liblimereg-dev is:

Liblimereg automatically aligns two images with similar content to each other. Given two 2D images the algorithm returns the rigid transformation parameters detected for the best possible alignment (shift, rotation). There are also functions for a rigid image transformation (shift, rotation) and for creating a difference image out of two images.

This package contains the static library and the header file.

There are three methods to install liblimereg-dev on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install liblimereg-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 liblimereg-dev using apt-get by running the following command:

sudo apt-get -y install liblimereg-dev

Install liblimereg-dev Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install liblimereg-dev

Install liblimereg-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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

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

sudo aptitude -y install liblimereg-dev

How To Uninstall liblimereg-dev on Ubuntu 18.04

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

sudo apt-get remove liblimereg-dev

Uninstall liblimereg-dev And Its Dependencies

To uninstall liblimereg-dev and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove liblimereg-dev

Remove liblimereg-dev Configurations and Data

To remove liblimereg-dev configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge liblimereg-dev

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

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

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

References

Summary

In this tutorial we learn how to install liblimereg-dev package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.