<< Image Enhancement and Restoration Image Enhancement and Restoration imdeconvl2 >>

IPCV >> Image Enhancement and Restoration > imadjust

imadjust

Adjust the intensity of an image from given source histogram range to the destination histogram range

Syntax

imout = imadjust(imin,src,dest)

Parameters

imin :

Source Image

src :

Source histogram range [min max]

dest :

destination histogram range [min max]

imout :

Destination Image

Description

This function use to adjust the intensity of an image using histogram range method. The new image would be map into the new range with given min and max values

Examples

I = imread(fullpath(getIPCVpath() + "/images/balloons_gray.png"));
J = imadjust(I,[0 0.5],[0.5 1]);
imshow(I)
figure();imshow(J);

See also

Authors


Report an issue
<< Image Enhancement and Restoration Image Enhancement and Restoration imdeconvl2 >>