Specifications

Intel
®
Image Processing Library Reference Manual
5-12
5
Not
Performs a bitwise NOT
operation on each pixel.
void iplNot(IplImage*
srcImage
, IplImage*
dstImage
);
srcImage
Thesourceimage.
dstImage
The resultant image.
Discussion
The function iplNot() performs a bitwise NOT operation on each pixel
value.
AndS
Performs a bitwise AND
operation of each pixel
with a constant.
void iplAndS(IplImage*
srcImage
, IplImage*
dstImage
,
unsigned int
value
);
srcImage
Thesourceimage.
dstImage
The resultant image.
value
The bit sequence used to perform the bitwise AND
operation on each pixel.
Discussion
The function iplAndS() performs a bitwise AND operation between each
pixel value and
value
. The least significant bit(s) of the
value
are used.