xil_not(3)
NAME
xil_not − bitwise logical NOT operation.
SYNOPSIS
#include <xil/xil.h>
void xil_not (XilImage src,
XilImage dst);
DESCRIPTION
This function performs a bitwise logical NOT operation on each pixel of the src (source) image and stores the results in the dst (destination) image.
ERRORS
For a complete list of XIL error messages by number, consult Appendix B of the XIL Programmer’s Guide.
EXAMPLES
Bitwise logical NOT image1 and store the result in dst :
XilImage image1, dst;
xil_not(image1 dst);
NOTES
Source and destination images must be the same data type and have the same number of bands. In-place operations are supported.
SunOS — Last change: 16 June 1993