Tagged Questions

4
votes
10answers
738 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 c …
3
votes
2answers
206 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 a …
2
votes
2answers
49 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, organiz …
1
vote
4answers
53 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 da …
1
vote
4answers
297 views

Compression algorithms for numbers only

Hi, 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 integer …
0
votes
4answers
58 views

Convert high-resolution images to low-resolution

Hi , 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 …
0
votes
1answer
55 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_c …
0
votes
2answers
39 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
40 views

Data Compression Video Tutorials?

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

Explanation about hashing and its use for data compression

Hello, 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 …