Un fichier MATLAB était manquant.
authorGreg Burri <greg.burri@gmail.com>
Fri, 22 May 2015 11:35:44 +0000 (13:35 +0200)
committerGreg Burri <greg.burri@gmail.com>
Fri, 22 May 2015 11:35:44 +0000 (13:35 +0200)
src/SegmentationMethod.m [new file with mode: 0644]

diff --git a/src/SegmentationMethod.m b/src/SegmentationMethod.m
new file mode 100644 (file)
index 0000000..179c176
--- /dev/null
@@ -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
+