summaryrefslogtreecommitdiffstats
path: root/docs/plugins/figures/camerabin.dot
diff options
context:
space:
mode:
Diffstat (limited to 'docs/plugins/figures/camerabin.dot')
-rw-r--r--docs/plugins/figures/camerabin.dot23
1 files changed, 23 insertions, 0 deletions
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;
+}
+