Pinta.ImageManipulation.HistogramRgb.GetMeanColor C# (CSharp) 메소드

GetMeanColor() 공개 메소드

public GetMeanColor ( ) : ColorBgra
리턴 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));
		}