Skip to content
Snippets Groups Projects
Commit 8f5aa594 authored by Walt Mankowski's avatar Walt Mankowski
Browse files

use a smaller window for Hemato cells

parent d13d6fa1
Branches
Tags
No related merge requests found
......@@ -30,7 +30,13 @@ function newTrackID = AddNewSegmentHull(clickPt, time)
filename = Helper.GetFullImagePath(time);
img = Helper.LoadIntensityImage(filename);
[newObj newFeat] = Segmentation.FindNewSegmentation(img, clickPt, 200, 1.0, [], time);
if strcmp(CONSTANTS.cellType, 'Hemato')
subSize = 100;
else
subSize = 200;
end
[newObj newFeat] = Segmentation.FindNewSegmentation(img, clickPt, subSize, 1.0, [], time);
% Aggressive add segmentation
if ( isempty(newObj) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment