Skip to content
Snippets Groups Projects
Commit 07137c89 authored by Nicola Vigano's avatar Nicola Vigano
Browse files

6D-reconstruction: trivial update

parent 724179a5
No related branches found
No related tags found
No related merge requests found
......@@ -39,17 +39,5 @@ function [algo, good_or] = gtReconstruct6DLaunchAlgorithm(sampler, rec_opts, par
'Sinograms %d MB, Geometry %d MB, Grain data %d MB)\n'], ...
round(mem_cons / (2^20)))
switch (upper(rec_opts.algorithm))
case '6DL1'
algo.cp_l1(rec_opts.num_iter, rec_opts.lambda);
case '6DLS'
algo.cp_ls(rec_opts.num_iter);
case '6DTV'
algo.cp_tv(rec_opts.num_iter);
case '6DTVL1'
algo.cp_tvl1(rec_opts.num_iter, rec_opts.lambda);
otherwise
error('gtReconstructGrainOrientation:wrong_parameter', ...
'Unknown 6D algorithm: "%s"', rec_opts.algorithm)
end
algo.cp(upper(rec_opts.algorithm), rec_opts.num_iter, rec_opts.lambda);
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment