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