←Select platform

Type Property

Summary
Gets or sets the mask to use in the convolution process.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public MaskConvolutionCommandType Type { get; set; } 
@property (nonatomic, assign) LTMaskConvolutionCommandType type; 
public MaskConvolutionCommandType getType(); 
public void setType( 
   MaskConvolutionCommandType maskConvolutionCommandType 
); 
Type # get and set (MaskConvolutionCommand) 

Property Value

Enumeration that indicates which mask to use in the convolution process.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Effects; 
 
 
public void MaskConvolutionCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ImageProcessingDemo\\NaturalFruits.jpg")); 
 
   // Prepare the command 
   MaskConvolutionCommand command = new MaskConvolutionCommand(); 
 
   // Apply 3D emboss effect on the image, with 0 degrees as the angle of apparent light, 
   // depth of 1.50, and height of 3 
   command.Angle = 0; 
   command.Depth = 150; 
   command.Height = 3; 
   command.Type = MaskConvolutionCommandType.Emboss; 
   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"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Effects Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.