Function:NOT

From CUVI Wiki
Revision as of 15:12, 19 April 2013 by Jawad (talk | contribs)

Performs a bitwise NOT operation on each pixel

Function

CuviStatus NOT(const CuviImage& src,
               CuviImage& dst,
               const CuviStream& stream = CuviStream());

Parameters

Name Type Description
src const CuviImage& Input Image
dst CuviImage& Destination Image
stream const CuviStream& GPU stream ID for execution

Image Type Support

Input Output
8uC1 8uC1
8uC3 8uC3
16uC1 16uC1
16uC3 16uC3

Sample

Error creating thumbnail: Unable to save thumbnail to destination
Input Image
Error creating thumbnail: Unable to save thumbnail to destination
Negative Image


Example

//Creating GPU images
CuviImage gimg = cuvi:io::loadImage(path), gout;

	
//Computing Negative of the image
cuvi::arithmeticLogical::NOT(gimg,gout);