X-Git-Url: http://git.euphorik.ch/?p=master-thesis.git;a=blobdiff_plain;f=Parasitemia%2FParasitemia%2FTypes.fs;h=a5511426482a761143f502444e6ef6efbbf6f1c6;hp=589a735380c039c2006e285604caa5b746b6c88e;hb=b070295cf67b2025164a34b6594e84f0d771cdc9;hpb=dec96d50e56e1932bbfa09e6bedf90d6b707ccbd diff --git a/Parasitemia/Parasitemia/Types.fs b/Parasitemia/Parasitemia/Types.fs index 589a735..a551142 100644 --- a/Parasitemia/Parasitemia/Types.fs +++ b/Parasitemia/Parasitemia/Types.fs @@ -1,6 +1,10 @@ module Types open System +open System.Drawing + +open Emgu.CV +open Emgu.CV.Structure type Ellipse (cx: float, cy: float, a: float, b: float, alpha: float) = member this.Cx = cx @@ -11,5 +15,43 @@ type Ellipse (cx: float, cy: float, a: float, b: float, alpha: float) = member this.Area = a * b * Math.PI // Does the ellipse contain the point (x, y)?. - member this.Contains x y = - ((x - cx) * cos alpha + (y - cy) * sin alpha) ** 2.0 / a ** 2.0 + ((x - cx) * sin alpha - (y - cy) * cos alpha) ** 2.0 / b ** 2.0 <= 1.0 \ No newline at end of file + member this.Contains x y = + ((x - cx) * cos alpha + (y - cy) * sin alpha) ** 2.0 / a ** 2.0 + ((x - cx) * sin alpha - (y - cy) * cos alpha) ** 2.0 / b ** 2.0 <= 1.0 + + member this.CutAVericalLine (y: float) : bool = + a ** 2.0 + b ** 2.0 - 2.0 * y ** 2.0 + 4.0 * y * cx - 2.0 * cx ** 2.0 + a ** 2.0 * cos (2.0 * alpha) - b ** 2.0 * cos (2.0 * alpha) > 0.0 + + member this.CutAnHorizontalLine (x: float) : bool = + a ** 2.0 + b ** 2.0 - 2.0 * x ** 2.0 + 4.0 * x * cy - 2.0 * cy ** 2.0 - a ** 2.0 * cos (2.0 * alpha) + b ** 2.0 * cos (2.0 * alpha) > 0.0 + + member this.isOutside (width: float) (height: float) = + this.Cx < 0.0 || this.Cx >= width || + this.Cy < 0.0 || this.Cy >= height || + this.CutAVericalLine 0.0 || this.CutAVericalLine width || + this.CutAnHorizontalLine 0.0 || this.CutAnHorizontalLine height + + member this.Scale (factor: float) = + Ellipse(this.Cx, this.Cy, this.A * factor, this.B * factor, alpha) + + // Approximation of Ramanujan. + member this.Perimeter = + Math.PI * (3.0 * (this.A + this.B) - sqrt ((3.0 * this.A + this.B) * (this.A + 3.0 * this.B))) + + +type CellClass = HealthyRBC | InfectedRBC | Peculiar + +type Cell = { + cellClass: CellClass + center: Point + elements: Matrix } + +[] +type Line (a: float, b: float) = + member this.A = a + member this.B = b + +[] +type PointD (x: float, y: float) = + member this.X = x + member this.Y = y +