The lossless-compression tag has no wiki summary.
6
votes
4answers
641 views
100% Java library for JPEG lossless decoding
I'm searching for a library in 100% Java which could decode JPEG images with jpeg-lossless compression.
I know that ImageIO and JAI already could decode this images, but they're needed a native code ...
5
votes
4answers
693 views
Where can I find a lossless compression algorithm, which produces headerless outputs?
Does anyone of you know a lossless compression algorithm, which produces headerless outputs?
For example do not store the huffman tree used to compress it? I do not speak about hard coded huffman ...
5
votes
2answers
2k views
What is the current state of text-only compression algorithms?
In honor of the Hutter Prize,
what are the top algorithms (and a quick description of each) for text compression?
Note: The intent of this question is to get a description of compression algorithms, ...
4
votes
3answers
766 views
String compression in Javascript
I'm looking for a Javascript function that given a string returns a compressed (shorter) string.
I'm developing a Chrome web application that saves long strings (HTML) to a local database. For ...
4
votes
3answers
3k views
Fast compression in Java?
Is there a very fast compression library for Java? The standard gzip library is slower than I would like. I'm looking for something similar to http://www.oberhumer.com/opensource/lzo/ that's native ...
3
votes
2answers
143 views
+50
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 ...
3
votes
1answer
187 views
How to make jpeg lossless in java?
Is there someone that can tell me how to write 'jpeg' file using lossless compression in java?
I read the bytes using the code below to edit the bytes
WritableRaster raster = image.getRaster();
...
3
votes
4answers
945 views
h264 lossless coding
Is it possible to do completely lossless encoding in h264? By lossless, I mean that if I feed it a series of frames and encode them, and then if I extract all the frames from the encoded video, I will ...
3
votes
2answers
247 views
What is best compression scheme for very small data as1.66kBytes
this data is stored in an array (using C++) and is repitition of 125 bits each one varying from other also has 8 messages of 12 ASCII characters each at end.....
Please suggest that should i use ...
3
votes
6answers
346 views
What is the best compression library for very small amounts of data (3-4 kib?)
I am working on a game engine which is loosely descended from Quake 2, adding some things like scripted effects (allowing the server to specify special effects in detail to a client, instead of having ...
3
votes
4answers
596 views
Optimizing image load times. (thinking differently)
I've created an interactive image thing...but it takes a little too long to load.
The interactive image thing is located at:
southernwindowdesign.com
It uses 5 images to step through each state ...
2
votes
1answer
80 views
How to compress an alphabet consisting of DNA sequence
I want to compress a DNA sequence with a compression technique rather than Huffman and Adaptive Huffman algorithm, i'm using c# as a programming language.
can anyone lead me to an algorithm.
Note: I ...
2
votes
3answers
73 views
Is Jpeg lossless when quality is set to 100?
I understand that jpeg is a lossy compression standard, and that the 'quality' factor controls the degree of compression and thus the amount of data loss.
But when the quality number is set to 100, ...
2
votes
3answers
1k views
lossless video codec playback in Java
I need to encode a sequence of frames with a lossless video codec and play them in a Java app. I don't care about the file size. The output frames should match the input frames exactly. Lossy codecs ...
1
vote
1answer
64 views
Lossless and Identical way - BufferedImage to File
I have a BufferedImage Object which I have manimulated it pixels (The numeric values). Now how can I save it to a file - preferable JPEG file - without any change in pixels values???
1
vote
0answers
258 views
How to achieve minimum size when compressing small amount of data lossless?
I don’t understand the answer to ”Why does gzip/deflate compressing a small file result in many trailing zeroes?”
(Why does gzip/deflate compressing a small file result in many trailing zeroes?)
How ...
1
vote
6answers
422 views
Hardware Lossless Compression for Hard Drives?
I happened across this article about hardware based hard drive encryption and realized that not only would this give a great way to protect your data but it would also speed up the applications that ...
0
votes
0answers
18 views
dealing with ljpeg (lossless jpeg) using matlab
I am dealing now with DDSM database (Digital Database for Screening Mammography) .. its disadvantage is its extension. It is extension is ljpeg (lossless jpeg) which it is very poorly supported ...
0
votes
4answers
105 views
Making a list of integers more human friendly
This is a bit of a side project I have taken on to solve a no-fix issue for work. Our system outputs a code to represent a combination of things on another thing. Some example codes are:
...
0
votes
0answers
81 views
Lossless and lossy Compression examples
I'm interested in the theory behind lossless and lossy compression rather than its applications. Would someone be able to give me and example of both using say, bit strings (so I don't care if its ...
0
votes
3answers
356 views
Huffman coding for Lossless Compression
I really need help with Huffman Coding for Lossless compression. I have an exam coming up and need to understand this, does anyone know of easy tutorials made to understand this, or could someone ...
0
votes
2answers
335 views
Save space writing bitset to a file in C++
I was wondering how I can save space writing a bitset to a file ( probably using iostream) in c++. Will breaking up the bitset into bitset of size 8 and then writing each individual bitset to the ...
0
votes
1answer
30 views
array data compression that is holding 13268 bits(1.66kBytes)
i.e array is having 100*125 bits of data for each aircraft+8 ascii messages each of 12 characters
what compression technique should i apply to such data
0
votes
1answer
44 views
Compression Image
I am having SQL Server2005 Database where half of the data is Image which isin various formats.
I want to convert all the image into jpeg2000 format and want to resize(reduce the size) the Images ...
0
votes
5answers
1k views
Using jpegtran, jpegoptim, or other jpeg optimization/compression in C#
I've got 100's (maybe 1000's) of products with 10-30 images of each product coming to an online store I've put together. I need to optimize the images' file sizes as much as possible without loosing ...
-1
votes
2answers
204 views
Image processing with lossy compression
If we compare image procesing of the losslessly compressed images with the image processing of the lossy compressed images, does the latter provide the results comparable to the former one.
I am ...