Simulated mode
Starting
BakingTray('dummyMode',true) % Start simulated mode
% Load and attach a preview stack:
load('/Path/To/Stack/CA_123_ApreviewStack.mat')
hBT.scanner.attachPreviewStack(pStack) % Attach it to the scannerInteracting with the dummy scanner
Preview and Bake
hBT.disabledAxisReadyCheckDuringAcq=true; % Skips some methods we don't care about
% Reduce the number of screen updates for speed reasons
hBT.scanner.displayAcquiredImages=false;
hBTview.view_acquire.updatePreviewEveryNTiles=50;
%Reduce the number of log messages
hBT.logMessageThreshScreen=6;
hBT.logMessageThreshFile=6;
hBT.yAxis.logMessageThreshScreen=7;
hBT.yAxis.logMessageThreshFile=7;
hBT.xAxis.logMessageThreshScreen=7;
hBT.xAxis.logMessageThreshFile=7;
hBT.zAxis.logMessageThreshScreen=7;
hBT.zAxis.logMessageThreshFile=7;Stitching simulated data
Last updated