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

6D-reconstruction: use just introduced initialization function

parent f86063f3
No related branches found
No related tags found
No related merge requests found
......@@ -572,7 +572,11 @@ classdef Gt6DBlobReconstructor < Gt6DVolumeToBlobProjector
end
c = tic();
proj_bls = gtMathsGetSameSizeZeros(self.blobs);
if (self.algo_ops_c_functions)
proj_bls = gtCxx6DCreateEmptyBlobs(self.blobs);
else
proj_bls = gtMathsGetSameSizeZeros(self.blobs);
end
timing_in = toc(c);
timing_fp = 0;
......
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