Browse Source

Cleanup

pull/2221/head
James Jackson-South 4 years ago
parent
commit
34371c7a75
  1. 2
      tests/ImageSharp.Tests/Processing/Binarization/AdaptiveThresholdTests.cs
  2. 1
      tests/ImageSharp.Tests/Processing/IntegralImageTests.cs

2
tests/ImageSharp.Tests/Processing/Binarization/AdaptiveThresholdTests.cs

@ -137,7 +137,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Binarization
Exception exception = Record.Exception(() =>
{
using Image<TPixel> image = provider.GetImage();
image.Mutate(img => img.AdaptiveThreshold(.5F));
image.Mutate(img => img.AdaptiveThreshold());
image.DebugSave(provider);
});

1
tests/ImageSharp.Tests/Processing/IntegralImageTests.cs

@ -100,7 +100,6 @@ namespace SixLabors.ImageSharp.Tests.Processing
System.Func<TPixel, ulong> getPixel)
where TPixel : unmanaged, IPixel<TPixel>
{
// Image<TPixel> image = provider.GetImage();
Buffer2DRegion<TPixel> image = provider.GetImage().GetRootFramePixelBuffer().GetRegion(bounds);
// Check top-left corner

Loading…
Cancel
Save