Specifications

Intel
®
Image Processing Library Reference Manual
5-14
5
XorS
Performs a bitwise XOR
operation of each pixel
with a constant.
void iplXorS(IplImage*
srcImage
, IplImage*
dstImage
,
unsigned int
value
);
srcImage
Thesourceimage.
dstImage
The resultant image.
value
The bit sequence used to perform the bitwise XOR
operation on each pixel.
Discussion
The function iplXorS() performs a bitwise XOR between each pixel
value and
value
. The least significant bit(s) of the
value
are used.
Dyadic Logical Operations
This section describes the library functions that perform dyadic logical
operations. These functions use two input images to create an output
image.