Skip to content
Snippets Groups Projects
Commit 972abe28 authored by Nathan Spaeth's avatar Nathan Spaeth
Browse files

bKmeansInit is optional in ResegmentHull

parent ad707ae0
Branches
Tags
No related merge requests found
...@@ -34,6 +34,10 @@ if ( ~exist('bUserEdit','var') ) ...@@ -34,6 +34,10 @@ if ( ~exist('bUserEdit','var') )
bUserEdit = 0; bUserEdit = 0;
end end
if (~exist('bKmeansInit', 'var'))
bKmeansInit = 0;
end
% guassian clustering (x,y) coordinates of cell interior % guassian clustering (x,y) coordinates of cell interior
[r c] = ind2sub(CONSTANTS.imageSize, hull.indexPixels); [r c] = ind2sub(CONSTANTS.imageSize, hull.indexPixels);
gmoptions = statset('Display','off', 'MaxIter',400); gmoptions = statset('Display','off', 'MaxIter',400);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment