我想在车牌(城市名称)中实现对象检测.我有一张图片:

我想检测图像是否包含单词"بابل":

我尝试过使用OpenCV的模板匹配方法,也使用MATLAB,但是在测试其他图像时结果很差.
我也读过这个页面,但是我无法很好地理解该怎么做.
任何人都可以帮我或一步一步地解决这个问题吗?我有一个识别车牌的项目,我们可以识别并检测数字但我需要检测并识别这些单词(这是与更多车辆相同的单词)
这是我的应用程序来执行线程示例,但输出不是预期的,任何人都有任何线索请
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
namespace OTS_Performence_Test_tool
{
class Program
{
static void testThread(string xx)
{
int count = 0;
while (count < 5)
{
Console.WriteLine(xx );
count++;
}
}
static void Main(string[] args)
{
Console.WriteLine("Hello to the this test app ---");
for (int i = 1; i<=3; i++)
{
Thread thread = new Thread(() => testThread("" + i + "__"));
thread.Start();
}
Console.ReadKey();
}
}
}
Run Code Online (Sandbox Code Playgroud)
但是结果却是
3__
3__
3__
3__
3__
3__ …