beginning of the classifier.
[master-thesis.git] / Parasitemia / Parasitemia / Classifier.fs
1 module Classifier
2
3 open System
4 open System.Drawing
5
6 open Emgu.CV
7 open Emgu.CV.Structure
8
9
10 type CellClass = HealthyRBC | InfectedRBC | Peculiar
11
12 type Cell = {
13 cellClass: CellClass
14 center: Point
15 elements: Matrix<byte> }
16
17 let findCells (ellipses: Types.Ellipse list) (parasites: ParasitesMarker.Result) (fg: Image<Gray, byte>) : Cell list =
18 []