File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
src/ImageSharp/Processing Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public static class HistogramEqualizationExtensions
1616 /// <param name="source">The image this method extends.</param>
1717 /// <returns>The <see cref="IImageProcessingContext"/> to allow chaining of operations.</returns>
1818 public static IImageProcessingContext HistogramEqualization ( this IImageProcessingContext source ) =>
19- HistogramEqualization ( source , HistogramEqualizationOptions . Default ) ;
19+ HistogramEqualization ( source , new HistogramEqualizationOptions ( ) ) ;
2020
2121 /// <summary>
2222 /// Equalizes the histogram of an image to increases the contrast.
Original file line number Diff line number Diff line change @@ -8,11 +8,6 @@ namespace SixLabors.ImageSharp.Processing.Processors.Normalization
88 /// </summary>
99 public class HistogramEqualizationOptions
1010 {
11- /// <summary>
12- /// Gets the default <see cref="HistogramEqualizationOptions"/> instance.
13- /// </summary>
14- public static HistogramEqualizationOptions Default { get ; } = new HistogramEqualizationOptions ( ) ;
15-
1611 /// <summary>
1712 /// Gets or sets the histogram equalization method to use. Defaults to global histogram equalization.
1813 /// </summary>
You can’t perform that action at this time.
0 commit comments