Skip to content

Commit

Permalink
add constrains to apical and basal 3dinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
pedgomgal1 committed Nov 11, 2021
1 parent 5d6396e commit 21604a3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/featuresExtraction/obtain3DFeatures.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
lateral3dInfo = lateral3dInfo_total;
clearvars lateral3dInfo_total lateralLayerAux
end

%delete non real neighbours assuming lateral contact threshold
apical3dInfo = cellfun(@(x,y) x(ismember(x,y)), apical3dInfo,lateral3dInfo,'UniformOutput',false);
basal3dInfo = cellfun(@(x,y) x(ismember(x,y)), basal3dInfo,lateral3dInfo,'UniformOutput',false);


%check for non considered valid cells, and delete cells "0" volume
missingCells = find(totalLateralCellsArea==0);
Expand Down

0 comments on commit 21604a3

Please sign in to comment.