GUI (work in progress..)
[master-thesis.git] / Parasitemia / Parasitemia / GUI / Types.fs
1 module Parasitemia.GUI.Types
2
3 open System.Drawing
4
5 open Emgu.CV
6 open Emgu.CV.Structure
7
8 type RBC = {
9 num: int
10
11 infected: bool
12 addedManually: bool
13 removed: bool
14
15 center: Point
16 size: Size
17 stainArea: int }
18
19 type SourceImage = {
20 num: int
21 img: Image<Bgr, byte>
22 rbcs: RBC list }