From e72134c2e6c0fba0ddaaa3166327e5e18e3ebb3c Mon Sep 17 00:00:00 2001 From: sfop Date: Wed, 31 Aug 2016 17:03:57 +0200 Subject: [PATCH] Closedown --- devices/camtool.properties | 4 ++-- plugins/Camtool.java | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/devices/camtool.properties b/devices/camtool.properties index c2d65b9..ed6a2ae 100644 --- a/devices/camtool.properties +++ b/devices/camtool.properties @@ -1,7 +1,7 @@ -#Wed Aug 31 16:58:45 CEST 2016 +#Wed Aug 31 16:59:52 CEST 2016 colormap=Grayscale colormapAutomatic=false -colormapMax=255.0 +colormapMax=484.051 colormapMin=0.0 flipHorizontally=false flipVertically=false diff --git a/plugins/Camtool.java b/plugins/Camtool.java index 80b8514..b21a4f9 100644 --- a/plugins/Camtool.java +++ b/plugins/Camtool.java @@ -29,11 +29,11 @@ public class Camtool extends ArraySource { public Camtool(String name, String prefix) { - this(name, prefix, false); + this(name, prefix, false, true); } - public Camtool(String name, String prefix, boolean latch) { - super(name, prefix + (latch ? ":latch": ":pipeline") + ".image"); + public Camtool(String name, String prefix, boolean latch, boolean roi) { + super(name, prefix + (latch ? ":latch": ":pipeline") + (roi ? ".roi.output": ".image")); this.prefix = prefix+":"; this.latch = latch; dataPrefix = this.prefix + (latch ? "latch": "pipeline") + ".";