大家好,欢迎来到IT知识分享网。
该例程应用库为:
using OpenCvSharp;
using OpenCvSharp.Extensions;
using ZXing;
using ZXing.Common;
其中zxing库信息如下:
在Main函数中,分别调用了纯cv方法的detectBarcode函数,和利用zxing库的decodeBarcodeText函数进行条形码识别,下面分别对这连个函数进行说明。
首先介绍decodeBarcodeText函数,这个由于使用的现成库,理论上应该比较简单。
调用形式如下:
decodeBarcodeText((System.Drawing.Bitmap)System.Drawing.Bitmap.FromFile(@”..\..\images\b_ean8.png”));
函数体如下:
private static string decodeBarcodeText(System.Drawing.Bitmap barcodeBitmap)
{
var source = new BitmapLuminanceSource(barcodeBitmap);
// using http://zxingnet.codeplex.com/
// PM> Install-Package ZXing.Net
var reader = new BarcodeReader(null, null, ls => new GlobalHistogramBinarizer(ls))
{
AutoRotate = true,
TryInverted = true,
Options = new DecodingOptions
{
TryHarder = true,
//PureBarcode = true,
/*PossibleFormats = new List<BarcodeFormat>
{
BarcodeFormat.CODE_128
//BarcodeFormat.EAN_8,
//BarcodeFormat.CODE_39,
//BarcodeFormat.UPC_A
}*/
}
};
//var newhint = new KeyValuePair<DecodeHintType, object>(DecodeHintType.ALLOWED_EAN_EXTENSIONS, new Object());
//reader.Options.Hints.Add(newhint);
var result = reader.Decode(source);
if (result == null)
{
Console.WriteLine("Decode failed.");
return string.Empty;
}
Console.WriteLine("BarcodeFormat: {0}", result.BarcodeFormat);
Console.WriteLine("Result: {0}", result.Text);
var writer = new BarcodeWriter
{
Format = result.BarcodeFormat,
Options = { Width = 200, Height = 50, Margin = 4},
Renderer = new ZXing.Rendering.BitmapRenderer()
};
var barcodeImage = writer.Write(result.Text);
Cv2.ImShow("BarcodeWriter", barcodeImage.ToMat());
return result.Text;
}
需要注意的是System.Drawing.Bitmap是从Image继承的。之前曾经在wpf应用中涉及mat的显示问题,不知道是不是可以用。
从上述代码看,整体思路非常简单,
首先调用BarcodeReader
reader = new BarcodeReader(null, null, ls => new GlobalHistogramBinarizer(ls))
然后调用即可得到解码,
var result = reader.Decode(source);
信息输入如下:
Console.WriteLine(“BarcodeFormat: {0}”, result.BarcodeFormat);
Console.WriteLine(“Result: {0}”, result.Text);
当然,也可以显示成图片,后续比较简单,不再累述。
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/25371.html