45b1ca3e303e3846b170b02f70143d712c6fc91a
[master-thesis.git] / Parasitemia / Parasitemia / Config.fs
1 module Config
2
3 open System
4
5 type Debug =
6 | DebugOff
7 | DebugOn of string // Output directory.
8
9 type Parameters = {
10 scale: float
11
12 minRbcRadius: float
13 maxRbcRadius: float
14
15 preFilterSigma: float
16
17 // Ellipse.
18 factorNbPick: float
19 factorWindowSize: float // factor of 'maxRBCSize'.
20
21 // Parasites detection.
22 darkStainLevel: float
23 maxDarkStainRatio: float
24
25 stainArea: float // Factor of a RBC area. 0.5 means the half of RBC area.
26 stainLevel: float // > 1
27 maxStainRatio: float // [0, 1]
28
29 infectionArea: float // Factor of a RBC area. 0.5 means the half of RBC area.
30 infectionLevel: float // > 1
31
32 standardDeviationMaxRatio: float // The standard deviation of the pixel values of a cell can't be greater than standardDeviationMaxRatio * global standard deviation
33 minimumCellArea: float // Factor of RBC area.
34 }
35
36 type Config (param: Parameters) =
37 member this.Parameters = param
38 member val Debug = DebugOff with get, set
39 member val RBCRadius = 30. with get, set
40
41 member this.RBCMinRadius = this.RBCRadius + param.minRbcRadius * this.RBCRadius
42 member this.RBCMaxRadius = this.RBCRadius + param.maxRbcRadius * this.RBCRadius
43
44 member this.RBCArea = Math.PI * this.RBCRadius ** 2.0
45 member this.RBCMinArea = param.minimumCellArea * this.RBCArea
46
47 member this.InfectionArea = param.infectionArea * this.RBCArea
48 member this.StainArea = param.stainArea * this.RBCArea