How To Install liblimereg1 on Ubuntu 18.04

In this tutorial we learn how to install liblimereg1 on Ubuntu 18.04. liblimereg1 is Library for lightweight image registration

Introduction

In this tutorial we learn how to install liblimereg1 on Ubuntu 18.04.

What is liblimereg1

liblimereg1 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 runtime shared library.

There are three methods to install liblimereg1 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 liblimereg1 Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install liblimereg1

Install liblimereg1 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install liblimereg1 using apt by running the following command:

sudo apt -y install liblimereg1

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

sudo aptitude -y install liblimereg1

How To Uninstall liblimereg1 on Ubuntu 18.04

To uninstall only the liblimereg1 package we can use the following command:

sudo apt-get remove liblimereg1

Uninstall liblimereg1 And Its Dependencies

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

sudo apt-get -y autoremove liblimereg1

Remove liblimereg1 Configurations and Data

To remove liblimereg1 configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge liblimereg1

Remove liblimereg1 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge liblimereg1

References

Summary

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