NPP is the abbreviation of NVIDIA Performance Primitives. It is a free GPU accelerated signal and image processing library that utilizes NVIDIA CUDA enabled GPUs to accelerate processing. NPP is authored and maintained by NVIDIA Corporation. It ships along with the free CUDA Toolkit by NVIDIA.

learn more… | top users | synonyms

-4
votes
0answers
53 views

Color conversion program using CUDA NPP library [closed]

Hello everyone I am new to CUDA NPP library and its functions. Can any one provide one sample code of color conversion, any color conversion RGB to YUV or RGB to Greyscale so that I can learn it, and ...
0
votes
0answers
67 views

nppi filter box

I've been trying to use nppiBoxFilter, but to no avail, mainly because most of the usage is in reading an image and doing it. How do i use nppiBoxfilter, or nppiFilter in general with just a linear ...
1
vote
0answers
41 views

Are npp nppiAddC_8u_C1RSfs performing correctly?

Trying to make the most simple example of a function call in NPP CUDA image library, But something is going wrong, the last 3 unsigned chars in the matrix is sat to 140 instead of 13. Have debugged ...
1
vote
1answer
118 views

NPP CUDA without freeImage

Is the NPP library for CUDA build to use freeImage only or can I use other struct or just unsigned char *image as inputs in NPPs function. The reason that I a make this Question is that all the ...
6
votes
1answer
284 views

Aren't NPP functions completely optimized?

I developed a naive function for mirroring an image horizontally or vertically using CUDA C++. Then I came to know that NVIDIA Performance Primitives Library also offers a function for image ...