The main process is now complete.
[master-thesis.git] / Parasitemia / Parasitemia / Config.fs
index 75aa95f..8a172b8 100644 (file)
@@ -1,8 +1,17 @@
 module Config
 
+type Debug =
+    | DebugOff
+    | DebugOn of string // Output directory.
+
 type Config = {
+    debug: Debug
+
     scale: float
 
+    minRBCSize: float
+    maxRBCSize: float
+
     doGSigma1: float
     doGSigma2: float
     doGLowFreqPercentageReduction: float
@@ -13,8 +22,15 @@ type Config = {
     stainSigma: float
     stainLevel: float
     stainSpreadRequired: float
-    
+
     infectionSigma: float
     infectionLevel: float
     infectionPixelsRequired: int
+
+    percentageOfFgValidCell: float
+
+    MaxDarkStainRatio: float
+
+    minimumCellArea: int
+    maxOffcenter: float
 }
\ No newline at end of file