From: Greg Burri Date: Fri, 22 May 2015 11:35:44 +0000 (+0200) Subject: Un fichier MATLAB était manquant. X-Git-Url: http://git.euphorik.ch/?a=commitdiff_plain;h=b76f826eeaf4c886596a3a71cf6fc4ba9259186e;p=malaria.git Un fichier MATLAB était manquant. --- 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 +