X-Git-Url: http://git.euphorik.ch/?p=master-thesis.git;a=blobdiff_plain;f=Parasitemia%2FParasitemia%2FGUI%2FTypes.fs;h=f22afdb56cf50c3e956b8becb8a3d98062733641;hp=d6e9cf911caaf32aaa1b3794dd779e2ba50e062a;hb=807437584bdd3d7b7b33be8282472f81f8cce606;hpb=f4fdf61ef98b913129ddb771392c0bcb1475e6fb diff --git a/Parasitemia/Parasitemia/GUI/Types.fs b/Parasitemia/Parasitemia/GUI/Types.fs index d6e9cf9..f22afdb 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 rbcRadius: float + 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