Pinta.ImageManipulation.HistogramRgb.GetMeanColor C# (CSharp) Method

GetMeanColor() public method

public GetMeanColor ( ) : ColorBgra
return ColorBgra
		public override ColorBgra GetMeanColor ()
		{
			float[] mean = GetMean ();
			return ColorBgra.FromBgr ((byte)(mean[0] + 0.5f), (byte)(mean[1] + 0.5f), (byte)(mean[2] + 0.5f));
		}