We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de0998a commit 4f52463Copy full SHA for 4f52463
1 file changed
GUIs/StabilizationGUI.m
@@ -111,9 +111,19 @@ function QueueButton_Callback(~, ~)
111
% Puts the execution on a processing queue, to be started later.
112
113
dstExPath = sPanel.GetValue('Output');
114
+ if length(imData.channelNames) > 1
115
+ referenceChannel = sPanel.GetValue('Reference_channel');
116
+ else
117
+ referenceChannel = imData.channelNames{1};
118
+ end
119
+ missingPixels = sPanel.GetValue('Missing_pixels');
120
numCores = str2double(sPanel.GetValue('Number_of_cores'));
121
- aQueue.Add(@()RunStabilization(aSeqPaths, dstExPath, numCores))
122
+ aQueue.Add(@()RunStabilization(aSeqPaths,...
123
+ dstExPath,...
124
+ numCores,...
125
+ referenceChannel,...
126
+ missingPixels))
127
end
128
129
0 commit comments