The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
31 views

Does LZSS data compression support on-the-fly decompression at the embedded side?

Scenario: Data (fpga images- .bin files) being compressed at the host, sent to the fpga(embedded side) in packets of 62 bytes and decompressed there. My target is to minimize the memory usage and cpu ...
0
votes
0answers
42 views

C++ JSON compression?

I'm working on a C++ application which will build a JSON string that contains program state data and send it to a company server. I've found a couple of tools that will compress JSON to JSON (HPack ...
1
vote
0answers
17 views

Network Data Optimization for Windows-based VPN

I am looking for ways to embed compression in a VPN setup so that users connecting from mobile devices to the VPN server will be able to decrease their bandwidth consumption and save up on their data ...
-1
votes
1answer
49 views

Data compression library better than UCL [closed]

Is there a data compression library with excellent compression ratio along with the decompression( embedded side) algorithm having little CPU cost, no memory cost and little additional code? I am ...
0
votes
1answer
35 views

LZRW1 decompression in .NET

I have a database with data packed with LZRW1 algorithm and I need to read this data in a C# application. Does anyone know if there is a ready implementation of the LZRW1 decompression for C#?
0
votes
2answers
69 views

Format for transmitting live Accelerometer/Compass data over network

What's the best way to transmit a history of accelerometer/compass data to a server? I have a very basic Android application that transmits GPS point data to a web server. I would like to now ...
0
votes
2answers
204 views

Programmatically add AVI file header to video stream

I have a capturing device (analogue to digital converter: AverMedia USB Capture Card). When I want to record video using DirectShowLib in C#, I only receive frames. I am able to record frames and play ...
0
votes
0answers
46 views

Pre processing stage of rice codes

Why a pre-processing stage used in rice codes? I have seen this in the lossless data compression of CCSDS recommendations of NASA and other space agencies.In one journal I read its for removing the ...
0
votes
0answers
49 views

Masking in DCT Compression

I am trying to do image compression in DCT. Can someone please help me understand how masking affects bit per pixel in DCT? How is the bit allocation done in the masking? PS: By masking i mean ...
1
vote
1answer
35 views

Ways to assit the compression of large custom data files

I'm seeking advice on how to better assist compression tools get better lossless compression. I have many large files (>100meg) containing sensor readings from a variety of sensors. The samples from ...
0
votes
1answer
99 views

Old Word file format *.doc, which compress algorithm did MS use in its old document format?

There is the task in my job. To sign some *.doc files with the certificates, because work process is near with banking account so, that why we need to sign files. Some information about ...
0
votes
1answer
105 views

Integer compression in java

I have a sequence of Integers in the following format: Integer1 Integer2 Integer3 Integer4 Integer5 .... Each four consective integers corresponds to values of a single record. So, I cannot really ...
0
votes
1answer
224 views

Compress in-memory cached objects

I'm building a enterprise scale MVC ASP.NET application which store large objects on to memory cache using enterprise library 4.1. The object sizes range from 18-22MB for each user. There could be ...
1
vote
1answer
91 views

Square wave DFT in PNg

So a bit more details: I'm starting to write my "bachelor's degree thesis " And it's gonna be something be something related to image compression I was wondering do you know about any attempts to ...
4
votes
2answers
149 views

Discovering Consecutive Repetitive Patterns in a String

I am trying to search for the maximal number of substring repetitions inside a string, here are some few examples: "AQMQMB" => QM (2x) "AQMPQMB" => <nothing> "AACABABCABCABCP" => A ...
0
votes
2answers
159 views

Most efficient lossless compression for random numerical data?

My data are not actually totally random. I am looking to compress telemetry measurements which will tend to be in the same range (e.g. temperatures won't vary much). However, I seek a solution for ...
2
votes
0answers
65 views

Large querystring compression [duplicate]

Possible Duplicate: How to compress/decompress a long query string in PHP? I have a huge amount of data inside my subquerystring for tracking needs. I loose a lot of my data because of ...
-1
votes
2answers
436 views

How do I compress an image with Run-Length Encoding using C#?

How do I compress an image with Run-Length Encoding using C#? Are there any available libraries to support this? Does Run-Length Encoding only work on bitmapped images? If so, How will I convert ...
5
votes
5answers
319 views

compression algorithm for sorted integers

I have a large sequence of random integers sorted from the lowest to the highest. The numbers start from 1 bit and end near 45 bits. In the beginning of the list I have numbers very closer to each ...
0
votes
1answer
292 views

How to write binary data to a compressed file

I have some financial data that I am processing in C++. I am storing it in a simple binary format because it requires fewer resources and is fast, however I would like to add compression to the file. ...
1
vote
1answer
70 views

What kinds of things is bzip2 good at compressing? [closed]

Reading this Hacker News post somehow the poster knew that bzip2 was the right compression to use for a .csv of Zip code info. My question is, how did rbanffy know? Is there some intuitive way, ...
1
vote
3answers
319 views

Is there a definitive order to perform data compression and encryption

I have a requirement stating that data compression and encryption should be performed. However, I have doubts relating to which step should be performed first in order to optimize compression rate ...
0
votes
0answers
85 views

Database Backup, drop transaction logs, shrink, drop nonclustered indexs, rebuild tables Fill factor 100%, compress

Let me start by saying I am a developer and I am just taking database backups for bug testing/fixing. I want to get the size of the backups I am taking down because at the moment it would be faster ...
1
vote
1answer
421 views

Data compression for microcontroller

I am doing a project whit a PIC microcontroller. I have an ADC sampling and saving data to a RAM memory, once the RAM is filled I need to send it via Bluetooth whit a PIC microcontroller. My data is ...
0
votes
1answer
244 views

need mysql compatible compress()/decompress() for Java

I'm thinking of applying the MySql compress() function to a field that is varchar and tends to run from a few thousand characters to more than a million, per column. The text is almost normal English, ...
1
vote
1answer
231 views

Finite Precision Arithmetic Coding Decoding Process?

I've been doing some reading on arithmetic coding, particularly how to deal with finite precision, so for example, when the range is inside the interval (0, 0.5) or (0.5, 1), one can just output 0 or ...
0
votes
4answers
277 views

Repetition-based, pattern-based data compression algorithm

Suppose I have the following string: ABCADCADCADABC I want to compress it by finding repeating substrings. What's an algorithm that gives the optimal compression? In the above example it should ...
3
votes
4answers
167 views

What is the best way to compress a list of similar but not identical strings?

Say, I have a number of strings which are quite similar but no absolutely identical. They can differ more or less, but similarity can be seen by the naked eye. All lengths are equal, each is 256 ...
1
vote
2answers
682 views

How compress data in memory buffer by using libbz2 library in C program

I try to compress memory data by using libbz2 library in C program. Should I use this function of libbz2?: int BZ2_bzCompress ( bz_stream *strm, int action ); Can anyone show me an example? ...
2
votes
2answers
483 views

Big file compression with python

I want to compress big text files with python (I am talking about >20Gb files). I am not any how an expert so I tried to gather the info I found and the following seems to work : import bz2 with ...
1
vote
1answer
1k views

GZIPOutputStream not properly compressing a String for HTTP Response

I'm writing a simple Java http server that responds with JSON data. I'm trying to GZip the data before sending it, but it usually sends back gzipped data that produces an error in the browser. For ...
0
votes
1answer
94 views

Compress array of boolean arrays to send over the web

I have a client application that creates an array of boolean arrays which I need to send to a WCF web service which I'll be creating. Do I need to compress the boolean arrays into something more ...
3
votes
5answers
316 views

“uncompressable” data sequence

I would like to generate an "uncompressable" data sequence of X MBytes through an algorithm. I want it that way in order to create a program that measures the network speed through VPN connection ...
2
votes
3answers
131 views

redirect output to compressed format (C)

Is it possible to use fprintf in such a way that write data to a compressed file? For example: fopen ("myfile.txt","w"); will write to a plain text file. So the file size grows very large.
0
votes
3answers
441 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 ...
3
votes
2answers
860 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 ...
2
votes
3answers
634 views

Alternatives to GZIPInput/OutputStream with better compression ratios? [closed]

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 ...
0
votes
2answers
2k 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 ...
1
vote
1answer
138 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 ...
4
votes
2answers
4k 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.
2
votes
2answers
239 views

Are there any current C/C++ libraries filled with well-known compression algorithms? [closed]

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 ...
0
votes
1answer
121 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
617 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
144 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: ...
4
votes
1answer
543 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 ...
0
votes
3answers
306 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 ...
-4
votes
2answers
45 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 ...
0
votes
2answers
78 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
479 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 ...
27
votes
5answers
1k views

Interesting problem: Write a program that takes text as input and produces a program that reproduces that text

Recently I came across one nice problem, which turned up as simple to understand as hard to find any way to solve. The problem is: Write a program, that reads a text from input and prints some ...

1 2