REMAP_CVIP

remap_cvip() - remaps the data range of input image.

Contents

SYNTAX

[ outImage ] = remap_cvip( inImage, rangeIn )

Input Parameters include:

Output Parameter includes:

DESCRIPTION

The function linearly remaps the data range of input image into a new range. The user has the choice to either specify the new range or let the function choose the default parameter. If the user doesn't pass the rangeIn input parameter, the program selects the maximun range of the datatype of input image as the new range. And in case of multiband image, the function performs the remapping in each band irrespective of the range of other bands.

REFERENCE

1. Scott E Umbaugh. DIGITAL IMAGE PROCESSING AND ANALYSIS: Applications with MATLAB and CVIPtools, 3rd Edition.

EXAMPLE

% Read images

 I = imread('butterfly.tif');

% Calling function with default range

 O1 = remap_cvip(I);

% Calling function with user defined parameters

 rangeIN = [0 200];

 O2 = remap_cvip(I,rangeIN);

% Display input image

 figure;imshow(I);title('InputImage');

% Display output image

 figure;imshow((O1));title('Remapped Image with default parameters')

 figure;imshow((O2));title('Remapped Image with User specified parameters');

CREDITS

Author: Norsang Lama, March 2017
Copyright © 2017-2018 Scott E Umbaugh
For updates visit CVIP Toolbox Website