-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jazy_boundaries.ijm
executable file
·280 lines (253 loc) · 11.5 KB
/
Jazy_boundaries.ijm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
//Version 0.0.4a
// Difference to Lazy grainboundareis: as black is 0, thicken lines must work with copy (AND)
// instead with copy (OR) and "max of stack" will be "min" of stack
//-----------------------------------------------------------------------------------------
//-----------------------------------Grain-boundary-segmentation-helpers-------------------
//-----------------------------------------------------------------------------------------
macro"RGB to stack[0]"{
run("RGB Stack");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "crop and scale - fast [1]"{
if (selectionType != -1){
run("Crop");
//ask for scale factor
scalefactor = 2;
Dialog.create("scaling factor");
Dialog.addMessage("scaling factor");
Dialog.addNumber(" ", scalefactor);
Dialog.show();
scalefactor = Dialog.getNumber();
run("Scale...", "x="+scalefactor+" y="+scalefactor+" interpolation=None process create title="+getTitle+"scaled.tif");
}else{
showMessage("Selection required");
}
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "crop and scale - smooth [2]"{
if (selectionType != -1){
run("Crop");
//ask for scale factor
scalefactor = 2;
Dialog.create("scaling factor");
Dialog.addMessage("scaling factor");
Dialog.addNumber(" ", scalefactor);
Dialog.show();
scalefactor = Dialog.getNumber();
run("Scale...", "x="+scalefactor+" y="+scalefactor+" interpolation=Bicubic process create title="+getTitle+"scaled.tif");
}else{
showMessage("Selection required");
}
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "Median filter [u]"{
radius = 1;
Dialog.create("median radius");
Dialog.addMessage("radius for median filter");
Dialog.addNumber("radius (pixel)= ", radius);
Dialog.show();
radius = Dialog.getNumber();
run("Median...", "radius="+radius+" stack")
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "Sobel filter [o]"{
run("Find Edges", "stack");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "Kompass filter [k]"{
for (i = 0; i < 7; i++) {
run("Duplicate...", " ");
}
run("Images to Stack", "use");
run("Convolve...", "text1=[-5 -5 -5\n3 0 3\n3 3 3\n] normalize");
run("Next Slice [>]");
run("Convolve...", "text1=[3 -5 -5\n3 0 -5\n3 3 3\n] normalize");
run("Next Slice [>]");
run("Convolve...", "text1=[3 3 -5\n3 0 -5\n3 3 -5\n] normalize");
run("Next Slice [>]");
run("Convolve...", "text1=[3 3 3\n3 0 -5\n3 -5 -5\n] normalize");
run("Next Slice [>]");
run("Convolve...", "text1=[3 3 3\n3 0 3\n-5 -5 -5\n] normalize");
run("Next Slice [>]");
run("Convolve...", "text1=[3 3 3\n-5 0 3\n-5 -5 3\n] normalize");
run("Next Slice [>]");
run("Convolve...", "text1=[-5 3 3\n-5 0 3\n-5 3 3\n] normalize");
run("Next Slice [>]");
run("Convolve...", "text1=[-5 -5 3\n-5 0 3\n3 3 3\n] normalize");
run("Z Project...", "projection=[Max Intensity]");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "sharpen [s]"{
run("Sharpen", "stack");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "enhance [c]"{
satur = 1;
Dialog.create("saturated pixels");
Dialog.addMessage("saturated pixels");
Dialog.addNumber("in % = ", satur);
Dialog.show();
satur = Dialog.getNumber();
run("Enhance Contrast...", "saturated="+satur+" normalize process_all")
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "equalize [e]"{
satur = 0.4;
Dialog.create("saturated pixels");
Dialog.addMessage("saturated pixels");
Dialog.addNumber("in % = ", satur);
Dialog.show();
satur = Dialog.getNumber();
run("Enhance Contrast...", "saturated="+satur+" equalize process_all")
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//http://fiji.sc/wiki/index.php/Auto_Threshold
macro "threshold/density slice ... [T]"{
run("Threshold...");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//This assumes a bimodal histogram. The histogram is iteratively smoothed using a running
//average of size 3, until there are only two local maxima: j and k. The threshold t is then
//computed as (j+k)/2. Images with histograms having extremely unequal peaks or a broad and
//flat valley are unsuitable for this method.
macro "threshold Intermodes [I]"{
run("Convert to Mask", "method=Intermodes background=White calculate");
run("Invert LUT");
run("Invert");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "threshold Mean [M]"{
run("Convert to Mask", "method=Mean background=White calculate");
run("Invert LUT");
run("Invert");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "threshold Huang [H]"{
run("Convert to Mask", "method=Huang background=White calculate");
run("Invert LUT");
run("Invert");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "average of stack [a]"{
if (nSlices >= 1){
run("Z Project...", "start=1 stop="+nSlices+" projection=[Average Intensity]");
}else{
showMessage("Stack required");}
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "min of stack [z]"{ //
if (nSlices >= 1){
run("Z Project...", "start=1 stop="+nSlices+" projection=[Min Intensity]");
}else{
showMessage("Stack required");}
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "thicken lines [t]"{
if (nSlices == 1){
run("Select All");
run("Copy");
setPasteMode("OR");
setSelectionLocation(1,0);
run("Paste");
setSelectionLocation(0,1);
run("Paste");
setPasteMode("COPY");
}else{
showMessage("single slice image required");}
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "skeletonize [j]"{
run("Skeletonize", "stack");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "prune [i]"{
run("Options...", "iterations=10 count=7 edm=Overwrite black do=Erode stack");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "cut away rim (boundary map) [4]"{
xwidth = getWidth();
yheight = getHeight();
rimc = 5;
Dialog.create("width of rim");
Dialog.addMessage("width of rim");
Dialog.addNumber("in pixel",rimc);
Dialog.show();
rimc = Dialog.getNumber();
makeRectangle(rimc, rimc, xwidth-2*rimc, yheight-2*rimc);
run("Make Inverse")
run("Clear")
run("Select None");
setForegroundColor(0, 0, 0);
floodFill(1,1);
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "cut away rim (grain map) [5]"{
xwidth = getWidth();
yheight = getHeight();
rimc = 5;
Dialog.create("width of rim");
Dialog.addMessage("width of rim");
Dialog.addNumber("in pixel",rimc);
Dialog.show();
rimc = Dialog.getNumber();
makeRectangle(rimc, rimc, xwidth-2*rimc, yheight-2*rimc);
run("Make Inverse")
setForegroundColor(0, 0, 0);
fill();
run("Select None");
setForegroundColor(255, 255, 255);
floodFill(1,1);
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "invert image [y]"{
run("Invert");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
macro "scale to pixel [x]"{
run("Set Scale...", "distance=0 known=0 pixel=1 unit=pixel");
}
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------