Ejemplo n.º 1
0
 public static double Min(IImage <double> img)
 => img.Aggregate(Math.Min);
Ejemplo n.º 2
0
 public static double Max(IImage <double> img)
 => img.Aggregate(Math.Max);