コード例 #1
0
 public static double Min(IImage <double> img)
 => img.Aggregate(Math.Min);
コード例 #2
0
 public static double Max(IImage <double> img)
 => img.Aggregate(Math.Max);