Vignette for imagine package

Wencheng Lau-Medrano

2020-02-06

imagine

IMAGing engINE, Tools for Application of Image Filters to Data Matrices

This package was built up to take numeric data matrices and apply image-filtering algoriths.

Algoriths used by imagine include median-filter and 2D-convolution based algoriths performed on Rcpp (C++) in order to speed up the application of this filters to large numeric matrices.

Installation

For installing imagine, as follows:

Engines

imagine performs algorithms written in Rcpp (called ‘engines’), ensuring a faster application of filters. At version 1.5.0, imagine includes four main engines, described as follows:

Main functions

There are 5 main functions and 2 wrappers:

Kernel application

In the field of image processing, one of the tools most commonly used are the convolutions, which consist of operations between two arrays: The array of image data (as a big matrix) and kernels (as small matrices) which weighs each pixel values by the values of its corresponding neighborhood. Different kernels produce different effects, for instance: blur, shifted images (right, left, up or down), sharpening, etc. The users must be cautious with the size of the kernel because the larger the radius, the more pixels remain unanalyzed at the edges.