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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
%--------------------------------------------------------------------------
% 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/
%--------------------------------------------------------------------------
classdef IterativeTomography3D < matlab.mixin.Copyable
% Algorithm class for 3D Iterative Tomography.
%----------------------------------------------------------------------
properties (SetAccess=public, GetAccess=public)
superresolution = 1; % SETTING: Volume upsampling factor.
proj_type = 'linear'; % SETTING: Projector type, only when gpu='no'.
method = 'SIRT3D_CUDA'; % SETTING: Iterative method (see ASTRA toolbox documentation).
gpu = 'yes'; % SETTING: Use gpu? {'yes', 'no'}
gpu_core = 0; % SETTING: Which gpu core to use? Only when gpu='yes'.
inner_circle = 'yes'; % SETTING: Do roi only? {'yes', 'no'}
image_size = []; % SETTING: Overwrite default reconstruction size. Only if no vol_geom is specified.
use_minc = 'no'; % SETTING: Use minimum constraint. {'no', 'yes'}
maxc = +Inf; % SETTING: Maximum constraint. +Inf means off.
end
%----------------------------------------------------------------------
properties (SetAccess=public, GetAccess=public)
sinogram = []; % DATA: Projection data.
proj_geom = []; % DATA: Projection geometry.
V = []; % DATA: Volume data. Also used to set initial estimate (optional).
vol_geom = []; % DATA: Volume geometry.
end
%----------------------------------------------------------------------
properties (SetAccess=private, GetAccess=public)
initialized = 0; % Is this object initialized?
end
%----------------------------------------------------------------------
properties (SetAccess=protected, GetAccess=protected)
proj_geom_sr = []; % PROTECTED: geometry of sinogram (with super-resolution)
proj_id = []; % PROTECTED: astra id of projector (when gpu='no')
proj_id_sr = []; % PROTECTED: astra id of super-resolution projector (when gpu='no')
cfg_base = struct(); % PROTECTED: base configuration structure for the reconstruction algorithm.
end
%----------------------------------------------------------------------
methods (Access=public)
%------------------------------------------------------------------
function this = IterativeTomography3D(varargin)
% Constructor
% >> tomography = IterativeTomography3D(proj_geom);
% >> tomography = IterativeTomography3D(proj_geom, vol_geom);
% Input: IterativeTomography(proj_geom)
if nargin == 1
this.proj_geom = varargin{1};
% Input: IterativeTomography(proj_geom, vol_geom)
elseif nargin == 2
this.proj_geom = varargin{1};
this.vol_geom = varargin{2};
end
end
%------------------------------------------------------------------
function delete(this)
% Destructor
% >> clear tomography;
if strcmp(this.gpu,'no') && numel(this.proj_id) > 0
astra_mex_projector('delete', this.proj_id, this.proj_id_sr);
end
end
%------------------------------------------------------------------
function settings = getsettings(this)
% Returns a structure containing all settings of this object.
% >> settings = tomography.getsettings();
settings.superresolution = this.superresolution;
settings.proj_type = this.proj_type;
settings.method = this.method;
settings.gpu = this.gpu;
settings.gpu_core = this.gpu_core;
settings.inner_circle = this.inner_circle;
settings.image_size = this.image_size;
settings.use_minc = this.use_minc;
settings.maxc = this.maxc;
end
%------------------------------------------------------------------
function ok = initialize(this)
% Initialize this object. Returns 1 if succesful.
% >> tomography.initialize();
% % create projection geometry with super-resolution
% this.proj_geom_sr = astra_geom_superresolution(this.proj_geom, this.superresolution);
% if no volume geometry is specified by the user: create volume geometry
if numel(this.vol_geom) == 0
if numel(this.image_size) < 2
this.image_size(1) = this.proj_geom.DetectorRowCount;
this.image_size(2) = this.proj_geom.DetectorColCount;
end
this.vol_geom = astra_create_vol_geom(this.proj_geom.DetectorColCount, this.proj_geom.DetectorColCount, this.proj_geom.DetectorRowCount);
else
this.image_size(1) = this.vol_geom.GridRowCount;
this.image_size(2) = this.vol_geom.GridColCount;
end
% create projector
if strcmp(this.gpu, 'no')
this.proj_id = astra_create_projector(this.proj_type, this.proj_geom, this.vol_geom);
this.proj_id_sr = astra_create_projector(this.proj_type, this.proj_geom_sr, this.vol_geom);
end
% create reconstruction configuration
this.cfg_base = astra_struct(upper(this.method));
if strcmp(this.gpu,'no')
this.cfg_base.ProjectorId = this.proj_id;
this.cfg_base.ProjectionGeometry = this.proj_geom;
this.cfg_base.ReconstructionGeometry = this.vol_geom;
this.cfg_base.option.ProjectionOrder = 'random';
end
this.cfg_base.option.DetectorSuperSampling = this.superresolution;
if strcmp(this.gpu,'yes')
this.cfg_base.option.GPUindex = this.gpu_core;
end
this.cfg_base.option.UseMinConstraint = this.use_minc;
if ~isinf(this.maxc)
this.cfg_base.option.UseMaxConstraint = 'yes';
this.cfg_base.option.MaxConstraintValue = this.maxc;
end
this.initialized = 1;
ok = this.initialized;
end
%------------------------------------------------------------------
function projections = project(this, volume)
% Compute forward projection.
% >> projections = tomography.project(volume);
if ~this.initialized
this.initialize();
end
% project
projections = this.project_c(volume);
end
%------------------------------------------------------------------
function reconstruction = reconstruct(this, varargin)
% Compute reconstruction.
% Uses tomography.sinogram
% Initial solution (if available) should be stored in tomography.V
% >> reconstruction = tomography.reconstruct(projections, iterations);
% >> reconstruction = tomography.reconstruct(projections, volume0, iterations);
if ~this.initialized
this.initialize();
end
if numel(varargin) == 2
reconstruction = this.reconstruct_c(varargin{1}, [], [], varargin{2});
elseif numel(varargin) == 3
reconstruction = this.reconstruct_c(varargin{1}, varargin{2}, [], varargin{3});
else
error('invalid parameter list')
end
if strcmp(this.inner_circle,'yes')
reconstruction = this.selectROI(reconstruction);
end
end
%------------------------------------------------------------------
function reconstruction = reconstruct_mask(this, varargin)
% Compute reconstruction with mask.
% Uses tomography.sinogram
% Initial solution (if available) should be stored in tomography.V
% >> reconstruction = tomography.reconstructMask(projections, mask, iterations);
% >> reconstruction = tomography.reconstructMask(projections, volume0, mask, iterations);
if ~this.initialized
this.initialize();
end
if numel(varargin) == 3
reconstruction = this.reconstruct_c(varargin{1}, [], varargin{2}, varargin{3});
elseif numel(varargin) == 4
reconstruction = this.reconstruct_c(varargin{1}, varargin{2}, varargin{3}, varargin{4});
else
error('invalid parameter list')
end
if strcmp(this.inner_circle,'yes')
reconstruction = this.selectROI(reconstruction);
end
end
%------------------------------------------------------------------
end
%----------------------------------------------------------------------
methods (Access = protected)
%------------------------------------------------------------------
% Protected function: create FP
function sinogram = project_c(this, volume)
if this.initialized == 0
error('IterativeTomography not initialized');
end
% data is stored in astra memory
if numel(volume) == 1
if strcmp(this.gpu, 'yes')
sinogram_tmp = astra_create_sino_cuda(volume, this.proj_geom_sr, this.vol_geom, this.gpu_core);
else
sinogram_tmp = astra_create_sino(volume, this.proj_id);
end
% sinogram downsampling
if this.superresolution > 1
sinogram_data = astra_mex_data2d('get', sinogram_tmp);
astra_mex_data2d('delete', sinogram_tmp);
sinogram_data = downsample_sinogram(sinogram_data, this.superresolution);
sinogram = astra_mex_data2d('create', 'sino', this.proj_geom, sinogram_data);
else
sinogram = sinogram_tmp;
end
% data is stored in matlab memory
else
[tmp_id, sinogram] = astra_create_sino3d_cuda(volume, this.proj_geom, this.vol_geom);
astra_mex_data3d('delete', tmp_id);
end
end
%------------------------------------------------------------------
% Protected function: reconstruct
function V = reconstruct_c(this, sinogram, V0, mask, iterations)
if this.initialized == 0
error('IterativeTomography not initialized');
end
% data is stored in astra memory
if numel(sinogram) == 1
V = this.reconstruct_c_astra(sinogram, V0, mask, iterations);
% data is stored in matlab memory
else
V = this.reconstruct_c_matlab(sinogram, V0, mask, iterations);
end
end
%------------------------------------------------------------------
% Protected function: reconstruct (data in matlab)
function V = reconstruct_c_matlab(this, sinogram, V0, mask, iterations)
if this.initialized == 0
error('IterativeTomography not initialized');
end
% parse method
method2 = upper(this.method);
if strcmp(method2, 'SART') || strcmp(method2, 'SART_CUDA')
iterations = iterations * size(sinogram,1);
elseif strcmp(method2, 'ART')
iterations = iterations * numel(sinogram);
end
% create data objects
% V = zeros(this.vol_geom.GridRowCount, this.vol_geom.GridColCount, size(sinogram,3));
reconstruction_id = astra_mex_data3d('create', '-vol', this.vol_geom);
sinogram_id = astra_mex_data3d('create', '-proj3d', this.proj_geom);
if numel(mask) > 0
mask_id = astra_mex_data3d('create', '-vol', this.vol_geom);
end
% algorithm configuration
cfg = this.cfg_base;
cfg.ProjectionDataId = sinogram_id;
cfg.ReconstructionDataId = reconstruction_id;
if numel(mask) > 0
cfg.option.ReconstructionMaskId = mask_id;
end
alg_id = astra_mex_algorithm('create', cfg);
% % loop slices
% for slice = 1:size(sinogram,3)
% fetch slice of initial reconstruction
if numel(V0) > 0
astra_mex_data3d('store', reconstruction_id, V0);
else
astra_mex_data3d('store', reconstruction_id, 0);
end
% fetch slice of sinogram
astra_mex_data3d('store', sinogram_id, sinogram);
% fecth slice of mask
if numel(mask) > 0
astra_mex_data3d('store', mask_id, mask);
end
% iterate
astra_mex_algorithm('iterate', alg_id, iterations);
% fetch data
V = astra_mex_data3d('get', reconstruction_id);
% end
% correct attenuation factors for super-resolution
if this.superresolution > 1 && strcmp(this.gpu,'yes')
if strcmp(this.proj_geom.type,'fanflat_vec') || strcmp(this.proj_geom.type,'fanflat')
if numel(mask) > 0
V(mask > 0) = V(mask > 0) ./ this.superresolution;
else
V = V ./ this.superresolution;
end
end
end
% garbage collection
astra_mex_algorithm('delete', alg_id);
astra_mex_data3d('delete', sinogram_id, reconstruction_id);
if numel(mask) > 0
astra_mex_data3d('delete', mask_id);
end
end
%------------------------------------------------------------------
% Protected function: reconstruct (data in astra)
function V = reconstruct_c_astra(this, sinogram, V0, mask, iterations)
if this.initialized == 0
error('IterativeTomography not initialized');
end
if numel(V0) > 1 || numel(mask) > 1 || numel(sinogram) > 1
error('Not all required data is stored in the astra memory');
end
if numel(V0) == 0
V0 = astra_mex_data2d('create', '-vol', this.vol_geom, 0);
end
% parse method
method2 = upper(this.method);
if strcmp(method2, 'SART') || strcmp(method2, 'SART_CUDA')
iterations = iterations * astra_geom_size(this.proj_geom, 1);
elseif strcmp(method2, 'ART')
s = astra_geom_size(this.proj_geom);
iterations = iterations * s(1) * s(2);
end
% algorithm configuration
cfg = this.cfg_base;
cfg.ProjectionDataId = sinogram;
cfg.ReconstructionDataId = V0;
if numel(mask) > 0
cfg.option.ReconstructionMaskId = mask;
end
alg_id = astra_mex_algorithm('create', cfg);
% iterate
astra_mex_algorithm('iterate', alg_id, iterations);
% fetch data
V = V0;
% correct attenuation factors for super-resolution
if this.superresolution > 1
if strcmp(this.proj_geom.type,'fanflat_vec') || strcmp(this.proj_geom.type,'fanflat')
if numel(mask) > 0
astra_data_op_masked('$1./s1', [V V], [this.superresolution this.superresolution], mask, this.gpu_core);
else
astra_data_op('$1./s1', [V V], [this.superresolution this.superresolution], this.gpu_core);
end
end
end
% garbage collection
astra_mex_algorithm('delete', alg_id);
end
%------------------------------------------------------------------
function V_out = selectROI(~, V_in)
if numel(V_in) == 1
cfg = astra_struct('RoiSelect_CUDA');
cfg.DataId = V_in;
alg_id = astra_mex_algorithm('create',cfg);
astra_mex_algorithm('run', alg_id);
astra_mex_algorithm('delete', alg_id);
V_out = V_in;
else
V_out = ROIselectfull(V_in, min([size(V_in,1), size(V_in,2)]));
end
end
%------------------------------------------------------------------
end
end
|