Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
11answers
4k views

What is the computer science definition of entropy?

I've recently started a course on data compression at my university. However, I find the use of the term "entropy" as it applies to computer science rather ambiguous. As far as I can tell, it roughly ...
5
votes
4answers
548 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 ...
5
votes
4answers
2k views

How do I compute the approximate entropy of a bit string?

Is there a standard way to do this? Googling -- "approximate entropy" bits -- uncovers multiple academic papers but I'd like to just find a chunk of pseudocode defining the approximate entropy for a ...
4
votes
2answers
376 views

How can one compute the optimal parameters to a start-step-stop coding scheme?

A start-step-stop code is a data compression technique that is used to compress number that are relatively small. The code works as follows: It has three parameters, start, step and stop. Start ...
3
votes
1answer
53 views

Column level compression in SQL Server

I have a column that I would like to store a lot of text data in (XML data). Approx 8,000 chars per row, and about 100-500 rows per minute. That much data means I will have to purge the column out ...
3
votes
5answers
287 views

Data Aggregation in SQL Server 2005

I need a query for SQl server 2005 (SQL server management studio express). I have data stored as 1 minute time frame (1 minute each row), for each table columns are ID, Symbol, DateTime, Open, High, ...
3
votes
8answers
369 views

Matrix compression methods

In an application I've been working on, I have to send a 256 x 256 matrix over a socket. I'm developing a visualization client for a offshore system simulator that runs on a cluster, and this matrix ...
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
3answers
54 views

Alternatives to GZIPInput/OutputStream with better compression ratios?

I need to store abitrary binary data (essentially files of various common formats, JPEG, PDF, MS-Office and some other odd files). Slow compression is not a problem, but I'm looking for reasonably ...
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
1answer
122 views

Data compression in python/numpy

I'm looking at using the amazon cloud for all my simulation needs. The resulting sim files are quite large, and I would like to move them over to my local drive for ease of analysis, ect. You have to ...
2
votes
2answers
85 views

Design question on storing meteorological data on SQL Server 2008

We're using SQL Server 2008 R2 Enterprise Edition. We are measuring meteorological data from what we call MetMasts. Basically this is a mast with lots of equipment; anemometers (for wind speed) at ...
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 ...
2
votes
3answers
533 views

parsing large compressed xml files, python

file = BZ2File(SOME_FILE_PATH) p = xml.parsers.expat.ParserCreate() p.Parse(file) Here's code that tries to parse xml file compressed with bz2. Unfortunately it fails with a message: TypeError: ...
2
votes
2answers
103 views

Recommended Resources for Data Compression Research

I'm looking for recommended resources on data compression; any studies on techniques, data structure and/or algorithms; any useful resources related to research, any books, organizations or any other ...
1
vote
1answer
48 views

Compression of strings in different databases

Can mysql-server-express compress strings? if you could give me a link to some documentation that says so it will be much appreciated as I can't seem to find this info. I know that mysql allows this ...
1
vote
1answer
89 views

Is there a practical way to compress NSData?

I haven't seen any documentation on the topic, but that doesn't mean it doesn't exist.
1
vote
4answers
75 views

compact representation and delivery of point data

I have an array of point data, the values of points are represented as x co-ordinate and y co-ordinate. These points could be in the range of 500 upto 2000 points or more. The data represents a ...
1
vote
4answers
757 views

how do you store raw bytes as text without losing information in python 2.x?

Suppose I have any data stored in bytes. For example: 0110001100010101100101110101101 How can I store it as printable text? The obvious way would be to convert every 0 to the character '0' and ...
0
votes
2answers
35 views

Android file compression

In our application we need to send a file (SQLite database) through email. We want to compress the file before it is sent through internet. The problem is how? can someone help me? Thanks for your ...
0
votes
0answers
18 views

Storage feasibility of message queued IRC-clone

I'm wondering about the feasibility of an asynchronous IRC-like chat server, where participants instead of having to be online continuously to get all the messages could disconnect but subscribe to ...
0
votes
1answer
31 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
1answer
141 views

Unable to compress file during Huffman Encoding in Java

I have implemented the Huffman Encoding Algorithm in Java using Priority Queues where I traverse the Tree from Root to Leaf and get encoding example as #=000011 based on the number of times the symbol ...
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
124 views

Converting string of 1s and 0s into binary value, then compress afterwards ,PHP

I have a string for example: "10001000101010001" in PHP I am compressing it with gzcompress, but it compresses ASCII equivalent. I would like to compress the string as if it were binary data not it ...
0
votes
3answers
189 views

How to reduce a bigger string in smaller string in C++? Probably by hashing?

I want to compress a bigger string into a smaller string in C++. What are the different ways to do this in C++? The requirement is that output should also be a string.
0
votes
0answers
50 views

Discover compression format of file - Mac [closed]

I am trying to discover the way in which this database file is built. It seems to be a standard storage file, but with some form of encryption or compression. Does anyone know any good way of me ...
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
1answer
77 views

On compressing series of ones and zeroes

I'm in need of compressing a series of 1 and 0 like this one http://cid-f328e92ab80e3d64.office.live.com/self.aspx/.Public/bits.txt Can anyone suggest me what coder to user to achieve best ...
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
141 views

Compression/Decompression for DataSet or any .Net Object

I'm developing a WPF App, in which I want to encrypt and compress heavy DataSet or Objects (<2MB) and send it across over the network. The other party would decompress and decrypt the data and ...
0
votes
1answer
115 views

Trying to compress in zlib format with low level access to the stream

I'm trying to implement Microsoft specification for message.rpmsg format (here: http://msdn.microsoft.com/en-us/library/ee625343(v=EXCHG.80).aspx). The specification is weird combination of zlib ...
0
votes
2answers
128 views

data compression Http 1.1

Have a query regarding data compression in HTTP1.1. My apache compresses the HTML/CSS/JS files which get requested by the browser. But wht about the serialized data that gets passed on the wire as a ...
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
1answer
134 views

Does an algorithm exist to convert any number in the Aleph-Null set into the smallest possible computable number? [closed]

Possible Duplicate: Programming Logic: Finding the smallest equation to a large number. I'm looking for an algorithm that will take an arbitrary number from the Aleph-Null set (all positive ...
0
votes
1answer
68 views

need help with zlib!

I wanted to compress my pages so I put ob_start('ob_gzhandler'); at the beginning of my php header file. however as I was playing around I noticed it will give me a blank page if I start a session ...
0
votes
1answer
68 views

Compression File

I have a X bytes file. And I want to compress it in block of size 32Kb, for example. Is there any lib that Can I do this? I used Zlib for Delphi but I just can compress a full file in new compressed ...
0
votes
6answers
254 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 ...
0
votes
4answers
976 views

Convert high-resolution images to low-resolution

I am doing a web project on media manager. I upload high resolution images and need to convert these images to low resolution, so that the resulting image is compressed into a smaller size. How is ...
0
votes
1answer
243 views

How do I gzip my html source

I would like to gzip the html sources of my webpages, what's the best way to do it on a lighttpd/php5 server. I have tried to do it by editing my php.ini file with: zlib.output_compression = On ...
0
votes
2answers
86 views

Video and audio file

Duplicate: audio and video file compressor I would like to compress a wmv 2mb or larger file to 3gp 250kb file for mobile devices. any great compressors for video or audio?
0
votes
1answer
99 views

Data Compression Video Tutorials?

Does anyone know where I can find video/screencast tutorials on data compression?
0
votes
4answers
755 views

Explanation about hashing and its use for data compression

I am facing an application that uses hashing, but I cannot still figure out how it works. Here is my problem, hashing is used to generate some index, and with those indexes I access to different ...
-1
votes
3answers
54 views

Medical data real-time data compression algorithm

I am looking for a robust, efficient data compression algorithm that I could use to provide a real-time transmission of medical data (primarily waveforms - heart rate, etc.). I would appreciate any ...
-4
votes
2answers
40 views

Store an image in disk

I have a 1x1 inch passport photo and I want to store it in a computer disk in a way I minimize the size but also been able to print it back to the real world. What do you recommend me? Thanks in ...