Skip to content

Commit ffe17be

Browse files
committed
RCC: Allow log transformations
1 parent 6621ea4 commit ffe17be

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

BAR/src/main/resources/scripts/BAR/Annotation/ROI_Color_Coder.ijm

+9-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ setBatchMode(true);
3636
Dialog.create("ROI Color Coder: "+ getTitle);
3737
headings= split(String.getResultsHeadings);
3838
Dialog.addChoice("Measurement:", headings, "Area");
39+
Dialog.setInsets(0, 100, 12);
40+
Dialog.addCheckbox("Log transform (base-10)", false);
3941
luts = getList("LUTs");
4042
Dialog.addChoice("LUT:", luts, "mpl-viridis");
4143
Dialog.setInsets(12, 0, 0);
@@ -62,6 +64,7 @@ setBatchMode(true);
6264
Dialog.addHelp("https://github.com/tferr/Scripts/blob/master/BAR/src/main/resources/scripts/BAR/Annotation/README.md#roi-color-coder");
6365
Dialog.show;
6466
parameter= Dialog.getChoice;
67+
useLog = Dialog.getCheckbox;
6568
lut= Dialog.getChoice;
6669
stroke= Dialog.getNumber;
6770
alpha= pad(toHex(255*Dialog.getNumber/100));
@@ -85,8 +88,12 @@ setBatchMode(true);
8588

8689
// get values for chosen parameter
8790
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+
}
9097
Array.getStatistics(values, minC, maxC);
9198
if (isNaN(min)) min= minC;
9299
if (isNaN(max)) max= maxC;

0 commit comments

Comments
 (0)