End Google Ads 201810 - BS.net 01 --> Hi
1. I am using AForge.NET filters and would like to resize and desplay each blob so that I can get its intensity matrix for correlation. The aim for correlation is to recognise the alphanumeric symbol represented by the blob from the binary image. Below is the code I used to try and achieve this.
foreach (Rectangle symbol in numberPlate)
{

//Get the position and size of each object
System.Diagnostics.Debug.WriteLine(string.Format("Position: ({0}, {1}), Size: {2}x{3}", symbol.Left, symbol.Top, symbol.Width, symbol.Height));

for (int i = 0; i <span class="code-keyword">