Browse Source

Fix naming. Apologies to all who have forked.

Former-commit-id: b3318e2897e80fcb91ed454fc725fb8235552210
Former-commit-id: 2f26839a479acd967c72874647e312971a5a99da
Former-commit-id: ec046509505fb50980397da16e659e80bbded4aa
af/merge-core
James Jackson-South 10 years ago
parent
commit
082a8290c6
  1. 2
      src/ImageProcessorCore/Filters/Alpha.cs
  2. 2
      src/ImageProcessorCore/Filters/BackgroundColor.cs
  3. 2
      src/ImageProcessorCore/Filters/Binarization/Threshold.cs
  4. 2
      src/ImageProcessorCore/Filters/Blend.cs
  5. 2
      src/ImageProcessorCore/Filters/Brightness.cs
  6. 2
      src/ImageProcessorCore/Filters/ColorMatrix/ColorMatrixFilter.cs
  7. 2
      src/ImageProcessorCore/Filters/Contrast.cs
  8. 2
      src/ImageProcessorCore/Filters/Convolution/Convolution2DFilter.cs
  9. 2
      src/ImageProcessorCore/Filters/Convolution/Convolution2PassFilter.cs
  10. 2
      src/ImageProcessorCore/Filters/Convolution/ConvolutionFilter.cs
  11. 2
      src/ImageProcessorCore/Filters/Glow.cs
  12. 2
      src/ImageProcessorCore/Filters/Invert.cs
  13. 2
      src/ImageProcessorCore/Filters/Pixelate.cs
  14. 2
      src/ImageProcessorCore/Filters/Vignette.cs
  15. 4
      src/ImageProcessorCore/ParallelImageProcessor.cs
  16. 2
      src/ImageProcessorCore/Samplers/Crop.cs
  17. 2
      src/ImageProcessorCore/Samplers/EntropyCrop.cs
  18. 2
      src/ImageProcessorCore/Samplers/Resampler.cs
  19. 2
      src/ImageProcessorCore/Samplers/RotateFlip.cs

2
src/ImageProcessorCore/Filters/Alpha.cs

@ -12,7 +12,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// An <see cref="IImageProcessor"/> to change the Alpha of an <see cref="Image"/>.
/// </summary>
public class Alpha : ParallelImageProcessorCore
public class Alpha : ParallelImageProcessor
{
/// <summary>
/// Initializes a new instance of the <see cref="Alpha"/> class.

2
src/ImageProcessorCore/Filters/BackgroundColor.cs

@ -11,7 +11,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// Sets the background color of the image.
/// </summary>
public class BackgroundColor : ParallelImageProcessorCore
public class BackgroundColor : ParallelImageProcessor
{
/// <summary>
/// The epsilon for comparing floating point numbers.

2
src/ImageProcessorCore/Filters/Binarization/Threshold.cs

@ -14,7 +14,7 @@ namespace ImageProcessorCore.Filters
/// <see cref="Image"/>. The image will be converted to greyscale before thresholding
/// occurs.
/// </summary>
public class Threshold : ParallelImageProcessorCore
public class Threshold : ParallelImageProcessor
{
/// <summary>
/// Initializes a new instance of the <see cref="Threshold"/> class.

2
src/ImageProcessorCore/Filters/Blend.cs

@ -10,7 +10,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// Combines two images together by blending the pixels.
/// </summary>
public class Blend : ParallelImageProcessorCore
public class Blend : ParallelImageProcessor
{
/// <summary>
/// The image to blend.

2
src/ImageProcessorCore/Filters/Brightness.cs

@ -12,7 +12,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// An <see cref="IImageProcessor"/> to change the brightness of an <see cref="Image"/>.
/// </summary>
public class Brightness : ParallelImageProcessorCore
public class Brightness : ParallelImageProcessor
{
/// <summary>
/// Initializes a new instance of the <see cref="Brightness"/> class.

2
src/ImageProcessorCore/Filters/ColorMatrix/ColorMatrixFilter.cs

@ -11,7 +11,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// The color matrix filter.
/// </summary>
public abstract class ColorMatrixFilter : ParallelImageProcessorCore, IColorMatrixFilter
public abstract class ColorMatrixFilter : ParallelImageProcessor, IColorMatrixFilter
{
/// <inheritdoc/>
public abstract Matrix4x4 Matrix { get; }

2
src/ImageProcessorCore/Filters/Contrast.cs

@ -12,7 +12,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// An <see cref="IImageProcessor"/> to change the contrast of an <see cref="Image"/>.
/// </summary>
public class Contrast : ParallelImageProcessorCore
public class Contrast : ParallelImageProcessor
{
/// <summary>
/// Initializes a new instance of the <see cref="Contrast"/> class.

2
src/ImageProcessorCore/Filters/Convolution/Convolution2DFilter.cs

@ -11,7 +11,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// Defines a filter that uses two one-dimensional matrices to perform convolution against an image.
/// </summary>
public abstract class Convolution2DFilter : ParallelImageProcessorCore
public abstract class Convolution2DFilter : ParallelImageProcessor
{
/// <summary>
/// Gets the horizontal gradient operator.

2
src/ImageProcessorCore/Filters/Convolution/Convolution2PassFilter.cs

@ -10,7 +10,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// Defines a filter that uses two one-dimensional matrices to perform two-pass convolution against an image.
/// </summary>
public abstract class Convolution2PassFilter : ParallelImageProcessorCore
public abstract class Convolution2PassFilter : ParallelImageProcessor
{
/// <summary>
/// Gets the horizontal gradient operator.

2
src/ImageProcessorCore/Filters/Convolution/ConvolutionFilter.cs

@ -10,7 +10,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// Defines a filter that uses a 2 dimensional matrix to perform convolution against an image.
/// </summary>
public abstract class ConvolutionFilter : ParallelImageProcessorCore
public abstract class ConvolutionFilter : ParallelImageProcessor
{
/// <summary>
/// Gets the 2d gradient operator.

2
src/ImageProcessorCore/Filters/Glow.cs

@ -12,7 +12,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// Creates a glow effect on the image
/// </summary>
public class Glow : ParallelImageProcessorCore
public class Glow : ParallelImageProcessor
{
/// <summary>
/// Gets or sets the vignette color to apply.

2
src/ImageProcessorCore/Filters/Invert.cs

@ -11,7 +11,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// An <see cref="IImageProcessor"/> to invert the colors of an <see cref="Image"/>.
/// </summary>
public class Invert : ParallelImageProcessorCore
public class Invert : ParallelImageProcessor
{
/// <inheritdoc/>
protected override void Apply(ImageBase target, ImageBase source, Rectangle targetRectangle, Rectangle sourceRectangle, int startY, int endY)

2
src/ImageProcessorCore/Filters/Pixelate.cs

@ -12,7 +12,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// An <see cref="IImageProcessor"/> to invert the colors of an <see cref="Image"/>.
/// </summary>
public class Pixelate : ParallelImageProcessorCore
public class Pixelate : ParallelImageProcessor
{
/// <summary>
/// Initializes a new instance of the <see cref="Pixelate"/> class.

2
src/ImageProcessorCore/Filters/Vignette.cs

@ -12,7 +12,7 @@ namespace ImageProcessorCore.Filters
/// <summary>
/// Creates a vignette effect on the image
/// </summary>
public class Vignette : ParallelImageProcessorCore
public class Vignette : ParallelImageProcessor
{
/// <summary>
/// Gets or sets the vignette color to apply.

4
src/ImageProcessorCore/ParallelImageProcessor.cs

@ -1,4 +1,4 @@
// <copyright file="ParallelImageProcessorCore.cs" company="James Jackson-South">
// <copyright file="ParallelImageProcessor.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
@ -12,7 +12,7 @@ namespace ImageProcessorCore
/// <summary>
/// Allows the application of processors using parallel processing.
/// </summary>
public abstract class ParallelImageProcessorCore : IImageProcessor
public abstract class ParallelImageProcessor : IImageProcessor
{
/// <inheritdoc/>
public event ProgressEventHandler OnProgress;

2
src/ImageProcessorCore/Samplers/Crop.cs

@ -10,7 +10,7 @@ namespace ImageProcessorCore.Samplers
/// <summary>
/// Provides methods to allow the cropping of an image.
/// </summary>
public class Crop : ParallelImageProcessorCore
public class Crop : ParallelImageProcessor
{
/// <inheritdoc/>
protected override void Apply(ImageBase target, ImageBase source, Rectangle targetRectangle, Rectangle sourceRectangle, int startY, int endY)

2
src/ImageProcessorCore/Samplers/EntropyCrop.cs

@ -14,7 +14,7 @@ namespace ImageProcessorCore.Samplers
/// Provides methods to allow the cropping of an image to preserve areas of highest
/// entropy.
/// </summary>
public class EntropyCrop : ParallelImageProcessorCore
public class EntropyCrop : ParallelImageProcessor
{
/// <summary>
/// The rectangle for cropping

2
src/ImageProcessorCore/Samplers/Resampler.cs

@ -12,7 +12,7 @@ namespace ImageProcessorCore.Samplers
/// <summary>
/// Provides methods that allow the resampling of images using various algorithms.
/// </summary>
public abstract class Resampler : ParallelImageProcessorCore
public abstract class Resampler : ParallelImageProcessor
{
/// <summary>
/// Initializes a new instance of the <see cref="Resampler"/> class.

2
src/ImageProcessorCore/Samplers/RotateFlip.cs

@ -11,7 +11,7 @@ namespace ImageProcessorCore.Samplers
/// <summary>
/// Provides methods that allow the rotation and flipping of an image around its center point.
/// </summary>
public class RotateFlip : ParallelImageProcessorCore
public class RotateFlip : ParallelImageProcessor
{
/// <summary>
/// Initializes a new instance of the <see cref="RotateFlip"/> class.

Loading…
Cancel
Save