1
module Parasitemia.Main
6 open System.Windows.Media
7 open System.Windows.Markup
8 open System.Windows.Shapes
9 open System.Windows.Controls
11 open System.Diagnostics
14 open Emgu.CV.Structure
19 let display (window
: Views.MainWindow) (img
: IImage) =
20 let imgControl = window
.Root.FindName("img") :?> Controls.Image
21 imgControl.Source <- BitmapSourceConvert.ToBitmapSource(img
)
23 let log (window
: Views.MainWindow) (mess
: string) =
24 let txtLog = window
.Root.FindName("txtLog") :?> Controls.TextBlock
25 txtLog.Text <- txtLog.Text + mess
+ "\n"
33 | CmdLine of Input * string
36 type Arguments = RunningMode * bool
38 let parseArgs (args
: string[]) : Arguments =
40 let output = Array.tryFindIndex
((=) "--output") args
43 match Array.tryFindIndex
((=) "--folder") args
, output with
44 | Some i
, Some i_output when i
< args
.Length - 2 && i_output < args
.Length - 2 ->
45 CmdLine ((Dir args
.[i
+1]), args
.[i_output + 1])
47 match Array.tryFindIndex
((=) "--file") args
, output with
48 | Some i
, Some i_output when i
< args
.Length - 2 && i_output < args
.Length - 2 ->
49 CmdLine ((File args.[i
+1]), args.[i_output + 1])
53 runningMode, Array.exists
((=) "--debug") args
58 match parseArgs args with
64 initialAreaOpen
= 2000
69 preFilterSigma
= 1.7 // 1.5
72 factorWindowSize
= 2.0
74 darkStainLevel
= 0.25 // Lower -> more sensitive. 0.3
75 maxDarkStainRatio
= 0.1 // 10 %
77 infectionArea
= 0.012 // 1.2 %
78 infectionLevel
= 1.12 // Lower -> more sensitive.
80 stainArea
= 0.08 // 8 %
81 stainLevel
= 1.1 // Lower -> more sensitive.
82 maxStainRatio
= 0.12 // 12 %
84 standardDeviationMaxRatio
= 0.5 // 0.55
85 minimumCellArea
= 0.5 })
88 | CmdLine (input
, output) ->
91 config.Debug <- DebugOn output
93 Directory.CreateDirectory output |> ignore
95 use logFile = new StreamWriter(new FileStream(Path.Combine(output, "log.txt"), FileMode.Append, FileAccess.Write))
96 Utils.log <- (fun m
-> logFile.WriteLine(m
))
97 Utils.log (sprintf
"=== New run : %A %A ===" DateTime.Now (if debug
then "[DEBUG]" else "[RELEASE]"))
99 let files = match input
with
100 | File file
-> [ file
]
101 | Dir dir
-> Directory.EnumerateFiles dir |> List.ofSeq
103 use resultFile = new StreamWriter(new FileStream(Path.Combine(output, "results.txt"), FileMode.Append, FileAccess.Write))
107 use img = new Image<Bgr, byte
>(file
)
108 Utils.log (sprintf
"== File: %A" file
)
110 let cells = Utils.logTime
"Whole analyze" (fun () -> ImageAnalysis.doAnalysis
img (Path.GetFileNameWithoutExtension(FileInfo(file
).Name)) config)
111 let total, infected
= Utils.countCells
cells
112 fprintf
resultFile "File: %s %d %d %.2f\n" file
total infected
(100. * (float infected) / (float total))
114 | :? IOException as ex -> Utils.log (sprintf
"Unable to open the image '%A': %A" file
ex)
118 let app = new Application()
119 let mainWindow = Views.MainWindow()
123 config.Debug <- DebugOn "."
125 Utils.log <- (fun m
-> log mainWindow m
)
127 //display mainWindow img
128 mainWindow.Root.Show()