1

I am interested to implement LZ algorithms for the compression of ECG signal and want to optimized the code with relevant to Micro controller.

So that it would Entropy efficient and take less time to compress and decompress the ECG signal. I am totally stuck how I go through to achieve this. I am open to any programming language.

I have searched the internet for the source codes and I found a very long code which is difficult to understand in a short period of time.

Any suggestion...?

0m3r
  • 12,286
  • 15
  • 35
  • 71
mGm
  • 264
  • 2
  • 12
  • Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it. – too honest for this site Jun 21 '15 at 02:30

1 Answers1

2
  1. Reconsider your choice of the LZ 77/78 algorithms. ECG waves look similar but they are not binary identical so the dictionary-based compression algorithms don't provide ideal results.
  2. Complicated algorithms can hardly be expressed in few lines of code.
dlask
  • 8,776
  • 1
  • 26
  • 30