From 24de58ab096a57ddc2840be4588b56bfdfebbe9b Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Fri, 10 May 2019 00:26:34 +0200 Subject: [PATCH] cleanup --- .../Processors/Binarization/BinaryOrderedDitherProcessor.cs | 3 +++ .../Processors/Binarization/BinaryThresholdProcessor.cs | 4 ++-- .../Processors/Overlays/BackgroundColorProcessor.cs | 2 +- .../Processing/Processors/Overlays/GlowProcessor.cs | 1 - 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs b/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs index 99c57171c..6cf1a9526 100644 --- a/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs +++ b/src/ImageSharp/Processing/Processors/Binarization/BinaryOrderedDitherProcessor.cs @@ -8,6 +8,9 @@ using SixLabors.ImageSharp.Processing.Processors.Dithering; namespace SixLabors.ImageSharp.Processing.Processors.Binarization { + /// + /// Defines a binary threshold filtering using ordered dithering. + /// public class BinaryOrderedDitherProcessor : IImageProcessor { /// diff --git a/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs b/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs index 50086936c..83701aa8a 100644 --- a/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs +++ b/src/ImageSharp/Processing/Processors/Binarization/BinaryThresholdProcessor.cs @@ -41,12 +41,12 @@ namespace SixLabors.ImageSharp.Processing.Processors.Binarization public float Threshold { get; } /// - /// Gets or sets the color to use for pixels that are above the threshold. + /// Gets the color to use for pixels that are above the threshold. /// public Color UpperColor { get; } /// - /// Gets or sets the color to use for pixels that fall below the threshold. + /// Gets the color to use for pixels that fall below the threshold. /// public Color LowerColor { get; } diff --git a/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs b/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs index 0dd0c4118..62848172a 100644 --- a/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs +++ b/src/ImageSharp/Processing/Processors/Overlays/BackgroundColorProcessor.cs @@ -6,7 +6,7 @@ using SixLabors.ImageSharp.PixelFormats; namespace SixLabors.ImageSharp.Processing.Processors.Overlays { /// - /// Defines a processing operation to replace the background color of an . + /// Defines a processing operation to replace the background color of an . /// public sealed class BackgroundColorProcessor : IImageProcessor { diff --git a/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs b/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs index 4927a0ed7..dcdddb217 100644 --- a/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs +++ b/src/ImageSharp/Processing/Processors/Overlays/GlowProcessor.cs @@ -20,7 +20,6 @@ namespace SixLabors.ImageSharp.Processing.Processors.Overlays { } - /// /// Initializes a new instance of the class. ///