Specifies the side of the image used in the stitching.
public enum StitchSideMatchingType
public:
enum class StitchSideMatchingType sealed
class StitchSideMatchingType(Enum):
None = 0
KeepRight = 1
KeepLeft = 2
KeepTop = 3
KeepBottom = 4
AllSides = 5
Value | Member | Description |
---|---|---|
0 | None | No side specified. |
1 | KeepRight | Specifies the right side of the image. |
2 | KeepLeft | Specifies the left side of the image. |
3 | KeepTop | Specifies the top of the image. |
4 | KeepBottom | Specifies the bottom of the image. |
5 | AllSides | Specifies all sides of the image. This will ignore the center of the image. |
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Effects;
public void StitchCommandExample()
{
IList<RasterImage> Images = new List<RasterImage>();
RasterCodecs codecs = new RasterCodecs();
// Load images
for (int i = 1; i <= 4; i++)
{
codecs.ThrowExceptionsOnInvalidImages = true;
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, $"cannon{i}.jpg"));
Images.Add(image);
}
// The first image to stitch together
var firstImage = Images.First();
try
{
var toStitchImages = Images.Skip(1).ToList();
try
{
// Create new Stitch Command and run on the provided images with the given parameters
// If successful, the firstImage will be updated to a stitched image
new StitchCommand
{
ImageType = StitchImageType.Picture,
ToStitchImages = toStitchImages,
MethodType = StitchMethodType.Exhaustive,
SideMatchingType = StitchSideMatchingType.KeepLeft,
MinimumOverlap = 0.0
}.Run(firstImage);
codecs.Save(firstImage, Path.Combine(LEAD_VARS.ImagesDir, "cannonStitched.jpg"), RasterImageFormat.Jpeg411, 24);
firstImage.Dispose();
codecs.Dispose();
Images.Clear();
}
catch (Exception e)
{
Assert.Fail(e.Message);
Console.WriteLine(e);
}
}
catch (Exception e)
{
Console.WriteLine(e);
Assert.Fail(e.Message);
}
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document