Tagged Questions
5
votes
4answers
534 views
How to read data from a zip file without having to unzip the entire file
Is there anyway in .Net (C#) to extract data from a zip file without decompressing the complete file?
Simply I possibly want to extract data (file) from the start of a zip file, obviously this ...
5
votes
5answers
421 views
compressed vector/array class with random data access
I would like to make "compressed array"/"compressed vector" class (details below), that allows random data access with more or less constant time.
"more or less constant time" means that although ...
3
votes
4answers
2k views
Compression algorithms for numbers only
I am to compress location data (latitude,longitude, date,time). All the numbers are in fixed format. 2 of them (latitude,longitude) are with decimal format. Other 2 are integers.
Now these numbers ...
2
votes
2answers
125 views
Are there any current C/C++ libraries filled with well-known compression algorithms?
I am looking for a C or C++ library that includes several well-known compression algorithms (particularly lossless ones), for the purpose of developing a custom compression scheme and comparing it to ...
2
votes
3answers
186 views
Any theoretical limit to compression?
Imagine that you had all the supercomputers in the world at your disposal for the next 10 years. Your task was to compress 10 full-length movies losslessly as much as possible. Another criteria was ...
0
votes
1answer
30 views
What is the best/quickest method to upload a very large folder to my Server?
I have a large directory which I need to upload to a new host's server, but because I have never transferred such a large directory (32GB), I am wondering whether there is something I'm missing.
Now, ...
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
3answers
75 views
Compressing measurements data files
from measurements I get text files that basically contain a table of float numbers, with the dimensions 1000x1000. Those take up about 15MB of space which, considering that I get about 1000 result ...
0
votes
2answers
47 views
Is Result of Lossless compression is really the original data?
I would like to know ,Is result of Lossless compression on data produces bit for bit perfect match with original data ,if so then what use of having such compression.Is it really useful to use ...
0
votes
1answer
25 views
Question about the compressibility of certain groups of numbers
Lets say we have a bunch of numbers that increment in small values from a large offset
eg offset = 123456789
our numbers are:
123456790
123456791
123456793
123456796
123456799
123456804
if we ...
0
votes
7answers
234 views
Is Terra Compression possible? If so, please explain and provide samples
Long Ascii String Text may or may not be crushed and compressed into hash kind of ascii "checksum" by using sophisticated mathematical formula/algo. Just like air which can be compressed. To compress ...
0
votes
6answers
462 views
Binary Array Compression in C
I have binary array in c, I want to compress the array, kindly suggest me algorithm which compress binary array. I have used Lempel–Ziv–Welch (LZW) algorithm but its not suitable for me because there ...
0
votes
6answers
253 views
Data Compression
i have a task to compress a stock market data somehow...the data is in a file where the stock value for each day is given in one line and so on...so it's a really big file.
Eg,
123.45
234.75
...