How To Install limereg on Debian 10

Learn how to install limereg on Debian 10 with this tutorial. limereg is Lightweight Image Registration

Introduction

In this tutorial we learn how to install limereg on Debian 10.

What is limereg

limereg is:

Command line application for image registration. Automatically finds an optimal alignment of two input images, that makes both most similar to each other. Outputs the rigid transformation parameters (shift and rotation) and/or the registered (transformed/aligned) image.

Fast algorithm based on analytical derivative based optimization with a multilevel approach and without expensive sparse-matrices.

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

Install limereg Using apt-get

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

sudo apt-get update

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

sudo apt-get -y install limereg

Install limereg Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install limereg

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

sudo aptitude -y install limereg

How To Uninstall limereg on Debian 10

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

sudo apt-get remove limereg

Uninstall limereg And Its Dependencies

To uninstall limereg and its dependencies that are no longer needed by Debian 10, we can use the command below:

sudo apt-get -y autoremove limereg

Remove limereg Configurations and Data

To remove limereg configuration and data from Debian 10 we can use the following command:

sudo apt-get -y purge limereg

Remove limereg configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge limereg

Dependencies

limereg have the following dependencies:

References

Summary

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