//Create a destination image and assign it to the tool
CogImage8Grey stitchedImage = new CogImage8Grey();
stitchedImage.Allocate(image.Width * 2, image.Height * 2);
imageStitcher.DestinationImage = stitchedImage;
//First sub-image goes into the upper left corner
imageStitcher.RunParams.DestinationImageAlignmentX = 0;
imageStitcher.RunParams.DestinationImageAlignmentY = 0;