projects
/
malaria.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f3df36
)
Un fichier MATLAB était manquant.
author
Greg Burri
<greg.burri@gmail.com>
Fri, 22 May 2015 11:35:44 +0000
(13:35 +0200)
committer
Greg Burri
<greg.burri@gmail.com>
Fri, 22 May 2015 11:35:44 +0000
(13:35 +0200)
src/SegmentationMethod.m
[new file with mode: 0644]
patch
|
blob
diff --git a/src/SegmentationMethod.m
b/src/SegmentationMethod.m
new file mode 100644
(file)
index 0000000..
179c176
--- /dev/null
+++ b/
src/SegmentationMethod.m
@@ -0,0
+1,13
@@
+% The method used by the function SegmentationO
+classdef SegmentationMethod
+ enumeration
+ % Segmentation of red blood cells with a distance transform following by applying
+ % the watershed algorithm.
+ WatershedByDistanceTransform,
+
+ % Segmentation of red blood celles with morphological gradient following by applying
+ % the watershed algorithm.
+ WatershedByMorphologicalGradient
+ end
+end
+