-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBatch_output_datestamp.ijm
104 lines (103 loc) · 3.56 KB
/
Batch_output_datestamp.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
// This Macro opens a directory, and also reaches all levels subdirectory,import data stamp and image sequence and output the signal and date records.
importDir = getDirectory("Choose the Parent Directory cintaining all but images for this experiment:");
importDirName = File.getName(importDir);
//Input the device parameter
Dialog.create("Select the imaging device:");
Dialog.addString("Which imaging device is used? ","Piper1");
Dialog.show();
deviceName = Dialog.getString();
//Get ready for record data
run("Close All");
if(isOpen("Results")) run("Clear Results");
run("Set Measurements...", "mean integrated redirect=None decimal=3");
//start the processing piperline
setBatchMode(true);
processFolder(importDir, 0);
setBatchMode("exit and display");
//Select file for saving the records
csvName = File.openDialog("Select the file for export");
saveAs("Results", csvName+".csv");
//Select file for saving images
run("Merge Channels...", "c1="+importDirName+"_Red"+" c2="+importDirName+"_Green create");
stackName = File.openDialog("Select the file for export");
selectWindow("Composite");
saveAs("Tiff", stackName+".tif");
//Recursive function to scan all sub-directories
function processFolder(imageDir, inframe) {
frame = inframe;
//IJ.log("processing directory " + imageDir);
imageList = getFileList(imageDir);
for (i = 0; i < imageList.length; i++) {
if(File.isDirectory(imageDir + imageList[i])) //if it's a directory, go to subfolder
frame = processFolder(imageDir + imageList[i], frame);
else if(endsWith(imageDir + imageList[i], ".tiff") || endsWith(imageDir + imageList[i], ".tif") ||
endsWith(imageDir + imageList[i], ".FIT") || endsWith(imageDir + imageList[i], ".TIF")) //if it's an expected image type, process it
frame = processFile(imageDir, imageList[i], frame);
}
return frame;
}
//Get file name and time stamp
function processFile(imageDir, imageFile, inframe) {
frame = inframe;
//IJ.log("processing file " + imageFile);
open(imageDir + imageFile);
frame ++;
//TODO: splitimage and record the signal
setResult("Frame", frame-1, frame);
setResult("FrameName", frame-1, imageFile);
setResult("DateModified", frame-1, File.dateLastModified(imageDir+imageFile));
processImage(imageFile, frame);
updateResults();
return frame;
}
//Crop and split the concatenated stacks
function processImage(imageFile, inframe){
frame = inframe;
Channel1 = "_Red";
Channel2 = "_Green";
if(deviceName == "Piper2") {
Channel1 = "_Green";
Channel2 = "_Red";
}
//Crop and copy left channel into image series
selectWindow(imageFile);
makeRectangle(0, 0, 320, 512);
List.setMeasurements()
greenSignal = List.getValue("Mean");
run("Copy");
if(!isOpen(importDirName + Channel1)){
newImage(importDirName + Channel1, "16-bit black", 320, 512, 1);
run("Paste");
}
else {
selectWindow(importDirName + Channel1);
run("Add Slice");
run("Paste");
}
//Crop and copy right channel into image series
selectWindow(imageFile);
makeRectangle(320, 0, 320, 512);
List.setMeasurements();
redSignal = List.getValue("Mean");
run("Copy");
if(!isOpen(importDirName + Channel2)){
newImage(importDirName + Channel2, "16-bit black", 320, 512, 1);
run("Paste");
}
else {
selectWindow(importDirName + Channel2);
run("Add Slice");
run("Paste");
}
//Close original image to save memory
selectWindow(imageFile);
close();
//Record brightness signal
if(deviceName == "Piper2") {
temp = greenSignal;
greenSignal = redSignal;
redSignal = temp;
}
setResult("Green signal", frame-1, greenSignal);
setResult("Red signal", frame-1, redSignal);
}