summaryrefslogtreecommitdiffstats
path: root/docs/file.rst
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-03-19 14:47:05 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-03-23 10:30:55 +0100
commited1f4eb5c9dc1ae02d95034551bf6640b393e754 (patch)
tree8dfebc8e62016425c84dbdeab6a13964837037fe /docs/file.rst
parentd7a2099d51b535dbce6b68f2021f6fc0f37adc00 (diff)
downloaduca-ed1f4eb5c9dc1ae02d95034551bf6640b393e754.tar.gz
uca-ed1f4eb5c9dc1ae02d95034551bf6640b393e754.tar.bz2
uca-ed1f4eb5c9dc1ae02d95034551bf6640b393e754.tar.xz
uca-ed1f4eb5c9dc1ae02d95034551bf6640b393e754.zip
Document camera properties
Diffstat (limited to 'docs/file.rst')
-rw-r--r--docs/file.rst160
1 files changed, 160 insertions, 0 deletions
diff --git a/docs/file.rst b/docs/file.rst
new file mode 100644
index 0000000..677a13d
--- /dev/null
+++ b/docs/file.rst
@@ -0,0 +1,160 @@
+
+file
+====
+
+string **name**
+ Name of the camera
+
+ | *Default:*
+
+unsigned int **sensor-width**
+ Width of the sensor in pixels
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+unsigned int **sensor-height**
+ Height of the sensor in pixels
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+double **sensor-pixel-width**
+ Width of sensor pixel in meters
+
+ | *Default:* 1e-05
+ | *Range:* [2.22507385851e-308, 1.79769313486e+308]
+
+double **sensor-pixel-height**
+ Height of sensor pixel in meters
+
+ | *Default:* 1e-05
+ | *Range:* [2.22507385851e-308, 1.79769313486e+308]
+
+unsigned int **sensor-bitdepth**
+ Number of bits per pixel
+
+ | *Default:* 1
+ | *Range:* [1, 32]
+
+unsigned int **sensor-horizontal-binning**
+ Number of sensor ADCs that are combined to one pixel in horizontal direction
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+None **sensor-horizontal-binnings**
+ Array of possible binnings in horizontal direction
+
+ | *Default:* None
+
+unsigned int **sensor-vertical-binning**
+ Number of sensor ADCs that are combined to one pixel in vertical direction
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+None **sensor-vertical-binnings**
+ Array of possible binnings in vertical direction
+
+ | *Default:* None
+
+None **trigger-mode**
+ Trigger mode
+
+ | *Default:* <enum UCA_CAMERA_TRIGGER_AUTO of type UcaCameraTrigger>
+
+double **exposure-time**
+ Exposure time in seconds
+
+ | *Default:* 1.0
+ | *Range:* [0.0, 1.79769313486e+308]
+
+double **frames-per-second**
+ Frames per second
+
+ | *Default:* 1.0
+ | *Range:* [2.22507385851e-308, 1.79769313486e+308]
+
+unsigned int **roi-x0**
+ Horizontal coordinate
+
+ | *Default:* 0
+ | *Range:* [0, 4294967295]
+
+unsigned int **roi-y0**
+ Vertical coordinate
+
+ | *Default:* 0
+ | *Range:* [0, 4294967295]
+
+unsigned int **roi-width**
+ Width of the region of interest
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+unsigned int **roi-height**
+ Height of the region of interest
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+unsigned int **roi-width-multiplier**
+ Minimum possible step size of horizontal ROI
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+unsigned int **roi-height-multiplier**
+ Minimum possible step size of vertical ROI
+
+ | *Default:* 1
+ | *Range:* [1, 4294967295]
+
+bool **has-streaming**
+ Is the camera able to stream the data
+
+ | *Default:* True
+
+bool **has-camram-recording**
+ Is the camera able to record the data in-camera
+
+ | *Default:* False
+
+unsigned int **recorded-frames**
+ Number of frames recorded into internal camera memory
+
+ | *Default:* 0
+ | *Range:* [0, 4294967295]
+
+bool **transfer-asynchronously**
+ Specify whether data should be transfered asynchronously using a specified callback
+
+ | *Default:* False
+
+bool **is-recording**
+ Is the camera currently recording
+
+ | *Default:* False
+
+bool **is-readout**
+ Is camera in readout mode
+
+ | *Default:* False
+
+bool **buffered**
+ TRUE if libuca should buffer frames
+
+ | *Default:* False
+
+unsigned int **num-buffers**
+ Number of frame buffers in the ring buffer
+
+ | *Default:* 4
+ | *Range:* [0, 4294967295]
+
+string **path**
+ Path to directory containing TIFF files
+
+ | *Default:* . \ No newline at end of file