LEADTOOLS Image Processing (Leadtools.ImageProcessing.Effects assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
SpatialFilterCommandPredefined Enumeration
See Also  
Leadtools.ImageProcessing.Effects Namespace : SpatialFilterCommandPredefined Enumeration



Enumerated values that represent a predefined spatial filter to use. Supported in Silverlight, Windows Phone 7

Syntax

Visual Basic (Declaration) 
Public Enum SpatialFilterCommandPredefined 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As SpatialFilterCommandPredefined
C# 
public enum SpatialFilterCommandPredefined : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
public enum class SpatialFilterCommandPredefined : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
EmbossEastCreates an image with an embossed appearance to the east. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
EmbossNorthCreates an image with an embossed appearance to the north. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
EmbossNorthEastCreates an image with an embossed appearance to the north-east. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
EmbossNorthWestCreates an image with an embossed appearance to the north-west. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
EmbossSouthCreates an image with an embossed appearance to the south. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
EmbossSouthEastCreates an image with an embossed appearance to the south-east. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
EmbossSouthWestCreates an image with an embossed appearance to the south-west. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
EmbossWestCreates an image with an embossed appearance to the west. (This is used for artistic effect, but is listed here because it is one of the predefined filters.)
GradientEdgeEnhancementEastDetects edges using a Gradient directional filter. The direction of the effect is east.
GradientEdgeEnhancementNorthDetects edges using a Gradient directional filter. The direction of the effect is north.
GradientEdgeEnhancementNorthEastDetects edges using a Gradient directional filter. The direction of the effect is north-east.
GradientEdgeEnhancementNorthWestDetects edges using a Gradient directional filter. The direction of the effect is north-west.
GradientEdgeEnhancementSouthDetects edges using a Gradient directional filter. The direction of the effect is south.
GradientEdgeEnhancementSouthEastDetects edges using a Gradient directional filter. The direction of the effect is south-east.
GradientEdgeEnhancementSouthWestDetects edges using a Gradient directional filter. The direction of the effect is south-west.
GradientEdgeEnhancementWestDetects edges using a Gradient directional filter. The direction of the effect is west.
LaplacianDiagonalApplies diagonal Laplacian line detection. All pixels not on the detected lines are changed to black.
LaplacianFilter1Applies Laplacian line detection number 1. All pixels not on the detected lines are changed to black.
LaplacianFilter2Applies Laplacian line detection number 2. All pixels not on the detected lines are changed to black.
LaplacianFilter3Applies Laplacian line detection number 3. All pixels not on the detected lines are changed to black.
LaplacianHorizontalApplies horizontal Laplacian line detection. All pixels not on the detected lines are changed to black.
LaplacianVerticalApplies vertical Laplacian line detection. All pixels not on the detected lines are changed to black.
LineSegmentHorizontalApplies horizontal line segment line detection. You can use this filter to find line discontinuities in an image. All pixels not on the detected line segments are changed to black.
LineSegmentLeftToRightApplies left to right line segment line detection. You can use this filter to find line discontinuities in an image. All pixels not on the detected line segments are changed to black.
LineSegmentRightToLeftApplies right to left line segment line detection. You can use this filter to find line discontinuities in an image. All pixels not on the detected line segments are changed to black.
LineSegmentVerticalApplies vertical line segment line detection. You can use this filter to find line discontinuities in an image. All pixels not on the detected line segments are changed to black.
PrewittHorizontalApplies horizontal Prewitt edge detection. All pixels not on the detected edges are changed to black. (The usage is the same as Sobel, but the algorithm is different.) Choose the appropriate value for horizontal or vertical detection.
PrewittVerticalApplies vertical Prewitt edge detection. All pixels not on the detected edges are changed to black. (The usage is the same as Sobel, but the algorithm is different.) Choose the appropriate value for horizontal or vertical detection.
ShiftAndDifferenceDiagonalApplies diagonal shift-and-difference edge detection. All pixels not on the detected edges are changed to black.
ShiftAndDifferenceHorizontalApplies horizontal shift-and-difference edge detection. All pixels not on the detected edges are changed to black.
ShiftAndDifferenceVerticalApplies vertical shift-and-difference edge detection. All pixels not on the detected edges are changed to black.
SobelHorizontalApplies horizontal Sobel edge detection. All pixels not on the detected edges are changed to black. (The usage is the same as Prewitt, but the algorithm is different.)
SobelVerticalApplies vertical Sobel edge detection. All pixels not on the detected edges are changed to black. (The usage is the same as Prewitt, but the algorithm is different.)

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Effects.SpatialFilterCommandPredefined

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also