Tagged Questions
4
votes
2answers
660 views
libjpeg decoding to BGR
I amusing libjpeg to decode a jpeg image from disk to a memory buffer allocated on the heap. I use jpeg_read_scanlines to read and decode each scanline from the file. This is working perfectly, ...
3
votes
1answer
241 views
Android: please advise a fast way to decode JPEG image
I need to decode (unpack into bitmap) pretty small (about 1200 * 1200) JPEG. The problem is I need to do it quickly. I have tried libjpeg, and it's quite slow. I have also tried ...
3
votes
2answers
130 views
Is it possible to programmatically remove restart markers from JPEG images?
Is it possible to programmatically remove restart markers from JPEG images?
2
votes
1answer
129 views
libjpeg jpeg_write_coefficients
I have created my own DCT calculation.
How do I use jpeg_write_coefficients to write my 64 DCT values into JPEG file using jpeg_write_coefficients (it needs jvirt_barray_ptr * coef_arrays)?
How do I ...
2
votes
1answer
365 views
How to use libjpeg to read a JPEG from a std::istream?
libjpeg can read JPEG data from a FILE* or a buffer. My data is coming from a std::istream. I could read the entire std::istream into a buffer to use with libjpeg, but I'd rather have libjpeg read ...
2
votes
2answers
140 views
Is using zlib (or similar) compression worth/recommended when transmitting JPEG-compressed screen tiles over network (remote screencasting app)?
I'm starting to implement some sort of remote screencasting (VNC-alike) client/server software in C++ (Windows platform), which just transmits the screen updates (image tiles) over the network.
The ...
2
votes
2answers
2k views
Write to memory buffer instead of file with libjpeg?
I have found this function which uses libjpeg to write to a file:
int write_jpeg_file( char *filename )
{
struct jpeg_compress_struct cinfo;
struct jpeg_error_mgr jerr;
/* this is a ...
2
votes
1answer
262 views
adding text to a jpeg
How can you (in C/C++) add text to a jpeg-file using libjpeg?
I do not mean by editing pixels, but by adding text to the meta-data (like the png_set_text() libpng library for png files).
1
vote
1answer
53 views
c++ compile error after upgrading from ubuntu 10.10 to 11.10
I have a program in c++ that was working and compiling on ubuntu 10.10. However, when i upgraded to 11.10 i started to get this error message:
g++ -rdynamic -o ../../../bin/camera Camera.o main.o ...
1
vote
1answer
214 views
Manipulating JPEG images pixel-per-pixel using Mini Jpeg Decoder
I want to manipulate JPEG images with C++ using the decoder Mini Jpeg Decoder.
The problem is: I want to read pixel per pixel, but the decoder only returns an imageData-array, similar as libjpeg ...
1
vote
2answers
158 views
How to check if my Linux Box installation installation has SSE instructions capabilities?
How to check if my Linux Box installation installation has SSE instructions capabilities?
I am trying to install libjpeg-turbo and I want to make sure that it fully utilizes the capabilities of my ...
1
vote
1answer
387 views
LibJPEG - Get compression ratio of image
I use LibJPEG to read JPEG compressed images. Is there a way to get the current compression ratio of the unchanged image?
Thanks for your help!
1
vote
3answers
727 views
alternatives to jpeg_read_header libjpeg
So I'm running into an issue using libjpeg on Windows which causes jpeg_read_header() to crash.
The problem is (fairly hilariously) described here: ...
1
vote
2answers
410 views
Libjpeg error - improper call in state 205
I'm using libjpeg (C/C++ programming on Windows Mobile 6.5), in order to decode images from an IP camera (sent in a MJPEG stream), before pushing them into a DirectShow graph.
Until now, I've been ...
1
vote
2answers
162 views
Pointer alignment in libjpeg
From jmorecfg.h:
#define PACK_TWO_PIXELS(l,r) ((r<<16) | l)
#define PACK_NEED_ALIGNMENT(ptr) (((int)(ptr))&3)
#define WRITE_TWO_PIXELS(addr, pixels) do { \
...
0
votes
0answers
33 views
putting meta-data into a jpeg image from libjpeg
I have a program that writes jpeg images using libjpeg turbo which is basically just a faster version of libjpeg. I would like to also write meta-data into the image that can later be retrieved by ...
0
votes
1answer
295 views
Convert YCCK jpeg to RGB
I have a jpeg image with the colors encoded in the YCCK color space. I have already decoded it in C++ using libjpeg. How can I convert it to RGB?
Converting it to CMYK would also be useful for me, ...
0
votes
2answers
419 views
generating jpeg images from Kinect with openNi/NITE
I am trying to generate pass the image frames to a face-detection/tracking algorithm from the Kinect. I've seen that the best way to generate jpeg images from openGL textures is via libjpeg but I'm ...
0
votes
1answer
1k views
Need help in reading JPEG file using libjpeg
I am doing an Open GL Texture Mapping using a .jpg image file.
I did follow the example code in the libjpeg example file, however I was not able to read the image data.
So I have the following ...
0
votes
2answers
908 views
libjpeg ver. 6b jpeg_stdio_src vs jpeg_mem_src
I am using Libjpeg version 6b. In version 8 they have a nice function to read data out of the memory called jpeg_mem_src(...), unfortunately ver. 6b does not have this function.
What can I use to ...
0
votes
1answer
96 views
Access LibJPEG functions through Magick++
I use ImageMagick Magick++ in my C++ program.
I include it with
#include <Magick++.h>
I used it a lot and it worked well, but now I need to access some functions of the libjpeg library ...
0
votes
3answers
191 views
Is decode-interrupt supported in libjpeg?
I am using libjpeg for decode jpeg file.
when decoding a large image, user may switch to another jpeg file, So is decode-interrupt supported by libjpeg?
Many thanks!
0
votes
2answers
2k views
c++ fopen is returning a file * with <bad ptr>'s
I copied this code from the libjpeg example and im passing it standard files;
FILE *soureFile;
if ((soureFile = fopen(sourceFilename, "rb")) == NULL)
{
fprintf(stderr, "can't open %s\n", ...
-4
votes
1answer
105 views
Which is slower, jpeg or png?
Is was wondering, if exists a significant difference in the decompression process of these two types of image, which is slower, JPEG or PNG?