Remove the removing of cells bases on standard deviation.
[master-thesis.git] / Parasitemia / ParasitemiaCore / Config.fs
index 21a36f9..18c64cc 100644 (file)
@@ -41,7 +41,7 @@ type Parameters = {
     nucleusAreaRatio: float32 // Factor of a RBC area. 0.5 means the half of RBC area.
     infectionSensitivity: float // between 0 (the least sensitive) and 1 (the most sensitive).
 
-    standardDeviationMaxRatio: float // The standard deviation of the pixel values of a cell can't be greater than standardDeviationMaxRatio * global standard deviation
+    // [<Obsolete>] standardDeviationMaxRatio: float // The standard deviation of the pixel values of a cell can't be greater than standardDeviationMaxRatio * global standard deviation
     minimumCellAreaFactor: float32 } // Factor of the mean RBC area. A cell with an area below this will be rejected.
 
 let defaultParameters = {
@@ -74,7 +74,7 @@ let defaultParameters = {
     nucleusAreaRatio = 0.01f // 1.0 %
     infectionSensitivity = 0.92
 
-    standardDeviationMaxRatio = 0.6
+    // standardDeviationMaxRatio = 0.6 // Obsolete.
     minimumCellAreaFactor = 0.4f }
 
 type RBCRadius (radius: float32, parameters: Parameters) =