Cleaning syntax.
[master-thesis.git] / Parasitemia / ParasitemiaCore / ImgTools / IO.fs
index 219eab6..1a663c7 100644 (file)
@@ -6,10 +6,10 @@ open System.Drawing
 open Emgu.CV
 open Emgu.CV.Structure
 
-let saveImg (img: Image<'TColor, 'TDepth>) (filepath: string) =
+let saveImg (img : Image<'TColor, 'TDepth>) (filepath : string) =
     img.Save(filepath)
 
-let saveMat (mat: Matrix<'TDepth>) (filepath: string) =
+let saveMat (mat : Matrix<'TDepth>) (filepath : string) =
     use img = new Image<Gray, 'TDeph>(mat.Size)
     mat.CopyTo(img)
     saveImg img filepath