7 | DebugOn of string // Output directory.
19 factorWindowSize
: float // factor of 'maxRBCSize'.
21 // Parasites detection.
23 maxDarkStainRatio
: float
25 stainArea
: float // Factor of a RBC area. 0.5 means the half of RBC area.
26 stainLevel
: float // [0, 2]
27 maxStainRatio
: float // [0, 1]
29 infectionArea
: float // Factor of a RBC area. 0.5 means the half of RBC area.
30 infectionLevel
: float // [0, 2]
31 parasitePixelsRequired
: int
33 standardDeviationMaxRatio
: float // The standard deviation of the pixel values of a cell can't be greater than standardDeviationMaxRatio * global standard deviation
34 minimumCellArea
: float // Factor of RBC area.
37 type Config (param
: Parameters) =
38 member this
.Parameters = param
39 member val Debug = DebugOff with get
, set
40 member val RBCRadius = 30. with get
, set
42 member this
.RBCMinRadius = this
.RBCRadius + param
.minRbcRadius
* this
.RBCRadius
43 member this
.RBCMaxRadius = this
.RBCRadius + param
.maxRbcRadius
* this
.RBCRadius
45 member this
.RBCArea = Math.PI * this
.RBCRadius ** 2.0
46 member this
.RBCMinArea = param
.minimumCellArea
* this
.RBCArea
48 member this
.InfectionArea = param
.infectionArea
* this
.RBCArea
49 member this
.StainArea = param
.stainArea
* this
.RBCArea