This repository has been archived on 2024-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
thesis-src/Ocr/Ocr.Tesseract.Screenshots/NormalizeProcessor.cs
T
2023-11-14 14:52:19 +01:00

13 lines
320 B
C#

using ImageMagick;
using Ocr.Tesseract.Extensions;
namespace Ocr.Tesseract.Screenshots;
public class NormalizeProcessor : SingleImageProcessor
{
/// <inheritdoc />
protected override MagickImage Process(MagickImage image) => image
.NormalizeImage()
.RemoveAlpha(MagickColors.White)
.ToGrayscale();
}