CUDAColorNegate[image]
performs color negation on image.
CUDAColorNegate[list]
performs color negation on list.
CUDAColorNegate[mem]
performs color negation on memory referenced by mem.
CUDAColorNegate
CUDAColorNegate[image]
performs color negation on image.
CUDAColorNegate[list]
performs color negation on list.
CUDAColorNegate[mem]
performs color negation on memory referenced by mem.
Details and Options
- The CUDALink package must be loaded using Needs["CUDALink`"].
- CUDAColorNegate works with binary, grayscale, and other images.
- CUDAColorNegate works with CUDAMemory and lists.
- If multiple image channels are present, CUDAColorNegate operates on each of them separately.
- If the input type is Real, then the input is subtracted from 1.0, not 255.
- CUDAColorNegate does not work on fixed vector structure types like "Float[2]", "Integer32[2]", ….
- The following options can be given:
-
"Device" $CUDADevice CUDA device used to perform computation "OutputMemory" None output memory provided to avoid creating new memory location
Examples
open all close allBasic Examples (5)
First, load the CUDALink application:
Needs["CUDALink`"]This performs color negation on the input color image:
CUDAColorNegate[[image]]This inverts a grayscale image:
CUDAColorNegate[[image]]CUDAColorNegate[[image]]This performs color negation on the input list:
CUDAColorNegate[{{1.0, 0.5, 0.0}}]If the input is CUDAMemory, then memory is returned as output:
m = CUDAMemoryLoad[[image]]res = CUDAColorNegate[m]Memory is retrieved using CUDAMemoryGet:
CUDAMemoryGet[res]Interactive Examples (1)
Animate[CUDAImageAdd[CUDAImageMultiply[[image], ii], CUDAImageMultiply[CUDAColorNegate[[image]], jj]], {ii, 1.0, 0.0}, {jj, 0.0, 1.0}]See Also
Tech Notes
Related Guides
-
▪
- CUDALink
Text
Wolfram Research (2010), CUDAColorNegate, Wolfram Language function, https://reference.wolfram.com/language/CUDALink/ref/CUDAColorNegate.html.
CMS
Wolfram Language. 2010. "CUDAColorNegate." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/CUDALink/ref/CUDAColorNegate.html.
APA
Wolfram Language. (2010). CUDAColorNegate. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/CUDALink/ref/CUDAColorNegate.html
BibTeX
@misc{reference.wolfram_2026_cudacolornegate, author="Wolfram Research", title="{CUDAColorNegate}", year="2010", howpublished="\url{https://reference.wolfram.com/language/CUDALink/ref/CUDAColorNegate.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_cudacolornegate, organization={Wolfram Research}, title={CUDAColorNegate}, year={2010}, url={https://reference.wolfram.com/language/CUDALink/ref/CUDAColorNegate.html}, note=[Accessed: 13-June-2026]}