summaryrefslogtreecommitdiffstats
path: root/tango
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-08-10 09:47:56 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-08-10 10:30:06 +0200
commitb9b7ba37e99fd75c7853bf4263faf49b6785e6e6 (patch)
tree2af8b8a0499414b799ab92406754860e918669d3 /tango
parentafd2b0abfa78027e4dbb195f88e90b01cd01feb4 (diff)
downloaduca-b9b7ba37e99fd75c7853bf4263faf49b6785e6e6.tar.gz
uca-b9b7ba37e99fd75c7853bf4263faf49b6785e6e6.tar.bz2
uca-b9b7ba37e99fd75c7853bf4263faf49b6785e6e6.tar.xz
uca-b9b7ba37e99fd75c7853bf4263faf49b6785e6e6.zip
Increase maximum dimension of image attribute
Fixes problems with very large sensors such as CMOSIS2000.
Diffstat (limited to 'tango')
-rwxr-xr-xtango/Uca2
1 files changed, 1 insertions, 1 deletions
diff --git a/tango/Uca b/tango/Uca
index baf6a93..ed6069e 100755
--- a/tango/Uca
+++ b/tango/Uca
@@ -66,7 +66,7 @@ class Camera(Device):
camera = device_property(dtype=str, default_value='mock')
image = attribute(label="Image", dtype=[[np.uint16]],
- max_dim_x=4096, max_dim_y=4096)
+ max_dim_x=8192, max_dim_y=8192)
def init_device(self):
Device.init_device(self)