The main process is now complete.
[master-thesis.git] / Parasitemia / Parasitemia / Config.fs
index b22a4fd..8a172b8 100644 (file)
@@ -1,9 +1,36 @@
 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
 
-    scale: float
+    // Parasites detection.
+    darkStainLevel: float
+
+    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