Closedown

This commit is contained in:
sfop
2016-08-31 17:03:57 +02:00
parent c3335ffc14
commit e72134c2e6
2 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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") + ".";