summaryrefslogtreecommitdiff
path: root/resources/readme_images
diff options
context:
space:
mode:
Diffstat (limited to 'resources/readme_images')
-rw-r--r--resources/readme_images/colormaps.pngbin0 -> 871787 bytes
-rw-r--r--resources/readme_images/example.pngbin0 -> 1037903 bytes
-rw-r--r--resources/readme_images/example_file.pngbin0 -> 836561 bytes
-rw-r--r--resources/readme_images/example_live.pngbin0 -> 702143 bytes
-rwxr-xr-xresources/readme_images/generate.sh30
5 files changed, 30 insertions, 0 deletions
diff --git a/resources/readme_images/colormaps.png b/resources/readme_images/colormaps.png
new file mode 100644
index 0000000..4af0ec5
--- /dev/null
+++ b/resources/readme_images/colormaps.png
Binary files differ
diff --git a/resources/readme_images/example.png b/resources/readme_images/example.png
new file mode 100644
index 0000000..9e675e4
--- /dev/null
+++ b/resources/readme_images/example.png
Binary files differ
diff --git a/resources/readme_images/example_file.png b/resources/readme_images/example_file.png
new file mode 100644
index 0000000..1d2b0c7
--- /dev/null
+++ b/resources/readme_images/example_file.png
Binary files differ
diff --git a/resources/readme_images/example_live.png b/resources/readme_images/example_live.png
new file mode 100644
index 0000000..3d63ab5
--- /dev/null
+++ b/resources/readme_images/example_live.png
Binary files differ
diff --git a/resources/readme_images/generate.sh b/resources/readme_images/generate.sh
new file mode 100755
index 0000000..348f6af
--- /dev/null
+++ b/resources/readme_images/generate.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+specgram -eqz --bg-color=00000000 --fg-color=000000ff -i ../clips/norah_jones_dont_know_why colormap_jet.png -c jet
+specgram -eqz --bg-color=00000000 --fg-color=000000ff -i ../clips/norah_jones_dont_know_why colormap_gray.png -c gray
+specgram -eqz --bg-color=00000000 --fg-color=000000ff -i ../clips/norah_jones_dont_know_why colormap_purple.png -c purple
+specgram -eqz --bg-color=00000000 --fg-color=000000ff -i ../clips/norah_jones_dont_know_why colormap_blue.png -c blue
+specgram -eqz --bg-color=00000000 --fg-color=000000ff -i ../clips/norah_jones_dont_know_why colormap_green.png -c green
+specgram -eqz --bg-color=00000000 --fg-color=000000ff -i ../clips/norah_jones_dont_know_why colormap_orange.png -c orange
+specgram -eqz --bg-color=00000000 --fg-color=000000ff -i ../clips/norah_jones_dont_know_why colormap_red.png -c red
+
+montage \
+-label "jet" colormap_jet.png \
+-label "gray" colormap_gray.png \
+-label "purple" colormap_purple.png \
+-label "blue" colormap_blue.png \
+-label "green" colormap_green.png \
+-label "orange" colormap_orange.png \
+-label "red" colormap_red.png \
+-geometry 200x colormaps.png
+
+rm -rf colormap_*.png
+
+specgram -eq -f 8192 -y 4000 --bg-color=00000000 --fg-color=000000ff -i ../clips/rammstein_dalai_lama example_file.png
+
+# Following command should be used for screenshot acquisition
+# cat ../clips/rammstein_dalai_lama | specgram -eql -f 8192 -y 4000 -k 440
+
+montage \
+-label "Live view" example_live.png \
+-label "File output" example_file.png \
+-geometry 400x example.png \ No newline at end of file