我一直在寻找一种可靠的方法来在 .Net 中对图像进行歪斜校正,但运气不佳。
目前我正在使用 Aforge。这是一个痛苦,因为我正在使用 WPF,所以我正在使用的图像是 BitmapImage 对象,而不是 Bitmap 对象,这意味着我需要从 BitmapImage 对象开始,将其保存到内存流中,创建一个新的 Bitmap 对象从内存流中,经过去偏移处理,将去偏移的图像保存到新的内存流,然后从所述内存流创建一个新的 BitmapImage 对象。不仅如此,偏斜也不是很好。
我正在尝试读取扫描到扫描仪中的一张纸的 OMR 数据,因此我需要依赖一个特定的 OMR 框每次都处于相同的坐标,因此纠偏需要可靠。
所以我现在正在使用 Aforge,我在 .Net 中找不到任何其他免费/开源的图像去偏斜库,我发现的所有东西要么相当昂贵,要么在 C/C++ 中。
我的问题是是否存在其他有助于在 .Net 中进行图像校正的免费/开源库?如果是这样,他们叫什么,如果不是,我应该如何解决这个问题?
编辑:例如,假设我有以下页面:
注意:这仅用于说明目的,但实际图像确实在页面的每个角落都有一个黑色矩形,也许这会有所帮助。
当我把它打印出来,然后扫描回我的扫描仪时,它看起来像这样:
我需要校正这张图片,这样我的盒子每次都在同一个地方。在现实世界中,有很多盒子,它们更小且靠得很近,因此准确性很重要。
我目前的方法是一个巨大的无效痛苦的屁股:
using AForge.Imaging;
using AForge.Imaging.Filters;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Windows.Media.Imaging;
public static BitmapImage DeskewBitmap(BitmapImage skewedBitmap)
{
//Using a memory stream to minimise disk IO
var memoryStream = BitmapImageToMemoryStream(skewedBitmap);
var bitmap = MemoryStreamToBitmap(memoryStream);
var skewAngle = CalculateSkewAngle(bitmap);
//Aforge needs a Bppp indexed image for the deskewing process
var bitmapConvertedToBbppIndexed = ConvertBitmapToBbppIndexed(bitmap);
var rotatedImage = DeskewBitmap(skewAngle, bitmapConvertedToBbppIndexed);
//I need to convert the image back to a non indexed format to put it back into a BitmapImage object
var imageConvertedToNonIndexed = ConvertImageToNonIndexed(rotatedImage);
var imageAsMemoryStream = BitmapToMemoryStream(imageConvertedToNonIndexed);
var memoryStreamAsBitmapImage = MemoryStreamToBitmapImage(imageAsMemoryStream);
return memoryStreamAsBitmapImage;
}
private static Bitmap ConvertImageToNonIndexed(Bitmap rotatedImage)
{
var imageConvertedToNonIndexed = rotatedImage.Clone(
new Rectangle(0, 0, rotatedImage.Width, rotatedImage.Height), PixelFormat.Format32bppArgb);
return imageConvertedToNonIndexed;
}
private static Bitmap DeskewBitmap(double skewAngle, Bitmap bitmapConvertedToBbppIndexed)
{
var rotationFilter = new RotateBilinear(-skewAngle) { FillColor = Color.White };
var rotatedImage = rotationFilter.Apply(bitmapConvertedToBbppIndexed);
return rotatedImage;
}
private static double CalculateSkewAngle(Bitmap bitmapConvertedToBbppIndexed)
{
var documentSkewChecker = new DocumentSkewChecker();
double skewAngle = documentSkewChecker.GetSkewAngle(bitmapConvertedToBbppIndexed);
return skewAngle;
}
private static Bitmap ConvertBitmapToBbppIndexed(Bitmap bitmap)
{
var bitmapConvertedToBbppIndexed = bitmap.Clone(
new Rectangle(0, 0, bitmap.Width, bitmap.Height), PixelFormat.Format8bppIndexed);
return bitmapConvertedToBbppIndexed;
}
private static BitmapImage ResizeBitmap(BitmapImage originalBitmap, int desiredWidth, int desiredHeight)
{
var ms = BitmapImageToMemoryStream(originalBitmap);
ms.Position = 0;
var result = new BitmapImage();
result.BeginInit();
result.DecodePixelHeight = desiredHeight;
result.DecodePixelWidth = desiredWidth;
result.StreamSource = ms;
result.CacheOption = BitmapCacheOption.OnLoad;
result.EndInit();
result.Freeze();
return result;
}
private static MemoryStream BitmapImageToMemoryStream(BitmapImage image)
{
var ms = new MemoryStream();
var encoder = new JpegBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(image));
encoder.Save(ms);
return ms;
}
private static BitmapImage MemoryStreamToBitmapImage(MemoryStream ms)
{
ms.Position = 0;
var bitmap = new BitmapImage();
bitmap.BeginInit();
bitmap.StreamSource = ms;
bitmap.CacheOption = BitmapCacheOption.OnLoad;
bitmap.EndInit();
bitmap.Freeze();
return bitmap;
}
private static Bitmap MemoryStreamToBitmap(MemoryStream ms)
{
return new Bitmap(ms);
}
private static MemoryStream BitmapToMemoryStream(Bitmap image)
{
var memoryStream = new MemoryStream();
image.Save(memoryStream, ImageFormat.Bmp);
return memoryStream;
}
回想起来,还有几个问题:
- 我是否正确使用了 AForge?
- AForge 是用于此任务的最佳库吗?
- 如何改进我目前的方法以获得更准确的结果?