GPUJPEG
GPUJPEG copied to clipboard
JPEG encoder and decoder library and console application for NVIDIA GPUs from CESNET and SITOLA of Faculty of Informatics at Masaryk University.
Hi @MartinPulec, I have a question, I have the crazy idea to want to run gpujpeg using Vulkan for that I was looking a project call Vuda : https://github.com/jgbit/vuda The...
Not an issue but a nice feature will be to get GPUJPEG available on conancenter. Based on the structure of the project it should be not too problematic to add...
Can we use this compression algorithm to run tiff remote sensing images on NVIDIA Jetson platform
Hello, I'd like to add 12bit greyscale support if its not already on the horizon. I'm still trying to figure out how difficult a task it is. Any pointers on...
Thank you for such performant library! While I am using it along with OpenCV's GpuMat, a drawback is that GPUJPEG requires input images to be contiguous with zero gap between...
Is it possible to compress png format images into jpeg or jpg formats? I have a png wallpaper with a resolution of 8000*4113. I try to compress it. The console...
Otherwise `gpujpeg_coder_get_stats` would fail because a counter is neither started nor reset.
Hello, I'm currently using the `gpujpeg_image_load_from_file` function to open images in a C++ project. However, I've encountered an issue when trying to open files that have special characters in their...
The gpujpeg_writer_init function allocates memory on the host with malloc, without giving the option to the user to instead allocate on the GPU memory or with pinned memory. If someone...
I ran the decode_to_raw_rgb.c example, and the decoding takes a long time. I found that it is calling gpujpeg_huffman_cpu_decoder_decode for decoding, and coder->segment_count = 1. I would like to ask...