0
votes
1answer
21 views

Is there any threshold where bitmap compression stops, considering feedback input?

I compress an image to JPEG format using a quality factor. I again use the newly compressed image and again compress it using same quality factor. Every time result is different. Is there any ...
5
votes
2answers
127 views

JPEG image compression

I am looking at the problem of reducing storage space when storing multiple JPEG images together as a single bigger image. The basic intuition is that images tend to have some similarities (like ...
0
votes
1answer
246 views

OpenCV - Possible Options for Image Compression

thanks for taking the time to read my post. I'm working on a little project that is going well but as an optimisation exercise I would like to reduce the size of some of the JPEG's i'm outputting. ...
0
votes
1answer
45 views

Compressing scanned jpegs with imagick [closed]

I'm building a web service which will be storing scanned pictures of text documents as jpegs, and i need to push down the filesize as much as possible without degrading the images too much. On the ...
0
votes
0answers
471 views

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 ...
1
vote
2answers
159 views

Trying to compress images (Gzip+Jpeg) and then uncompress them

I am trying to compress a sequence of images in png format. It seems that compression is going well: FileOutputStream fos = null; GZIPOutputStream gzip = null; fos = new ...
3
votes
1answer
56 views

does JPEG compression ensure only source colors in the file? [closed]

If I have a restricted gamut of colors in my image (to adhere to a CMYK gamut), does saving my file as a JPEG ensure that no new colors are introduced into the saved file? Since JPEG is lossy, and it ...
10
votes
1answer
223 views

Hierarchical JPEG Encoder/Decoder

Does anyone knows of any implementation of the hierarchical JPEG mode (ITU T.81) ? I am not talking about progressive mode (or sequential), I really mean the hierarchical mode.
2
votes
2answers
108 views

Distribution of bytes within jpeg files

when observing compressed data, I expect an almost uniformely distributed byte stream. When using the chi square test for measure the distribution, I get this result e.g. for ZIP-files and other ...
2
votes
1answer
133 views

JPEG Compression Implementation Questions

I'm trying to implement JPEG Compression (or as close to it as I can), but there are some points that I need clarity on with the actual implementation. I will explain what I currently know and where I ...
1
vote
1answer
90 views

Compress .ipa monotuch

Starting from the assumption that I have deleted all unnecessary files, i have my app that contains a folder with jpg images (1024*700 resolution minimum permitted) where the size is 400 MB. When ...
3
votes
1answer
119 views

What are the input values for DCT?

So I am trying to write a simple bmp to jpeg image converter program. As you may know there are 3 major steps involved in jpeg compression, DCT, Quantization and entropy encoding. I want to write the ...
1
vote
3answers
190 views

Save JPG with compression in MonoMac

This is my MonoMac code for saving a JPG with compression. It's pretty simple, just set the NSImageCompressionFactor apparently. Shame it doesn't work. public void SaveImage(NSImage MyNSImage,string ...
2
votes
1answer
113 views

raw mono 8 bit bytearray to jpeg using hardware accelaration

First thing I need to say is that I'm very very new to programming. And, I am stuck with a very stupid problem: I need to compress a Raw mono 8 bit bytearray grayscale image to Jpeg (to save space) at ...
0
votes
0answers
60 views

Can different ftp servers affect image compression?

I've recently been attempting to troubleshoot that image assets in an email where looking very compressed particularly on mobile/iphone. After a lot of testing (initially on psd settings/saving for ...
0
votes
1answer
130 views

How can I access a .jls file's contents (JPEG-LS compressed) or its bitstream so that I may further compress it using C#?

JPEG-LS is a lossless image compression algorithm for continuous-tone images. Images compressed using JPEG-LS results to a file with an extension of ".jls". How may I access this file using C#, or ...
1
vote
0answers
262 views

Using the jpeg quantization matrix of one image to compress another image

I have two images, A and B, and I need to estimate B's quantization table and compress A using this table. What is the best way to do this, using libjpeg or, even better, opencv? I've used libjpeg's ...
1
vote
1answer
261 views

iOS vs Photoshop JPEG Compression

I have a simple question for anyone who knows the answer to this... I am making a social photo sharing app and I want to save a large enough image in the app so that it can be used in a full screen ...
0
votes
0answers
88 views

JPEG Underflow/Overflow

I compressed several images in matlab ( with JPEG Toolbox ). but if I change the image or change the quality factor, magnitude of recovered images ( after dequantization and IDCT ) May fall outside ...
0
votes
1answer
62 views

When to add to archive?

I'm building a website that acts as a portfolio for a companies advertising works. They upload files, can view it in the gallery and such. Another feature they want is for privileged users to be able ...
2
votes
2answers
177 views

Why do image compression algorithms process the image by sub-blocks?

For instance, consider the DFT or DCT. Precisely, what would be the differences between an image transformed by sub-blocks, and an image transformed whole? Is the resulting file size smaller? Is the ...
0
votes
1answer
303 views

quantization of dct image for steganography

I hav a greyscale image. I did 8x8 blocks and computed each of their DCTs. I want to quantize the DCT coefficients and then replace their LSBs with my secret message bits. How exactly do I quantize ...
1
vote
3answers
467 views

Compress jpeg on server with PHP

I have a site with about 1500 JPEG images, and I want to compress them all. Going through the directories is not a problem, but I cannot seem to find a function that compresses a JPEG that is already ...
0
votes
2answers
487 views

Why JPEG compression processes image by 8x8 blocks?

Why JPEG compression processes image by 8x8 blocks instead of applying Discrete Cosine Transform to the whole image?
1
vote
1answer
140 views

Still images to video for storage - But back to still images for viewing

Using ffmpeg I can take a number of still images and turn them into a video. I would like to do this to decrease the total size of all my timelapse photos. But I would also like to extract the still ...
3
votes
1answer
240 views

Compression: Saving JPEG image at specified bit rate in Java / Scala

I'm interested in saving a JPEG image so that I can specify the total number of bits used to encode all the pixels in the compressed form. For example, if I have a 4 channel image of size 1024 x 1024, ...
0
votes
2answers
270 views

How to get JPEG module working in PIL

I installed PIL and all the jpeg dependencies for using the jpeg module in PIL docs : http://docs.python.org/library/jpeg.html I want to use the jpeg.compress() method stated there. But when i ...
0
votes
2answers
74 views

What are the steps in which loss takes place in jpeg compression?

JPEG is a lossy image compression which can give a high compression ratio. As far as I know, information loss takes place in JPEG during quantization. Are there any other steps in JPEG compression ...
0
votes
2answers
2k views

How to reduce size of JPEG Image in Android

In my application, I am invoking the camera application and taking a picture and saving it in a particular directory (E.g. /sdcard etc) The picture is saved as a JPEG image. How do I reduce the size ...
0
votes
2answers
209 views

Data Compression and Image Compression

Is there any difference between data compression and image compression when compressing JPEG images?
2
votes
2answers
114 views

Is there any reason why GD would compress my resized image in this situation

I have a process where I'm taking a JPG and resizing it. My intention is to not apply any additional compression and simply modify the dimensions, however, after the code runs the image is of smaller ...
0
votes
3answers
271 views

How can I compress screenshot to send it via net?

My app make screenshot using methods from WinAPI. Screen is ok, it is saved as gif and has 76 kB. Jpg, png and other formats have more size. I have to send this file via net and it takes several ...
3
votes
4answers
156 views

How are matrices stored in memory?

Note - may be more related to computer organization than software, not sure. I'm trying to understand something related to data compression, say for jpeg photos. Essentially a very dense matrix is ...
1
vote
2answers
526 views

Detect JPG Compression Rate with PHP?

Normally when an image comes into my site I save it as jpg using an image library I wrote with the default quality of 80%. Now when I need to do some other operation on it (like cropping it, or even ...
1
vote
1answer
542 views

JPEG file quantization table definition

When I use Photoshop Save As function, and pick jpeg file format I get following window: As you can see, I select Baseline ("Standard") format, and maximum picture quality. When I open this picture ...
0
votes
1answer
204 views

How can I compress jpeg image with compression rate 4 bpp or less?

I am trying to compress my .jpeg image in Photoshop. WHat is the best way to do this? I am now calculating the bpp taking the image size in kb, calculating how many bits that is. Then I take the ...
3
votes
2answers
952 views

Fast DCT transformation

Standard equation for generating DCT coefficients in JPEG compression process is DCT formula given by: I have red that this implementation is expensive (slow), and there is much faster way. Is ...
2
votes
4answers
668 views

Is this possible to compress a JPEG file with zip libraries

As I know the jpeg file have a best compression ratio between another image extensions, and if I correct we can not more compress a jpeg file because that have best compression, so please help me ...
1
vote
1answer
221 views

Remove high-frequency coefficients from JPG image

Based on this question's answer, I need to remove the high-frequency DCT coefficients from my image during decompression to get a smaller image. I've been searching for a way to do this, and it seems ...
0
votes
1answer
430 views

Huffman Coding in JPEG

This is my JPEG picture hex content (I marked FFC4 marker on picture). As you can see, after the byte 0x01 there is value 0xA2! How that can be possible, because the standard says that the next 16 ...
9
votes
3answers
925 views

c# saving very large bitmaps as jpegs (or any other compressed format)

I am currently handling very large images, which are basically generated by stitching together many smaller images (e.g. panorama or photo mosaic software). In order to avoid out-of-memory exceptions ...
8
votes
2answers
2k views

Library for further (lossless) Jpeg-compression

I'm looking for a library specialized at compressing Jpegs even further without changing the image. I've found PackJpeg but it doesn't provide any source code and you're not allowed to use it ...
1
vote
1answer
680 views

Error with setCompressionType

Is there someone that can help to correct this code? I'm working with JAI and I'm trying to compress JPG file to Losse-less here's my code `ImageWriter writer= (JPEGImageWriter) ...
1
vote
1answer
319 views

Compress multiple jpeg files together in C#

I was trying compress jpeg files (say 16 files) together using C#. I did successfully created a tar file and finally a tar.gz (using C# GZipStream class). But the problem with my solution is that the ...
0
votes
1answer
653 views

How to create pyramid tiled TIFF from JPEG image in lossless way

I need to create tiled pyramid TIFF file with JPEG-compressed tiles from large JPEG image using lossless jpeg operations i.e. crop in jpegtran. Is there any tool or java code around to perform such ...
6
votes
3answers
367 views

jpeg file format question

I'm trying to write a JPEG/JFIF encoder and decoder from scratch using C. I experimented writing a sample JPEG file, but it seems that I cannot open it using MS paint, Firefox. But I can decode it ...
0
votes
1answer
204 views

pipeline image compression

I have a custom made web server running that I use for scanning documents. To activate the scanner and load the image on screen, I have a scan button that links to a page with the following image tag: ...
1
vote
1answer
671 views

Compressing Pixel data to jpg/png format

Hi currently i am using C#, I have pixel data of an image which i want to convert to Jpg/png format? Can you suggest me any libraries or does .net provide any compression API?
2
votes
3answers
1k views

How to compress and uncompress JPEG using lossless method?

How to compress and uncompress JPEG using lossless method?
2
votes
1answer
580 views

Compress JPG make the image turn green

When I try to compress the a jpg image, most of the time it work perfectly, however some jpg image turn green after the compression. Here is my code public void compressImage(String filename, String ...

1 2