To .NET 5 (lot of refactoring)
[master-thesis.git] / Parasitemia / ParasitemiaCore / Granulometry.fs
index 287cd3e..ea5ef67 100644 (file)
@@ -1,7 +1,6 @@
 module ParasitemiaCore.Granulometry
 
 open System
-open System.IO
 open System.Drawing
 
 open Emgu.CV
@@ -15,6 +14,7 @@ open Utils
 /// <param name="img"></param>
 /// <param name="range">Minimum radius * maximum radius</param>
 /// <param name="scale">le 1.0, to speed up the process.</param>
+/// <param name="useOctagon"></param>
 let findRadiusByClosing (img : Image<Gray, 'TDepth>) (range : int * int) (scale : float) (useOctagon : bool) : int =
     use scaledImg = if scale = 1. then img else img.Resize (scale, CvEnum.Inter.Area)