I used the code from Automatic Image Stitching with Accord.net
i changed the code to stitch multiple images
My code after selecting multiple files was
img1 = new Bitmap(imgName[0]);
页: 1
Blend blend = new Blend(homography, img1);
pictureBox.Image = blend.Apply(img2);
img1 = new Bitmap(blend.Apply(img2));`
我增加了<代码>img1 = 新的比图(混合物.Apply(img2));。 这样一来,我就能够把第一种幻灯像作为我的复印件,而这是对另一个形象的描述。
接着,<>btnDoAll
for (int x = 1; x < NumOfFiles; x++)
{
img2 = new Bitmap(imgName[x]);
btnHarris();
btnCorrelation();
btnRansac();
btnBlend();
}
运行之后,除了在btnBlend c# hangs和显示vshost.exe停止工作时,根本就没有错误。
任何帮助纠正这种情况?