X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=Parasitemia%2FParasitemia%2FGUI%2FTypes.fs;h=c90fc0c6a57b9d3746c73ef5f7ca7c8373dd07d0;hb=ee562c3b613791fd89a5c322546229e9d364cafb;hp=d6e9cf911caaf32aaa1b3794dd779e2ba50e062a;hpb=f4fdf61ef98b913129ddb771392c0bcb1475e6fb;p=master-thesis.git diff --git a/Parasitemia/Parasitemia/GUI/Types.fs b/Parasitemia/Parasitemia/GUI/Types.fs index d6e9cf9..c90fc0c 100644 --- a/Parasitemia/Parasitemia/GUI/Types.fs +++ b/Parasitemia/Parasitemia/GUI/Types.fs @@ -1,5 +1,6 @@ module Parasitemia.GUI.Types +open System open System.Windows open Emgu.CV @@ -8,15 +9,16 @@ open Emgu.CV.Structure type RBC = { num: int - infected: bool - addedManually: bool - removed: bool + mutable infected: bool + mutable setManually: bool center: Point size: Size - stainArea: int } + infectedArea: int } type SourceImage = { - num: int + mutable num: int + mutable config: Config.Config + mutable dateLastAnalysis: DateTime // UTC. img: Image - rbcs: RBC list } \ No newline at end of file + mutable rbcs: RBC list } \ No newline at end of file