mirror of https://github.com/SixLabors/ImageSharp
4 changed files with 248 additions and 13 deletions
@ -0,0 +1,104 @@ |
|||||
|
// Copyright (c) Six Labors and contributors.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
|
using SixLabors.ImageSharp.Dithering; |
||||
|
using SixLabors.ImageSharp.PixelFormats; |
||||
|
using SixLabors.ImageSharp.Processing.Processors; |
||||
|
using Xunit; |
||||
|
|
||||
|
namespace SixLabors.ImageSharp.Tests.Processing.Binarization |
||||
|
{ |
||||
|
public class DitherTest : BaseImageOperationsExtensionTest |
||||
|
{ |
||||
|
private readonly IOrderedDither orderedDither; |
||||
|
private readonly IErrorDiffuser errorDiffuser; |
||||
|
private readonly Rgba32[] TestPalette = |
||||
|
{ |
||||
|
Rgba32.Red, |
||||
|
Rgba32.Green, |
||||
|
Rgba32.Blue |
||||
|
}; |
||||
|
|
||||
|
public DitherTest() |
||||
|
{ |
||||
|
this.orderedDither = KnownDitherers.BayerDither4x4; |
||||
|
this.errorDiffuser = KnownDiffusers.FloydSteinberg; |
||||
|
} |
||||
|
|
||||
|
[Fact] |
||||
|
public void Dither_CorrectProcessor() |
||||
|
{ |
||||
|
this.operations.Dither(this.orderedDither); |
||||
|
OrderedDitherPaletteProcessor<Rgba32> p = this.Verify<OrderedDitherPaletteProcessor<Rgba32>>(); |
||||
|
Assert.Equal(this.orderedDither, p.Dither); |
||||
|
Assert.Equal(NamedColors<Rgba32>.WebSafePalette, p.Palette); |
||||
|
} |
||||
|
|
||||
|
[Fact] |
||||
|
public void Dither_rect_CorrectProcessor() |
||||
|
{ |
||||
|
this.operations.Dither(this.orderedDither, this.rect); |
||||
|
OrderedDitherPaletteProcessor<Rgba32> p = this.Verify<OrderedDitherPaletteProcessor<Rgba32>>(this.rect); |
||||
|
Assert.Equal(this.orderedDither, p.Dither); |
||||
|
Assert.Equal(NamedColors<Rgba32>.WebSafePalette, p.Palette); |
||||
|
} |
||||
|
[Fact] |
||||
|
public void Dither_index_CorrectProcessor() |
||||
|
{ |
||||
|
this.operations.Dither(this.orderedDither, this.TestPalette); |
||||
|
OrderedDitherPaletteProcessor<Rgba32> p = this.Verify<OrderedDitherPaletteProcessor<Rgba32>>(); |
||||
|
Assert.Equal(this.orderedDither, p.Dither); |
||||
|
Assert.Equal(this.TestPalette, p.Palette); |
||||
|
} |
||||
|
|
||||
|
[Fact] |
||||
|
public void Dither_index_rect_CorrectProcessor() |
||||
|
{ |
||||
|
this.operations.Dither(this.orderedDither, this.TestPalette, this.rect); |
||||
|
OrderedDitherPaletteProcessor<Rgba32> p = this.Verify<OrderedDitherPaletteProcessor<Rgba32>>(this.rect); |
||||
|
Assert.Equal(this.orderedDither, p.Dither); |
||||
|
Assert.Equal(this.TestPalette, p.Palette); |
||||
|
} |
||||
|
|
||||
|
|
||||
|
[Fact] |
||||
|
public void Dither_ErrorDiffuser_CorrectProcessor() |
||||
|
{ |
||||
|
this.operations.Diffuse(this.errorDiffuser, .4F); |
||||
|
ErrorDiffusionPaletteProcessor<Rgba32> p = this.Verify<ErrorDiffusionPaletteProcessor<Rgba32>>(); |
||||
|
Assert.Equal(this.errorDiffuser, p.Diffuser); |
||||
|
Assert.Equal(.4F, p.Threshold); |
||||
|
Assert.Equal(NamedColors<Rgba32>.WebSafePalette, p.Palette); |
||||
|
} |
||||
|
|
||||
|
[Fact] |
||||
|
public void Dither_ErrorDiffuser_rect_CorrectProcessor() |
||||
|
{ |
||||
|
this.operations.Diffuse(this.errorDiffuser, .3F, this.rect); |
||||
|
ErrorDiffusionPaletteProcessor<Rgba32> p = this.Verify<ErrorDiffusionPaletteProcessor<Rgba32>>(this.rect); |
||||
|
Assert.Equal(this.errorDiffuser, p.Diffuser); |
||||
|
Assert.Equal(.3F, p.Threshold); |
||||
|
Assert.Equal(NamedColors<Rgba32>.WebSafePalette, p.Palette); |
||||
|
} |
||||
|
|
||||
|
[Fact] |
||||
|
public void Dither_ErrorDiffuser_CorrectProcessorWithColors() |
||||
|
{ |
||||
|
this.operations.Diffuse(this.errorDiffuser, .5F, this.TestPalette); |
||||
|
ErrorDiffusionPaletteProcessor<Rgba32> p = this.Verify<ErrorDiffusionPaletteProcessor<Rgba32>>(); |
||||
|
Assert.Equal(this.errorDiffuser, p.Diffuser); |
||||
|
Assert.Equal(.5F, p.Threshold); |
||||
|
Assert.Equal(this.TestPalette, p.Palette); |
||||
|
} |
||||
|
|
||||
|
[Fact] |
||||
|
public void Dither_ErrorDiffuser_rect_CorrectProcessorWithColors() |
||||
|
{ |
||||
|
this.operations.Diffuse(this.errorDiffuser, .5F, this.TestPalette, this.rect); |
||||
|
ErrorDiffusionPaletteProcessor<Rgba32> p = this.Verify<ErrorDiffusionPaletteProcessor<Rgba32>>(this.rect); |
||||
|
Assert.Equal(this.errorDiffuser, p.Diffuser); |
||||
|
Assert.Equal(.5F, p.Threshold); |
||||
|
Assert.Equal(this.TestPalette, p.Palette); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,131 @@ |
|||||
|
// Copyright (c) Six Labors and contributors.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
|
using SixLabors.ImageSharp.Dithering; |
||||
|
using SixLabors.ImageSharp.PixelFormats; |
||||
|
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison; |
||||
|
|
||||
|
using SixLabors.Primitives; |
||||
|
using Xunit; |
||||
|
// ReSharper disable InconsistentNaming
|
||||
|
|
||||
|
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Binarization |
||||
|
{ |
||||
|
public class DitherTests : FileTestBase |
||||
|
{ |
||||
|
public static readonly string[] CommonTestImages = |
||||
|
{ |
||||
|
TestImages.Png.CalliphoraPartial, TestImages.Png.Bike |
||||
|
}; |
||||
|
|
||||
|
public static readonly TheoryData<string, IOrderedDither> Ditherers = new TheoryData<string, IOrderedDither> |
||||
|
{ |
||||
|
{ "Bayer8x8", KnownDitherers.BayerDither8x8 }, |
||||
|
{ "Bayer4x4", KnownDitherers.BayerDither4x4 }, |
||||
|
{ "Ordered3x3", KnownDitherers.OrderedDither3x3 }, |
||||
|
{ "Bayer2x2", KnownDitherers.BayerDither2x2 } |
||||
|
}; |
||||
|
|
||||
|
public static readonly TheoryData<string, IErrorDiffuser> ErrorDiffusers = new TheoryData<string, IErrorDiffuser> |
||||
|
{ |
||||
|
{ "Atkinson", KnownDiffusers.Atkinson }, |
||||
|
{ "Burks", KnownDiffusers.Burks }, |
||||
|
{ "FloydSteinberg", KnownDiffusers.FloydSteinberg }, |
||||
|
{ "JarvisJudiceNinke", KnownDiffusers.JarvisJudiceNinke }, |
||||
|
{ "Sierra2", KnownDiffusers.Sierra2 }, |
||||
|
{ "Sierra3", KnownDiffusers.Sierra3 }, |
||||
|
{ "SierraLite", KnownDiffusers.SierraLite }, |
||||
|
{ "StevensonArce", KnownDiffusers.StevensonArce }, |
||||
|
{ "Stucki", KnownDiffusers.Stucki }, |
||||
|
}; |
||||
|
|
||||
|
|
||||
|
private static IOrderedDither DefaultDitherer => KnownDitherers.BayerDither4x4; |
||||
|
|
||||
|
private static IErrorDiffuser DefaultErrorDiffuser => KnownDiffusers.Atkinson; |
||||
|
|
||||
|
[Theory] |
||||
|
[WithFileCollection(nameof(CommonTestImages), nameof(Ditherers), DefaultPixelType)] |
||||
|
[WithTestPatternImages(nameof(Ditherers), 100, 100, DefaultPixelType)] |
||||
|
public void DitherFilter_WorksWithAllDitherers<TPixel>(TestImageProvider<TPixel> provider, string name, IOrderedDither ditherer) |
||||
|
where TPixel : struct, IPixel<TPixel> |
||||
|
{ |
||||
|
using (Image<TPixel> image = provider.GetImage()) |
||||
|
{ |
||||
|
image.Mutate(x => x.Dither(ditherer)); |
||||
|
image.DebugSave(provider, name); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
[Theory] |
||||
|
[WithFileCollection(nameof(CommonTestImages), nameof(ErrorDiffusers), DefaultPixelType)] |
||||
|
[WithTestPatternImages(nameof(ErrorDiffusers), 100, 100, DefaultPixelType)] |
||||
|
public void DiffusionFilter_WorksWithAllErrorDiffusers<TPixel>(TestImageProvider<TPixel> provider, string name, IErrorDiffuser diffuser) |
||||
|
where TPixel : struct, IPixel<TPixel> |
||||
|
{ |
||||
|
using (Image<TPixel> image = provider.GetImage()) |
||||
|
{ |
||||
|
image.Mutate(x => x.Diffuse(diffuser, .5F)); |
||||
|
image.DebugSave(provider, name); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
[Theory] |
||||
|
[WithFile(TestImages.Png.Bike, CommonNonDefaultPixelTypes)] |
||||
|
public void DitherFilter_ShouldNotDependOnSinglePixelType<TPixel>(TestImageProvider<TPixel> provider) |
||||
|
where TPixel : struct, IPixel<TPixel> |
||||
|
{ |
||||
|
using (Image<TPixel> image = provider.GetImage()) |
||||
|
{ |
||||
|
image.Mutate(x => x.Dither(DefaultDitherer)); |
||||
|
image.DebugSave(provider); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
[Theory] |
||||
|
[WithFile(TestImages.Png.Bike, CommonNonDefaultPixelTypes)] |
||||
|
public void DiffusionFilter_ShouldNotDependOnSinglePixelType<TPixel>(TestImageProvider<TPixel> provider) |
||||
|
where TPixel : struct, IPixel<TPixel> |
||||
|
{ |
||||
|
using (Image<TPixel> image = provider.GetImage()) |
||||
|
{ |
||||
|
image.Mutate(x => x.Diffuse(DefaultErrorDiffuser, 0.5f)); |
||||
|
image.DebugSave(provider); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
[Theory] |
||||
|
[WithFile(TestImages.Png.CalliphoraPartial, DefaultPixelType)] |
||||
|
public void ApplyDitherFilterInBox<TPixel>(TestImageProvider<TPixel> provider) |
||||
|
where TPixel : struct, IPixel<TPixel> |
||||
|
{ |
||||
|
using (Image<TPixel> source = provider.GetImage()) |
||||
|
using (Image<TPixel> image = source.Clone()) |
||||
|
{ |
||||
|
var bounds = new Rectangle(10, 10, image.Width / 2, image.Height / 2); |
||||
|
|
||||
|
image.Mutate(x => x.Dither(DefaultDitherer, bounds)); |
||||
|
image.DebugSave(provider); |
||||
|
|
||||
|
ImageComparer.Tolerant().VerifySimilarityIgnoreRegion(source, image, bounds); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
[Theory] |
||||
|
[WithFile(TestImages.Png.CalliphoraPartial, DefaultPixelType)] |
||||
|
public void ApplyDiffusionFilterInBox<TPixel>(TestImageProvider<TPixel> provider) |
||||
|
where TPixel : struct, IPixel<TPixel> |
||||
|
{ |
||||
|
using (Image<TPixel> source = provider.GetImage()) |
||||
|
using (Image<TPixel> image = source.Clone()) |
||||
|
{ |
||||
|
var bounds = new Rectangle(10, 10, image.Width / 2, image.Height / 2); |
||||
|
|
||||
|
image.Mutate(x => x.Diffuse(DefaultErrorDiffuser, .5F, bounds)); |
||||
|
image.DebugSave(provider); |
||||
|
|
||||
|
ImageComparer.Tolerant().VerifySimilarityIgnoreRegion(source, image, bounds); |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue