/// <summary>
 /// Initializes a new instance of the <see cref="BinaryOrderedDitherProcessor{TPixel}"/> class.
 /// </summary>
 /// <param name="definition">The <see cref="BinaryErrorDiffusionProcessor"/> 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 BinaryOrderedDitherProcessor(BinaryOrderedDitherProcessor definition, Image <TPixel> source, Rectangle sourceRectangle)
     : base(source, sourceRectangle)
 {
     this.definition = definition;
 }
Ejemplo n.º 2
0
 public BinaryOrderedDitherProcessor(BinaryOrderedDitherProcessor definition)
 {
     this.definition = definition;
 }