I have following code in my C# project:
List<List<Word>> RecognizedPlates =
DetectLicensePlate(img, licensePlateImagesList, filteredLicensePlateImagesList, licenseBoxList);
foreach (List<Word> W in RecognizedPlates)
{
richTextBox1.Text = W.ToString();
}
could anyone please help to read text from List<List<Word>> RecognizedPlates
I get nothing in richTextBox after execution this code.