我有2张照片,包含彼此的一部分:
现在我想把它们组合在一起,但不要重复共同的部分,有类似的东西:
最好的方法是什么?
@edit:这些图片只是我想要对任何两个图像做的事情的例子,它们包含彼此的一部分,并且该部分位于第一个图像的底部,并且位于第二个图像的顶部。 / p>
答案 0 :(得分:2)
这是您的问题的解决方案:
我定义了一个需要2 Bitmaps
并返回合并Bitmap
的函数
,在这个函数中,我将第二个位图的前两行存储在byte
的数组中,这样我就可以在下一步中将它们与第一个位图进行比较,然后我开始在第一个位图中查找匹配的行我对匹配的行进行了罚款,我存储了y
位置
,现在我根据我已找到的y
组合这些位图!
以下是演示项目:Download
以下是解决方案文件:Download
以下是
的结果
这是函数:
private Bitmap CombineImages(Bitmap bmp_1, Bitmap bmp_2)
{
if (bmp_1.Width == bmp_2.Width)
{
int bmp_1_Height, bmpWidth, bmp_2_Height;
bmpWidth = bmp_1.Width;
bmp_1_Height = bmp_1.Height;
bmp_2_Height = bmp_2.Height;
Color c;
bool notFound = false;
int firstMatchedRow = 0;
byte[,] bmp2_first2rows = new byte[3 * bmpWidth, 2];
for (int b = 0; b < 2; b++)
{
for (int a = 0; a < bmpWidth; a++)
{
c = bmp_2.GetPixel(a, b);
bmp2_first2rows[a * 3, b] = c.R;
bmp2_first2rows[a * 3 + 1, b] = c.G;
bmp2_first2rows[a * 3 + 2, b] = c.B;
}
}
for (int y = 0; y < bmp_1_Height - 1; y++)
{
for (int j = 0; j < 2; j++)
{
for (int x = 0; x < bmpWidth; x++)
{
c = bmp_1.GetPixel(x, y + j);
if ((bmp2_first2rows[x * 3, j] == c.R) &&
(bmp2_first2rows[x * 3 + 1, j] == c.G) &&
(bmp2_first2rows[x * 3 + 2, j] == c.B))
{
}
else
{
notFound = true;
break;
}
}
if (notFound)
{
break;
}
}
if (!notFound)
{
firstMatchedRow = y;
break;
}
else
{
notFound = false;
}
}
if (firstMatchedRow > 0)
{
Bitmap bmp = new Bitmap(bmpWidth, firstMatchedRow + bmp_2_Height);
Graphics g = Graphics.FromImage(bmp);
Rectangle RectDst = new Rectangle(0, 0, bmpWidth, firstMatchedRow);
Rectangle RectSrc;
g.DrawImage(bmp_1, RectDst, RectDst, GraphicsUnit.Pixel);
RectDst = new Rectangle(0, firstMatchedRow, bmpWidth, bmp_2_Height);
RectSrc = new Rectangle(0, 0, bmpWidth, bmp_2_Height);
g.DrawImage(bmp_2, RectDst, RectSrc, GraphicsUnit.Pixel);
return bmp;
}
else
{
return null;
}
}
else
{
return null;
}
}
最后我要提一下,这些神奇的教程在图像处理方面给了我很多帮助:
Image Processing for Dummies with C# and GDI+
希望它有助于:)