From b9b7ba37e99fd75c7853bf4263faf49b6785e6e6 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Mon, 10 Aug 2015 09:47:56 +0200 Subject: Increase maximum dimension of image attribute Fixes problems with very large sensors such as CMOSIS2000. --- tango/Uca | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3