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
|
function slice = sliceExtractor(data, dir, slicenr)
%------------------------------------------------------------------------
% slice = sliceExtractor(data, dir, slicenr)
%
% Outputs a specified slice from a three dimensional matrix/volume
%
% data: the 3D volume.
% dir: the direction in which the volume is sliced.
% slicenr: the index of the slice to retrieve.
% slice: 2D image matrix containing the slice.
%------------------------------------------------------------------------
%------------------------------------------------------------------------
% This file is part of the ASTRA Toolbox
%
% Copyright: 2010-2022, imec Vision Lab, University of Antwerp
% 2014-2022, CWI, Amsterdam
% License: Open Source under GPLv3
% Contact: astra@astra-toolbox.com
% Website: http://www.astra-toolbox.com/
%------------------------------------------------------------------------
slicenr = round(slicenr);
if strcmp(dir,'z')
slice = squeeze(data(:,:,slicenr));
end
if strcmp(dir,'x')
slice = squeeze(data(:,slicenr,:));
end
if strcmp(dir,'y')
slice = squeeze(data(slicenr,:,:));
end
|