From b2188c868576e0f330d15c7e030b2bc0c7a12048 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 25 Feb 2009 11:38:58 +0200 Subject: docs: update docs to add camerabin and its figure --- docs/plugins/figures/Makefile.am | 12 ++++++++++++ docs/plugins/figures/camerabin.dot | 23 +++++++++++++++++++++++ docs/plugins/figures/camerabin.png | Bin 0 -> 7779 bytes 3 files changed, 35 insertions(+) create mode 100644 docs/plugins/figures/Makefile.am create mode 100644 docs/plugins/figures/camerabin.dot create mode 100644 docs/plugins/figures/camerabin.png (limited to 'docs/plugins/figures') diff --git a/docs/plugins/figures/Makefile.am b/docs/plugins/figures/Makefile.am new file mode 100644 index 00000000..e57da903 --- /dev/null +++ b/docs/plugins/figures/Makefile.am @@ -0,0 +1,12 @@ +SOURCES=camerabin.dot +IMAGES =camerabin.png + +EXTRA_DIST=$(SOURCES) + +.PHONY: update + +.dot.png: + dot -Tpng $< -o$@ + +update: $(IMAGES) + diff --git a/docs/plugins/figures/camerabin.dot b/docs/plugins/figures/camerabin.dot new file mode 100644 index 00000000..a3fc2d5f --- /dev/null +++ b/docs/plugins/figures/camerabin.dot @@ -0,0 +1,23 @@ +/* dot -Tpng camerabin.dot -o camerabin.png */ + +digraph camera { + rankdir=LR; + fontname="Bitstream Vera Sans"; + fontsize="8"; + labelloc=t; + nodesep=.15; + label="Camera Pipeline"; + node [style=filled, fillcolor="#eeeeee", shape=box, fontsize="7", fontname="Bitstream Vera Sans"]; + edge [labelfontsize="7", fontsize="7", labelfontname="Bitstream Vera Sans", fontname="Bitstream Vera Sans"]; + + view_finder [ label="view finder" ]; + image_capture [ label="image capture" ]; + video_capture [ label="video capture" ]; + + capture -> view_finder; + capture -> image_capture; + capture -> video_capture; + image_capture -> view_finder; + video_capture -> view_finder; +} + diff --git a/docs/plugins/figures/camerabin.png b/docs/plugins/figures/camerabin.png new file mode 100644 index 00000000..7f82e133 Binary files /dev/null and b/docs/plugins/figures/camerabin.png differ -- cgit v1.2.1