public class DeinterlaceCommand : RasterCommand @interface LTDeinterlaceCommand : LTRasterCommand public class DeinterlaceCommandextends RasterCommand
public ref class DeinterlaceCommand : public RasterCommand class DeinterlaceCommand(RasterCommand): For more information, refer to Removing Noise.
Deinterlace Function - Before

Deinterlace Function - After

View additional platform support for this Deinterlace function.
Run the DeinterlaceCommand on an image.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Effects;public void DeinterlaceCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "interlaced_footage.jpg"));// Prepare the commandDeinterlaceCommand command = new DeinterlaceCommand();command.Flags = DeinterlaceCommandFlags.Smooth | DeinterlaceCommandFlags.Odd;// Remove odd lines smoothly.command.Run(image);codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24);}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";}
Leadtools.ImageProcessing.Effects Namespace
Leadtools.ImageProcessing.SpecialEffects.PixelateCommand
Leadtools.ImageProcessing.Color.PosterizeCommand
Leadtools.ImageProcessing.Core.MedianCommand
Leadtools.ImageProcessing.Color.IntensityDetectCommand
Leadtools.ImageProcessing.Core.MinimumCommand
Leadtools.ImageProcessing.Core.MaximumCommand
Leadtools.ImageProcessing.Color.SolarizeCommand
Leadtools.ImageProcessing.Core.WindowLevelCommand
Leadtools.ImageProcessing.Color.AutoColorLevelCommand
Leadtools.ImageProcessing.Color.ColorLevelCommand
Leadtools.ImageProcessing.Color.GrayScaleToDuotoneCommand
Leadtools.ImageProcessing.Color.GrayScaleToMultitoneCommand
RegionHolesRemovalCommand Class
Leadtools.ImageProcessing.Color.SelectiveColorCommand
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
