mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
2.0 KiB
57 lines
2.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using SixLabors.ImageSharp.Advanced;
|
|
using SixLabors.ImageSharp.PixelFormats;
|
|
|
|
using SixLabors.Primitives;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison
|
|
{
|
|
public class ExactImageComparer : ImageComparer
|
|
{
|
|
public static ExactImageComparer Instance { get; } = new ExactImageComparer();
|
|
|
|
public override ImageSimilarityReport<TPixelA, TPixelB> CompareImagesOrFrames<TPixelA, TPixelB>(
|
|
ImageFrame<TPixelA> expected,
|
|
ImageFrame<TPixelB> actual)
|
|
{
|
|
if (expected.Size() != actual.Size())
|
|
{
|
|
throw new InvalidOperationException("Calling ImageComparer is invalid when dimensions mismatch!");
|
|
}
|
|
|
|
int width = actual.Width;
|
|
|
|
// TODO: Comparing through Rgba64 may not be robust enough because of the existence of super high precision pixel types.
|
|
|
|
var aBuffer = new Rgba64[width];
|
|
var bBuffer = new Rgba64[width];
|
|
|
|
var differences = new List<PixelDifference>();
|
|
Configuration configuration = expected.Configuration;
|
|
|
|
for (int y = 0; y < actual.Height; y++)
|
|
{
|
|
Span<TPixelA> aSpan = expected.GetPixelRowSpan(y);
|
|
Span<TPixelB> bSpan = actual.GetPixelRowSpan(y);
|
|
|
|
PixelOperations<TPixelA>.Instance.ToRgba64(configuration, aSpan, aBuffer);
|
|
PixelOperations<TPixelB>.Instance.ToRgba64(configuration, bSpan, bBuffer);
|
|
|
|
for (int x = 0; x < width; x++)
|
|
{
|
|
Rgba64 aPixel = aBuffer[x];
|
|
Rgba64 bPixel = bBuffer[x];
|
|
|
|
if (aPixel != bPixel)
|
|
{
|
|
var diff = new PixelDifference(new Point(x, y), aPixel, bPixel);
|
|
differences.Add(diff);
|
|
}
|
|
}
|
|
}
|
|
|
|
return new ImageSimilarityReport<TPixelA, TPixelB>(expected, actual, differences);
|
|
}
|
|
}
|
|
}
|
|
|