Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LomographProcessor{TPixel}"/> class.
 /// </summary>
 /// <param name="definition">The <see cref="LomographProcessor"/> defining the 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 LomographProcessor(LomographProcessor definition, Image <TPixel> source, Rectangle sourceRectangle)
     : base(definition, source, sourceRectangle)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LomographProcessor{TPixel}"/> class.
 /// </summary>
 /// <param name="configuration">The configuration which allows altering default behaviour or extending the library.</param>
 /// <param name="definition">The <see cref="LomographProcessor"/> defining the 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 LomographProcessor(Configuration configuration, LomographProcessor definition, Image <TPixel> source, Rectangle sourceRectangle)
     : base(configuration, definition, source, sourceRectangle)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LomographProcessor{TPixel}"/> class.
 /// </summary>
 /// <param name="definition">The <see cref="LomographProcessor"/> defining the parameters.</param>
 public LomographProcessor(LomographProcessor definition)
     : base(definition)
 {
 }