Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
6answers
447 views

Encoding / Error Correction Challenge

Is it mathematically feasible to encode and initial 4 byte message into 8 bytes and if one of the 8 bytes is completely dropped and another is wrong to reconstruct the initial 4 byte message? There ...
7
votes
3answers
158 views

error correcting codes aimed at slow CPUs transmitting to fast CPUs

I'm looking for a forward error-correcting code that is relatively easy/fast to encode on a microcontroller; decode will be done on a PC so it can be more complicated. I don't know that much about ...
4
votes
2answers
197 views

Error detection and error correction algorithm

Suppose we have a chunk of data that came from data transfer medium with the following properties: Total chunk size is 8 bytes. The data transfer is unreliable, so errors in a number of bits are ...
3
votes
2answers
52 views

Error correction on a short decimal number

I have short, variable length decimal numbers, like: #41551, that are manually transcribed by humans. Mistyping one will cause undesirable results, so my first thought is to use the Luhn algorithm to ...
3
votes
1answer
183 views

OCR error correction algorithms

I'm working on digitizing a large collection of scanned documents, working with Tesseract 3 as my OCR engine. The quality of its output is mediocre, as it often produces both garbage characters ...
3
votes
3answers
361 views

OCR error correction: How to combine three erroneous results to reduce errors

The problem I am trying to improve the result of an OCR process by combining the output from three different OCR systems (tesseract, cuneinform, ocrad). I already do image preprocessing (deskewing, ...
3
votes
1answer
523 views

Java: ECC (error correcting code) library?

Is there a well-known implementation, that has friendly open-source licensing (not GPL), of an ECC (error correcting code) library (e.g. Reed-Solomon) for Java?
3
votes
3answers
115 views

Introducing errors in client-server transmission

I'm in a Math class about coding theory and we have to do a project for our term mark. My project is a client with an echo server, which shows what errors were introduced in the trip from the ...
3
votes
2answers
108 views

Need Block-Oriented Error Correcting Scheme

I'm storing many files of various lengths into a block-oriented medium (fixed-size e.g. 1024 bytes). When reading back the file, each block will either be missing or correct (no bit errors or the ...
2
votes
4answers
90 views

Find and fix wrong values in a simple, linear data set

This is probably a simple question yet I could not find a good approach. I've got a limited number of ordered int values that are supposed to be of similar distance to each other, e.g: 32, 42, 52, ...
2
votes
3answers
245 views

C# .Net double issue… 6.8 != 6.8?

I was doing some unit testing at work and a peculiar error popped up for one of the assertions. Note that expectedValue and actualValue are both doubles. Assert.AreEqual(expectedValue, actualValue); ...
2
votes
1answer
94 views

Error Correction Advice?

I have an application that ideally would allow 25% of errors to be corrected with an original message that would be 12 to 16 bytes (8-bit bytes) long. The constraints are the message cannot be ...
2
votes
1answer
398 views

Basic Reed-Solomon Error Correction Question

Does Reed-Solomon error correction work in an instance where there is a dropped byte (or multiple dropped bytes)? For example, let's say it's a (12,8) Reed Solomon code, so theoretically it should be ...
2
votes
2answers
165 views

error correction code upper bound

If I want to send a d-bit packet and add another r bits for error correction code (d>r) how many errors I can find and correct at most?
2
votes
1answer
782 views

Reed-Solomon Decoding

I've got a sequence of 28 bytes, which are supposedly encoded with a Reed-Solomon (28, 24, 5) code. The RS code uses 8-bit symbols and operates in GF(28). The field generator polynomial is ...
2
votes
6answers
1k views

CRC error-correction library?

Is there a CRC library that enables the user not only detect errors but also correct them? I'm looking for a C/C++ or Java library, ideally open-source.
2
votes
7answers
242 views

Which algorithm for extremely high non burst errors?

I have a binary stream that has a very high error rate. The error rate is 50% meaning each bit has a 50% chance of being flipped. The error does not occur in bursts and is completely random, so ...
2
votes
4answers
366 views

When is forward error correction a good idea for packets?

Systems could use UDP and employ forward error correction to transmit the whole message, without retransmits, even if a few packets are lost. Does this ever work well in practice or is the extra ...
2
votes
2answers
191 views

Error Correction Libraries?

I'm interested in using a Reed-Solomon error correction [http://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction as a reference] to try to rebuild files from partial bits of a file. I'm ...
1
vote
2answers
36 views

How can I add some detection or correction code in a 48bits message?

I'm developing a OCR tool reeds a set of symbols which represent 2 bits each. For example: { ---> 00 } ----> 01 Always I have a 48 bits code so I have 24 symbols. I need to implement a detector or ...
1
vote
1answer
40 views

typo correction in Google search

I notice if I make a typo in Google search bar, it is very likely to correct it for me. Like, if I type incerdible, it will suggest incredible, or for stackovflow, it will be stackoverflow. I am ...
1
vote
2answers
145 views

error correcting code over a 4 element alphabet

I need to develop an error correcting code. My alphabet is {0,1,2,3} (4 elements) Codeword size n will be 8 or 12 expected error correction capability = 1 digit expected error detection capability = ...
1
vote
2answers
125 views

Advice a book and/or web ressource on Reed-Solomon error correction

I'd like advice on a book or web resource, that comprehensively teaches me Reed-Solomon error correction. I found some web resources and some university PDF's, but none of them was able to really ...
1
vote
2answers
286 views

error detection/correction/recovery in serial protocols

I have some designing to do for a serial protocol and am running into some questions that I figure must have been considered elsewhere. So I'm wondering if there are some recommendations for best ...
1
vote
2answers
431 views

Encoding codes in Java

Over the past couple of weeks I've read through the book Error Control Coding: Fundamentals and Applications in order to learn about BCH (Bose, Chaudhuri, Hocquenghem) Codes for an junior programming ...
1
vote
4answers
2k views

How to correct a message using Hamming Code

So I want to work on this summer project to correct errors in a message transmission using Hamming Code, but I cannot figure out how it really works. I've read many articles online, but I don't ...
0
votes
2answers
101 views

reed solomon library

I'm about writing a qr code generator , should I write reed solomon error correction methods by myself or is there any free library in PHP or Python to do that ? thank you
0
votes
0answers
50 views

Error correction on low bandwidth video stream over UDP

What is the best method for adding erasure detection and recovery to low bandwidth video stream without adding to much latency and bandwidth? Looks like Reed Solomon is good for it but there are ...
0
votes
1answer
55 views

CRC checksum decimal

I was wondering if anyone could give me a basic example, or a link to a resource showing how CRC can be used with decimal numbers, without binary. Thanks
0
votes
0answers
99 views

Reed-Solomon code equivalence

there are two definitions for Reed-Solomon codes, as transmitting points and as BCH code ( http://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction ). On Wikipedia there is written that we ...
0
votes
2answers
146 views

What is the minimum number of bits needed to correct all 2 bit errors?

I learned about hamming codes and how to use them to correct 1 bit errors and detect all 2 bit errors, but how extend this to correcting 2 bits, and maybe more? What is the minimum number of bits ...
0
votes
2answers
176 views

java implementation for LDPC codes

Is there any open source java implementation for LDPC(Low Density Parity Check)codes,i found only MAT lab codes. My scenario is i will take text file and divide into block and i will delete some data ...
0
votes
1answer
51 views

Error safe/correcting resource identifier

The receiver is my website, the sender is the same but the medium is noisy, a user. He will read an alphanumeric code of length 6 and later input the same code to identify a resource. A good use for a ...
0
votes
1answer
275 views

iOS — UITextView still putting period before double space if autocorrectionType is UITextAutoCorrectionTypeNo

Title pretty much says it all. I want to turn off this behavior. How can I do that?
0
votes
1answer
39 views

Error correction using a key

I don't know a whole lot about today's encryption, signature, error correction, etc. technologies. Here is my situation: Let's say I have a long document with chapters. I have one small chapter that ...
0
votes
0answers
49 views

Error correction code for non-uniform errors on non-binary channel?

If you ask a person to type in a page full of random hand written 20 digit numbers, I would expect that you would see different errors occur with non uniform frequency (e.g. switching 6 and 5 or 3 and ...
0
votes
2answers
641 views

Hamming code given a generator matrix question

Can I just say from the outset that this isn't a homework question as I'm way to old for that. But is related to an open source radio decoder project I'm working on .. ...
0
votes
7answers
485 views

Quantum Computing - Hype Or Hyper? [closed]

I have recently been web-researching quantum computing. Will we see these in our lifetimes (ever?) (The error correction issue, for example, seems intractable to me).
-4
votes
12answers
193 views

What is the politically correct term for 'Spaghetti Code'? [closed]

I'm trying to write up an implementation plan. I'd like to write something like: Due to the high-level of spaghett-code in the existing program... But I'm not finding anything that even remotely ...