我正在尝试构建一个解决难题的应用程序(尝试开发图形算法),并且我不想一直手动输入示例输入。
编辑: 我不是在尝试构建游戏。我正在尝试建立一个玩“SpellSeeker”游戏的代理
假设我在屏幕上有一张图片(见附件),里面有数字,我知道盒子的位置,而且我有这些数字的确切图片。我想要做的只是告诉相应的盒子上哪个图像(数字)。
所以我想我需要实施
bool isImageInsideImage(Bitmap numberImage,Bitmap Portion_Of_ScreenCap)
或类似的东西。
我尝试过的是(使用AForge库)
public static bool Contains(this Bitmap template, Bitmap bmp)
{
const Int32 divisor = 4;
const Int32 epsilon = 10;
ExhaustiveTemplateMatching etm = new ExhaustiveTemplateMatching(0.9f);
TemplateMatch[] tm = etm.ProcessImage(
new ResizeNearestNeighbor(template.Width / divisor, template.Height / divisor).Apply(template),
new ResizeNearestNeighbor(bmp.Width / divisor, bmp.Height / divisor).Apply(bmp)
);
if (tm.Length == 1)
{
Rectangle tempRect = tm[0].Rectangle;
if (Math.Abs(bmp.Width / divisor - tempRect.Width) < epsilon
&&
Math.Abs(bmp.Height / divisor - tempRect.Height) < epsilon)
{
return true;
}
}
return false;
}
但在此图像中搜索黑点时返回 false。
我该如何实施?