From b76f826eeaf4c886596a3a71cf6fc4ba9259186e Mon Sep 17 00:00:00 2001 From: Greg Burri Date: Fri, 22 May 2015 13:35:44 +0200 Subject: [PATCH] =?utf8?q?Un=20fichier=20MATLAB=20=C3=A9tait=20manquant.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/SegmentationMethod.m | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/SegmentationMethod.m diff --git a/src/SegmentationMethod.m b/src/SegmentationMethod.m new file mode 100644 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 + -- 2.45.2