-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtracking.ijm
More file actions
20 lines (13 loc) · 854 Bytes
/
tracking.ijm
File metadata and controls
20 lines (13 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Lines that start with "//" are comments.
// Lines that start with "#@" declare input parameters that interactively ask the user for values.
// You can remove those lines and set input parameters explicitly in order to run the macro without further user interaction.
#@ File (label = "Project file", style = "file") project
// project = "/absolute/path/to/some/directory/tracking.ilp";
#@ File (label = "Input file", style = "file") input
// input = "/absolute/path/to/some/directory/raw_data.tif";
#@ File (label = "Second input file", style = "file") secondInput
// secondInput = "/absolute/path/to/some/directory/probabilities.tif";
type = "Probabilities";
open(input);
open(secondInput);
run("Run Tracking", "projectfilename=[" + project + "] input=[" + input + "] inputproborsegimage=[" + secondInput + "] secondinputtype=[" + type + "]");