Skip to content
Snippets Groups Projects
Commit c72562ce authored by ac_cx's avatar ac_cx
Browse files

check isdeployed on path in setExtFamilyGT

parent 46008c71
Branches
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ end
if isempty(config)
% secondary track
ctcEraseAll(strDB);
% ctcEraseAll(strDB);
Batch.processMovie(strDB);
if contains(strDB,'Huh7')
% the huh7 segmentation gets a postprocess refine to better match whatever
......
......@@ -129,7 +129,7 @@ for i=1:length(tids)
tBegin=q{1};
tEnd=q{2};
if isempty(tBegin) || isempty(tEnd) || strcmp(tBegin,'null') || strcmp(tEnd,'null')
if isempty(tBegin) || isempty(tEnd) || strcmp(tBegin,'null') || strcmp(tEnd,'null') || isnan(tBegin) || isnan(tEnd)
continue
end
% find our parent
......
......@@ -39,7 +39,9 @@ for i=1:length(groundTruthCells)
overlap(i,j)=length(intersect(groundTruthCells(i).idx,segCells(j).idxPts));
end
end
if ~isdeployed
path(path,'./assignment');
end
cc=1./overlap;
ass=assignmentoptimal(cc);
trackAssign=[];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment