X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=Parasitemia%2FParasitemiaCore%2FTypes.fs;h=e2accb7b98da738690a38085078fde075c846878;hb=6c70577f0bcc17881c753f7a527d2ff4672bb6aa;hp=8a3bd4f270b84c2a5fc106e8a39c8dcfaea45f4d;hpb=97c24aa168f06f507fdff79429038d78a2c33326;p=master-thesis.git diff --git a/Parasitemia/ParasitemiaCore/Types.fs b/Parasitemia/ParasitemiaCore/Types.fs index 8a3bd4f..e2accb7 100644 --- a/Parasitemia/ParasitemiaCore/Types.fs +++ b/Parasitemia/ParasitemiaCore/Types.fs @@ -2,12 +2,15 @@ open System open System.Drawing +open System.Collections.Generic open Emgu.CV open Emgu.CV.Structure open Const +type Points = HashSet + type Ellipse (cx: float32, cy: float32, a: float32, b: float32, alpha: float32) = member this.Cx = cx member this.Cy = cy @@ -16,7 +19,7 @@ type Ellipse (cx: float32, cy: float32, a: float32, b: float32, alpha: float32) member this.Alpha = alpha member this.Area = a * b * PI - // Does the ellipse contain the point (x, y)?. + // Does the ellipse contain the point (x, y)? member this.Contains x y = ((x - cx) * cos alpha + (y - cy) * sin alpha) ** 2.f / a ** 2.f + ((x - cx) * sin alpha - (y - cy) * cos alpha) ** 2.f / b ** 2.f <= 1.f @@ -55,10 +58,30 @@ type Cell = { type Line (a: float32, b: float32) = member this.A = a member this.B = b - member this.Valid = not (Single.IsInfinity this.A) -[] -type PointF (x: float32, y: float32) = - member this.X = x - member this.Y = y +type MaybeBuilder () = + member this.Bind (x, f) = + match x with + | None -> None + | Some a -> f a + + member this.ReturnFrom (x) = x + + member this.TryFinally (body, compensation) = + try this.ReturnFrom(body()) + finally compensation() + + member this.Using (disposable: 'a when 'a :> IDisposable, body) = + let body' = fun () -> body disposable + this.TryFinally(body', fun () -> + match disposable with + | null -> () + | disp -> disp.Dispose()) + + member this.Zero () = + None + + member this.Return (x) = + Some x +let maybe = new MaybeBuilder() \ No newline at end of file