Threshold

 

function call:

[out_img1]=vsg('Threshold',in_img1,thresh);

 

Arguments:

in_img1 input image, 3 channel RGB, 1 channel greyscale or binary image, or DICOM image.

thresh – an integer or double specifying the threshold for the greyscale threshold function.

 

Description:

out_img1 – An image which has dimensions the same as the input image. The output pixel values are white if they are larger than or equal to thresh, otherwise they are black.

 

Example:

img = openimage('crown.jpg');

h=figure;image(uint8(img));set(h,'Name','Input Image');

[out_img1]=vsg('Threshold',img,100);

h=figure;image(uint8(out_img1));set(h,'Name','Threshold');

 

Notes:

1. For DICOM images, the function operates on all slices separately.

2. For RGB images, the function operates on all colour planes separately.

Home    Function    Back