CImage:Exp CImage:Log

CImage:ExtractByte


The ExtractByte method creates a new image containing a byte plane from a numeric image. For example, this creates an image consisting of the high order byte of a ushort type image.

Syntax

bResult = CImage:ExtractByte( nPlane )

    nPlane is the plane number, beginning at 1.

    On success, this method returns true.

    On failure, this method returns false.

Example

Suppose that a CImage I exists and has long data type. The following script fragment creates 4 new images, one each for the 4 bytes of the original image pixels:

 

S = CImageSet:new()

-- create an image set to hold the images

for i=1, 4 do

-- do for each of the 3 channels

  Iplane = I:ExtractByte(i)

-- extract the byte plane to a new image

  S:Append( Iplane )

-- add to the end of the image set

end

 

I = S:GetImage(1)

-- retrieve the lowest order byte plane

Related Topics

CImage, RgbExtract, Data Types