How to...?
How do I pre-process the data?
preProcessTiles([],'illumChans',1:3)collateAverageImagesHow do I stitch sub-sets of the data?
>> cd /mnt/myLocalData/mySample
%Stitch all data from channel 1:
stitchSection([],1)
%Stitch physical section 34, optical section 3 from chan 1:
stitchSection([34,3],1)
%Same thing but stitch the first three channels
for ii=1:3
stitchSection([34,3],ii)
end
%Stitch all from channel 2 and save original size and 25% size:
stitchSection([34,5], 1, 'stitchedSize', [100,25])
% Stitch all channels:
stitchAllChannelsHow do I load individual tiles?
Interrogate stitching accuracy?


Correct changing illumination with optical plane?
How do I interact with the INI file?
Last updated
Was this helpful?