public ErrorDiffusionPaletteProcessor(ErrorDiffusionPaletteProcessor definition)
     : base(definition)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ErrorDiffusionPaletteProcessor{TPixel}"/> class.
 /// </summary>
 /// <param name="definition">The <see cref="ErrorDiffusionPaletteProcessor"/> defining the processor parameters.</param>
 /// <param name="source">The source <see cref="Image{TPixel}"/> for the current processor instance.</param>
 /// <param name="sourceRectangle">The source area to process for the current processor instance.</param>
 public ErrorDiffusionPaletteProcessor(ErrorDiffusionPaletteProcessor definition, Image <TPixel> source, Rectangle sourceRectangle)
     : base(definition, source, sourceRectangle)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ErrorDiffusionPaletteProcessor{TPixel}"/> class.
 /// </summary>
 /// <param name="configuration">The configuration which allows altering default behaviour or extending the library.</param>
 /// <param name="definition">The <see cref="ErrorDiffusionPaletteProcessor"/> defining the processor parameters.</param>
 /// <param name="source">The source <see cref="Image{TPixel}"/> for the current processor instance.</param>
 /// <param name="sourceRectangle">The source area to process for the current processor instance.</param>
 public ErrorDiffusionPaletteProcessor(Configuration configuration, ErrorDiffusionPaletteProcessor definition, Image <TPixel> source, Rectangle sourceRectangle)
     : base(configuration, definition, source, sourceRectangle)
 {
 }