-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestWorkflow.ijm
More file actions
39 lines (25 loc) · 962 Bytes
/
testWorkflow.ijm
File metadata and controls
39 lines (25 loc) · 962 Bytes
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
/*20191008
*Created by: Alicia Abarca Cifuentes
*
*Title: Reproducible bioimage analysis workflow
*
*We will upload it in Github and we will give it a D.O.I.
*
*/
//open the file
run("HeLa Cells (1.3M, 48-bit RGB)");
//split channels
run("Split Channels");
//duplicate the blue channel
run("Duplicate...", " ");
//thresholding, based on auto threshold try all we chose the MaxEntropy
run("Auto Threshold", "method=MaxEntropy white");
//apply
run("Script...");
//set differents measurements
run("Set Measurements...", "area mean standard min centroid center shape integrated display redirect=None decimal=3");
//analyze particples and show results
//to remove the small particle we set up the threshold from 10 to infinite rather than from 0 to infinite
run("Analyze Particles...", "size=10-Infinity show=Outlines display exclude clear include");
//save as, in the desktop
saveAs("Results", "C:/Users/Ali/Desktop/imageJ/Results.csv");