Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JPEG library in CUDA

I am trying compress and decompress images in CUDA. So far I've found this library: http://sourceforge.net/projects/cuj2k/?source=navbar

But there isn't much documentation available.

Does anyone know about any well documented (with example code) JPEG compression and decompression libraries to use in CUDA?

like image 304
rootcage Avatar asked Nov 04 '22 07:11

rootcage


1 Answers

The NPP library includes building block routines for implementing a JPEG codec. It is included as part of the CUDA distribution. Check out the JpegNPP sample in the SDK: http://docs.nvidia.com/cuda/cuda-samples/

like image 172
Jonathan Cohen Avatar answered Nov 09 '22 11:11

Jonathan Cohen