在我的车牌识别应用程序(英国车牌)中,我做了一个矩形检测,我使用了几个标准,例如车牌的宽度/长度比以及车牌的最小宽度和长度。我设法显着减少了非车牌区域。我的最后一个标准是获得每个候选区域的连接组件的数量,以便我可以验证车辆图像的真实车牌区域,我在研究论文中读到了这个区域。
我正在使用C#和Aforge.Net库。但是,如何使用ConnectedComponentsLabeling获取号牌中连接组件的数量?
答案 0 :(得分:1)
我这样做:
FiltersSequence preOcr = new FiltersSequence(
Grayscale.CommonAlgorithms.BT709,
new BradleyLocalThresholding());
Bitmap grayscale = preOcr.Apply(original);
var labels = new ConnectedComponentsLabeling();
labels.Apply(new Invert().Apply(grayscale));
//Console.WriteLine(labels.ObjectCount); // Here you go
foreach (var candidate in labels.BlobCounter.GetObjectsInformation())
{
using (Bitmap symbol = new Bitmap(candidate.Rectangle.Width,
candidate.Rectangle.Height))
using (Graphics g2 = Graphics.FromImage(symbol))
{
g2.DrawImage(grayscale, 0, 0, candidate.Rectangle, GraphicsUnit.Pixel);
symbol.Save(String.Format(@"temp\{0}-{1}.jpg",i,++n), ImageFormat.Jpeg);
// do stuff
}
}
答案 1 :(得分:1)
当您找到与号牌相对应的blob时,请使用此blob Image作为另一个blob计数器实例的输入。结果将告诉您此blob Image中的组件数量。