@@ -36,6 +36,8 @@ setBatchMode(true);
36
36
Dialog.create("ROI Color Coder: "+ getTitle);
37
37
headings= split(String.getResultsHeadings);
38
38
Dialog.addChoice("Measurement:", headings, "Area");
39
+ Dialog.setInsets(0, 100, 12);
40
+ Dialog.addCheckbox("Log transform (base-10)", false);
39
41
luts = getList("LUTs");
40
42
Dialog.addChoice("LUT:", luts, "mpl-viridis");
41
43
Dialog.setInsets(12, 0, 0);
@@ -62,6 +64,7 @@ setBatchMode(true);
62
64
Dialog.addHelp("https://github.com/tferr/Scripts/blob/master/BAR/src/main/resources/scripts/BAR/Annotation/README.md#roi-color-coder");
63
65
Dialog.show;
64
66
parameter= Dialog.getChoice;
67
+ useLog = Dialog.getCheckbox;
65
68
lut= Dialog.getChoice;
66
69
stroke= Dialog.getNumber;
67
70
alpha= pad(toHex(255*Dialog.getNumber/100));
@@ -85,8 +88,12 @@ setBatchMode(true);
85
88
86
89
// get values for chosen parameter
87
90
values= newArray(items);
88
- for (i=0; i<items; i++)
89
- values[i]= getResult(parameter,i);
91
+ for (i=0; i<items; i++) {
92
+ if (useLog)
93
+ values[i] = log(getResult(parameter,i)) / log(10);
94
+ else
95
+ values[i]= getResult(parameter,i);
96
+ }
90
97
Array.getStatistics(values, minC, maxC);
91
98
if (isNaN(min)) min= minC;
92
99
if (isNaN(max)) max= maxC;
0 commit comments