Skip to content
Snippets Groups Projects
Commit 66229666 authored by Wolfgang Ludwig's avatar Wolfgang Ludwig
Browse files

Fixed bug in blob definition

parent ff1de5d7
No related branches found
No related tags found
No related merge requests found
......@@ -222,18 +222,7 @@ function [refor, estim_space_bbox_pix, estim_orient_bbox] = gt6DCreateProjDataFr
fprintf('Loading raw images: ')
num_blobs = numel(ref_included);
blobs(1:num_blobs) = struct( ...
'intm', [], ... % The normalized blob
'mask', [], ... % The segmentation mask
'bbuim', [], ... % Image BB on U
'bbvim', [], ... % Image BB on V
'bbwim', [], ... % Image BB on W <- Not strictly w
'bbsize', [], ... % Image BoundingBox (includes margins)
'mbbsize', [], ... % Real (Measured) Blob Bounding Box
'mbbu', [], ... % Real (Measured) Blob BB on U
'mbbv', [], ... % Real (Measured) Blob BB on V
'mbbw', [], ... % Real (Measured) Blob BB on W <- Not strictly w
'intensity', [] ); % Blob original intensity
blobs(1:num_blobs) = gtFwdSimBlobDefinition();
sel_reflections = find(ref_selected);
sel_reflections = sel_reflections(~inconvenient_etas);
......
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