The main process is now complete.
[master-thesis.git] / Parasitemia / Parasitemia / Config.fs
1 module Config
2
3 type Debug =
4 | DebugOff
5 | DebugOn of string // Output directory.
6
7 type Config = {
8 debug: Debug
9
10 scale: float
11
12 minRBCSize: float
13 maxRBCSize: float
14
15 doGSigma1: float
16 doGSigma2: float
17 doGLowFreqPercentageReduction: float
18
19 // Parasites detection.
20 darkStainLevel: float
21
22 stainSigma: float
23 stainLevel: float
24 stainSpreadRequired: float
25
26 infectionSigma: float
27 infectionLevel: float
28 infectionPixelsRequired: int
29
30 percentageOfFgValidCell: float
31
32 MaxDarkStainRatio: float
33
34 minimumCellArea: int
35 maxOffcenter: float
36 }