module Classifier open System open System.Drawing open Emgu.CV open Emgu.CV.Structure type CellClass = HealthyRBC | InfectedRBC | Peculiar type Cell = { cellClass: CellClass center: Point elements: Matrix } let findCells (ellipses: Types.Ellipse list) (parasites: ParasitesMarker.Result) (fg: Image) : Cell list = []