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