mirror of https://github.com/SixLabors/ImageSharp
11 changed files with 82 additions and 72 deletions
@ -0,0 +1,55 @@ |
|||
// Copyright (c) Six Labors and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
|
|||
using System; |
|||
using System.Numerics; |
|||
using SixLabors.ImageSharp.Advanced; |
|||
using SixLabors.ImageSharp.ParallelUtils; |
|||
using SixLabors.ImageSharp.PixelFormats; |
|||
using SixLabors.ImageSharp.Primitives; |
|||
using SixLabors.Primitives; |
|||
|
|||
namespace SixLabors.ImageSharp.Processing.Processors.Filters |
|||
{ |
|||
/// <summary>
|
|||
/// Provides methods that accept a <see cref="ColorMatrix"/> matrix to apply free-form filters to images.
|
|||
/// </summary>
|
|||
/// <typeparam name="TPixel">The pixel format.</typeparam>
|
|||
internal class FilterProcessorImplementation<TPixel> : ImageProcessor<TPixel> |
|||
where TPixel : struct, IPixel<TPixel> |
|||
{ |
|||
private readonly FilterProcessor paramterSource; |
|||
|
|||
public FilterProcessorImplementation(FilterProcessor paramterSource) |
|||
{ |
|||
this.paramterSource = paramterSource; |
|||
} |
|||
|
|||
/// <inheritdoc/>
|
|||
protected override void OnFrameApply(ImageFrame<TPixel> source, Rectangle sourceRectangle, Configuration configuration) |
|||
{ |
|||
var interest = Rectangle.Intersect(sourceRectangle, source.Bounds()); |
|||
int startX = interest.X; |
|||
|
|||
ColorMatrix matrix = this.paramterSource.Matrix; |
|||
|
|||
ParallelHelper.IterateRowsWithTempBuffer<Vector4>( |
|||
interest, |
|||
configuration, |
|||
(rows, vectorBuffer) => |
|||
{ |
|||
for (int y = rows.Min; y < rows.Max; y++) |
|||
{ |
|||
Span<Vector4> vectorSpan = vectorBuffer.Span; |
|||
int length = vectorSpan.Length; |
|||
Span<TPixel> rowSpan = source.GetPixelRowSpan(y).Slice(startX, length); |
|||
PixelOperations<TPixel>.Instance.ToVector4(configuration, rowSpan, vectorSpan); |
|||
|
|||
Vector4Utils.Transform(vectorSpan, ref matrix); |
|||
|
|||
PixelOperations<TPixel>.Instance.FromVector4Destructive(configuration, vectorSpan, rowSpan); |
|||
} |
|||
}); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue