Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Several small improvements #3

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,13 @@ and
vcsm_free(state.lens_shading);
```
when finished.

ls_table.txt is a comma separated file for easy visualization with Gnuplot. For a colored plot of all samples:
```
set palette defined (0 "red", 1 "yellow", 2 "magenta", 3 "blue")
splot "ls_table.txt" using 1:2:3:4 w p ps 0.75 pt 7 lc palette z notitle
```
Single sample plot ($4==0 => red):
```
splot "ls_table.txt" using 1:2:($4==0?$3:1/0)
```
Loading