X-Git-Url: http://git.euphorik.ch/?p=master-thesis.git;a=blobdiff_plain;f=Parasitemia%2FParasitemiaUI%2FTypes.fs;h=ada2a1f52cb4ee3db7c3468d523e0abf28f88eab;hp=e29465c0008a1b686b7a9f9c58fe1483660baece;hb=2d712781def419c9acc98368f7102b19b064f16d;hpb=154264f33619b78e17182082b483cba97e128698 diff --git a/Parasitemia/ParasitemiaUI/Types.fs b/Parasitemia/ParasitemiaUI/Types.fs index e29465c..ada2a1f 100644 --- a/Parasitemia/ParasitemiaUI/Types.fs +++ b/Parasitemia/ParasitemiaUI/Types.fs @@ -9,40 +9,85 @@ open Emgu.CV.Structure open Newtonsoft.Json -let healthyRBColor = Color.FromRgb(255uy, 255uy, 0uy) // Yellow-green. -let infectedRBColor = Color.FromRgb(255uy, 0uy, 40uy) // Red with a bit of blue. +open ParasitemiaCore.UnitsOfMeasure -type RBC = { - num: int +let healthyRBColor = Color.FromRgb (255uy, 255uy, 0uy) // Yellow-green. +let infectedRBColor = Color.FromRgb (255uy, 0uy, 40uy) // Red with a bit of blue. - [] - mutable infected: bool +type RBC = + { + num : int - [] - mutable setManually: bool + [] + mutable infected : bool - center: Point - size: Size - infectedArea: int } + [] + mutable setManually : bool -type SourceImage = { - mutable num: int - mutable name: string + center : Point + size : Size + infectedArea : int + } - mutable config: ParasitemiaCore.Config.Config - mutable dateLastAnalysis: DateTime // UTC. - img: Image - mutable rbcs: RBC list +type SourceImage = + { + mutable num : int + mutable name : string - mutable healthyRBCBrightness: float32 - mutable infectedRBCBrightness: float32 } with + mutable config : ParasitemiaCore.Config.Config + mutable dateLastAnalysis : DateTime // UTC. + img : Image + mutable rbcs : RBC list + + mutable healthyRBCBrightness : float32 + mutable infectedRBCBrightness : float32 + } + with + member this.HealthyRBCColor : SolidColorBrush = + let mutable color = healthyRBColor * this.healthyRBCBrightness + color.A <- 255uy + SolidColorBrush (color) + + member this.InfectedRBCColor : SolidColorBrush = + let mutable color = infectedRBColor * this.infectedRBCBrightness + color.A <- 255uy + SolidColorBrush (color) + +type PredefinedPPI = + { + ppi : int + label : string + } + with + override this.ToString () = + sprintf "%s: %d" this.label this.ppi + +type SensorSize = + { + w : float + h : float + label : string + } + with + override this.ToString () = + sprintf "%g mm × %g mm%s" this.w this.h (if this.label = "" then "" else " (" + this.label + ")") + +let defaultPredefinedPPI = + [ + { ppi = 230000; label = "50×" } + { ppi = 460000; label = "100×" } + ] + +let defaultSensorSizes = + [ + { w = 3.2; h = 2.4; label = "1/4″" } + { w = 4.8; h = 3.6; label = "1/3″" } + { w = 5.76; h = 4.29; label = "1/2.5″" } + { w = 6.4; h = 4.8; label = "1/2″" } + { w = 7.18; h = 5.32; label = "1/1.8″" } + { w = 7.6; h = 5.7; label = "1/1.7″" } + { w = 8.8; h = 6.6; label = "2/3″" } + { w = 13.2; h = 8.8; label = "1″" } + ] - member this.HealthyRBCColor: SolidColorBrush = - let mutable color = healthyRBColor * this.healthyRBCBrightness - color.A <- 255uy; - SolidColorBrush(color) - member this.InfectedRBCColor: SolidColorBrush = - let mutable color = infectedRBColor * this.infectedRBCBrightness - color.A <- 255uy; - SolidColorBrush(color) \ No newline at end of file