Browse Source

Comment cleanup [skip ci]

Former-commit-id: 51db265a85ff8849493bde0f4794d807c5ebf203
Former-commit-id: 49c4a205171d36ba72586cd99759a86fa7a62618
Former-commit-id: 7ada29cd300e95dd089053005ee0255d243dedc8
pull/1/head
James Jackson-South 10 years ago
parent
commit
c3028093b1
  1. 2
      src/ImageProcessorCore/Samplers/Processors/CropProcessor.cs
  2. 2
      src/ImageProcessorCore/Samplers/Processors/EntropyCropProcessor.cs
  3. 2
      src/ImageProcessorCore/Samplers/Processors/ImageSampler.cs
  4. 2
      src/ImageProcessorCore/Samplers/Processors/Matrix3x2Processor.cs
  5. 2
      src/ImageProcessorCore/Samplers/Processors/ResizeProcessor.cs
  6. 2
      src/ImageProcessorCore/Samplers/Processors/RotateProcessor.cs
  7. 2
      src/ImageProcessorCore/Samplers/Processors/SkewProcessor.cs
  8. 2
      tests/ImageProcessorCore.Benchmarks/Program.cs

2
src/ImageProcessorCore/Samplers/Processors/CropProcessor.cs

@ -10,6 +10,8 @@ namespace ImageProcessorCore.Processors
/// <summary>
/// Provides methods to allow the cropping of an image.
/// </summary>
/// <typeparam name="T">The pixel format.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
public class CropProcessor<T, TP> : ImageSampler<T, TP>
where T : IPackedVector<TP>
where TP : struct

2
src/ImageProcessorCore/Samplers/Processors/EntropyCropProcessor.cs

@ -12,6 +12,8 @@ namespace ImageProcessorCore.Processors
/// Provides methods to allow the cropping of an image to preserve areas of highest
/// entropy.
/// </summary>
/// <typeparam name="T">The pixel format.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
public class EntropyCropProcessor<T, TP> : ImageSampler<T, TP>
where T : IPackedVector<TP>
where TP : struct

2
src/ImageProcessorCore/Samplers/Processors/ImageSampler.cs

@ -9,6 +9,8 @@ namespace ImageProcessorCore.Processors
/// Applies sampling methods to an image.
/// All processors requiring resampling or resizing should inherit from this.
/// </summary>
/// <typeparam name="T">The pixel format.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
public abstract class ImageSampler<T, TP> : ImageProcessor<T, TP>, IImageSampler<T, TP>
where T : IPackedVector<TP>
where TP : struct

2
src/ImageProcessorCore/Samplers/Processors/Matrix3x2Processor.cs

@ -10,6 +10,8 @@ namespace ImageProcessorCore.Processors
/// <summary>
/// Provides methods to transform an image using a <see cref="Matrix3x2"/>.
/// </summary>
/// <typeparam name="T">The pixel format.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
public abstract class Matrix3x2Processor<T, TP> : ImageSampler<T, TP>
where T : IPackedVector<TP>
where TP : struct

2
src/ImageProcessorCore/Samplers/Processors/ResizeProcessor.cs

@ -12,6 +12,8 @@ namespace ImageProcessorCore.Processors
/// <summary>
/// Provides methods that allow the resizing of images using various algorithms.
/// </summary>
/// <typeparam name="T">The pixel format.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
public class ResizeProcessor<T, TP> : ImageSampler<T, TP>
where T : IPackedVector<TP>
where TP : struct

2
src/ImageProcessorCore/Samplers/Processors/RotateProcessor.cs

@ -11,6 +11,8 @@ namespace ImageProcessorCore.Processors
/// <summary>
/// Provides methods that allow the rotating of images.
/// </summary>
/// <typeparam name="T">The pixel format.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
public class RotateProcessor<T, TP> : Matrix3x2Processor<T, TP>
where T : IPackedVector<TP>
where TP : struct

2
src/ImageProcessorCore/Samplers/Processors/SkewProcessor.cs

@ -11,6 +11,8 @@ namespace ImageProcessorCore.Processors
/// <summary>
/// Provides methods that allow the skewing of images.
/// </summary>
/// <typeparam name="T">The pixel format.</typeparam>
/// <typeparam name="TP">The packed format. <example>long, float.</example></typeparam>
public class SkewProcessor<T, TP> : Matrix3x2Processor<T, TP>
where T : IPackedVector<TP>
where TP : struct

2
tests/ImageProcessorCore.Benchmarks/Program.cs

@ -8,7 +8,7 @@
/// The main.
/// </summary>
/// <param name="args">
/// The arguments to pas to the program.
/// The arguments to pass to the program.
/// </param>
public static void Main(string[] args)
{

Loading…
Cancel
Save