Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kat-stash/rs-from-scratch
Reed-Solomon error correction coding from scratch, for my blog!
https://github.com/kat-stash/rs-from-scratch
Last synced: about 1 month ago
JSON representation
Reed-Solomon error correction coding from scratch, for my blog!
- Host: GitHub
- URL: https://github.com/kat-stash/rs-from-scratch
- Owner: kat-stash
- Created: 2021-11-15T05:56:52.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-16T08:03:04.000Z (about 3 years ago)
- Last Synced: 2024-12-03T16:59:11.418Z (about 1 month ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Reed Solomon From Scratch
---Error correction codes can be found everywhere, from radio to barcodes. Reed Solomon codes are the Swiss Army Knife of error correction codes, and have been used in everything from spaceflight to QR codes.
In this project, you can find an implementation of an encoder and a decoder for the Reed-Solomon code used in QR codes (`RS(255,249)`).
More documentation here soon.