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

Small cosmetic change that helps with debugging

parent ee0d3954
No related branches found
No related tags found
No related merge requests found
...@@ -3,11 +3,13 @@ function gr = gtGrainAllblobsFilterOrder(gr, refgr_omind) ...@@ -3,11 +3,13 @@ function gr = gtGrainAllblobsFilterOrder(gr, refgr_omind)
gr_omind = gr.allblobs.omind; gr_omind = gr.allblobs.omind;
gr_omind_ind = [ ... gr_omind_ind = [ ...
find(gr_omind == 1); find(gr_omind == 2); ... find(gr_omind == 1)'; find(gr_omind == 2)'; ...
find(gr_omind == 3); find(gr_omind == 4) ]; find(gr_omind == 3)'; find(gr_omind == 4)' ];
gr_omind_ind = reshape(gr_omind_ind, [], 1);
refgr_omind_ind = [ ... refgr_omind_ind = [ ...
find(refgr_omind == 1); find(refgr_omind == 2); ... find(refgr_omind == 1)'; find(refgr_omind == 2)'; ...
find(refgr_omind == 3); find(refgr_omind == 4) ]; find(refgr_omind == 3)'; find(refgr_omind == 4)' ];
refgr_omind_ind = reshape(refgr_omind_ind, [], 1);
fnames = fieldnames(gr.allblobs); fnames = fieldnames(gr.allblobs);
for ii_f = 1:numel(fnames) for ii_f = 1:numel(fnames)
......
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