NLMSvariants/bin/ANSI_C_Implementation/README.MD

20 lines
735 B
Plaintext
Raw Normal View History

2018-05-14 23:23:05 +02:00
## Installation
Use the make file or compile it anywhere else.
2018-05-14 23:29:32 +02:00
`$ make`.
2018-05-14 23:23:05 +02:00
It had to be ANSI C so it even compiles on VS.
## Features
This little piece of code compares 3 different implementations of a least mean square filter.
+ local mean
+ direct predecessor
+ differential predecessor
2018-05-14 23:29:32 +02:00
Greyscale PPM files can be used for input at this iteration. Output will be genreeated as .txt file with predicted value genereated by the filter and its error value as well as given actual value from the PPM file. Furthermore there is an output as an svg graph to compare the implementatiosn on a visual level. Just open __graphResults.html__.
You can hide graphs by clicking on its name for better visibility.
2018-05-14 23:23:05 +02:00
2018-05-14 23:30:32 +02:00
Use `$ ./lms -h` for help.