Accord.Imaging.Filters.PointsMarker.init C# (CSharp) Method

init() private method

private init ( IEnumerable points, Color markerColor, int width ) : Color
points IEnumerable
markerColor System.Drawing.Color
width int
return System.Drawing.Color
        private Color init(IEnumerable<IntPoint> points, Color markerColor, int width)
        {
            this.points = points;
            this.markerColor = markerColor;
            this.width = width;

            formatTranslations[PixelFormat.Format8bppIndexed] = PixelFormat.Format8bppIndexed;
            formatTranslations[PixelFormat.Format24bppRgb] = PixelFormat.Format24bppRgb;
            formatTranslations[PixelFormat.Format32bppArgb] = PixelFormat.Format32bppArgb;
            return markerColor;
        }