X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=Parasitemia%2FParasitemia%2FGUI%2FState.fs;h=a1ae0521c01ea831a35876f05053eef6d4052366;hb=999a48b8eb25c92e4403c9280fd4fe68f9bc4b7b;hp=a4a1773c8e17f378f0c524b04a394b28061487ae;hpb=3ddaf64dc5ba6a7066a279ad75b9a1ee72194639;p=master-thesis.git diff --git a/Parasitemia/Parasitemia/GUI/State.fs b/Parasitemia/Parasitemia/GUI/State.fs index a4a1773..a1ae052 100644 --- a/Parasitemia/Parasitemia/GUI/State.fs +++ b/Parasitemia/Parasitemia/GUI/State.fs @@ -1,17 +1,50 @@ -module State +module Parasitemia.GUI.State open System.Collections.Generic +open System.Windows + +open Emgu.CV +open Emgu.CV.Structure + +open Types type State () = - let cells = List() + let sourceImages = List() + member val CurrentImage: SourceImage option = None with get, set member val FilePath: string = "" with get, set member val PatientID: string = "" with get, set member this.Save () = - let data = { Pia.sources = []; Pia.patientID = this.PatientID } - Pia.save this.FilePath data + let data = { PiaZ.sources = List.ofSeq sourceImages; PiaZ.patientID = this.PatientID } + PiaZ.save this.FilePath data member this.Load () = - let data = Pia.load this.FilePath - this.PatientID <- data.patientID \ No newline at end of file + let data = PiaZ.load this.FilePath + this.PatientID <- data.patientID + sourceImages.Clear() + sourceImages.InsertRange(0, data.sources) + + member this.AddSourceImage (filePath: string) : SourceImage = + let srcImg = { num = sourceImages.Count + 1; rbcs = []; img = new Image(filePath) } + sourceImages.Add(srcImg) + srcImg + + member this.SetResult (num: int) (cells: Cell list) = + let sourceImage = sourceImages.Find(fun srcImg -> srcImg.num = num) + sourceImage.rbcs <- cells + |> List.filter (fun cell -> match cell.cellClass with HealthyRBC | InfectedRBC -> true | _ -> false ) + |> List.mapi (fun i cell -> + { num = i + infected = cell.cellClass = InfectedRBC + setManually = false + center = Point(float cell.center.X, float cell.center.Y) + size = Size(float cell.elements.Width, float cell.elements.Height) + stainArea = cell.stainArea }) + + member this.SourceImages : SourceImage seq = + sourceImages :> SourceImage seq + + member this.Reset () = + this.PatientID <- "" + sourceImages.Clear() \ No newline at end of file