I'm reading some noisy images, and getting a few bits from it (21 bits).
I only need to use 15 of them, leaving me 21 - 15 = 6
bits to work with.
What I intend to do, is use it for both Checksum and error correction, however, I started digging the web, and found that Reed-Solomon
is the most used for this (or not?).
My question is: Since I'm dealing with a small amount of data, is there a good algorithm to use, so that it's not (so) expensive in processing, and serves as both checksum and error correction? (It will run with Node.js)
Thanks,
Ivan