Namespace Acoustics.Shared.ImageSharp
Classes
DeltaImageProcessor<TPixelFg>
DeltaImageProcessor<TPixelBg, TPixelFg>
DeltaPixelBlender<TPixel>
Blends pixels based on their differences. Pixels that are equal return gray. Pixels where the source is less than backdrop return black. Pixels where the source is greater than the backdrop return white.
Drawing
Helpers for drawing images.
Drawing.NoAA
A specialized class the deals with drawing graphics without anti-aliasing. It deals with two issues:
- Lines in ImageSharp are drawn on the centre pixel. Without AA they're drawn a pixel off. This class draws all lines with +0.0,+0.5 coordinates. See https://github.com/SixLabors/ImageSharp.Drawing/issues/28
- It also applies the NoAntiAliasing profile by default to all operations.