←Select platform

EdgeDetectorCommandType Enumeration

Summary
Flag that indicates the type of edge to generate.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public enum EdgeDetectorCommandType   
typedef NS_ENUM(NSInteger, LTEdgeDetectorCommandType) { 
 LTEdgeDetectorCommandTypeSobelVertical = 0x0101,  
 LTEdgeDetectorCommandTypeSobelHorizontal = 0x0102,  
 LTEdgeDetectorCommandTypeSobelBoth = 0x0103,  
 
 LTEdgeDetectorCommandTypePrewittVertical = 0x0201,  
 LTEdgeDetectorCommandTypePrewittHorizontal = 0x0202,  
 LTEdgeDetectorCommandTypePrewittBoth = 0x0203,  
 
 LTEdgeDetectorCommandTypeLaplace1 = 0x0301,  
 LTEdgeDetectorCommandTypeLaplace2 = 0x0302,  
 LTEdgeDetectorCommandTypeLaplace3 = 0x0303,  
 LTEdgeDetectorCommandTypeLaplaceDiagonal = 0x0304,  
 LTEdgeDetectorCommandTypeLaplaceHorizontal = 0x0305,  
 LTEdgeDetectorCommandTypeLaplaceVertical = 0x0306,  
 
 LTEdgeDetectorCommandTypeGradientNorth = 0x0401,  
 LTEdgeDetectorCommandTypeGradientNorthEast = 0x0402,  
 LTEdgeDetectorCommandTypeGradientEast = 0x0403,  
 LTEdgeDetectorCommandTypeGradientSouthEast = 0x0404,  
 LTEdgeDetectorCommandTypeGradientSouth = 0x0405,  
 LTEdgeDetectorCommandTypeGradientSouthWest = 0x0406,  
 LTEdgeDetectorCommandTypeGradientWest = 0x0407,  
 LTEdgeDetectorCommandTypeGradientNorthWest = 0x0408 
}; 
public final class EdgeDetectorCommandType 
    extends java.lang.Enum<EdgeDetectorCommandType> 
public enum class EdgeDetectorCommandType   
class EdgeDetectorCommandType(Enum): 
   SobelVertical = 257 
   SobelHorizontal = 258 
   SobelBoth = 259 
   PrewittVertical = 513 
   PrewittHorizontal = 514 
   PrewittBoth = 515 
   Laplace1 = 769 
   Laplace2 = 770 
   Laplace3 = 771 
   LaplaceDiagonal = 772 
   LaplaceHorizontal = 773 
   LaplaceVertical = 774 
   GradientNorth = 1025 
   GradientNorthEast = 1026 
   GradientEast = 1027 
   GradientSouthEast = 1028 
   GradientSouth = 1029 
   GradientSouthWest = 1030 
   GradientWest = 1031 
   GradientNorthWest = 1032 
Members
ValueMemberDescription
257SobelVertical Detect the vertical edges.
258SobelHorizontal Detect the horizontal edges.
259SobelBoth Detect horizontal and vertical edges.
513PrewittVertical Detect the vertical edges.
514PrewittHorizontal Detect the horizontal edges.
515PrewittBoth Detect horizontal and vertical edges.
769Laplace1 Detect vertical and horizontal edges.
770Laplace2 Detect general edges
771Laplace3 Detect general edges. (The filter used for this option is different than the filter used for the Laplace2 filter.)
772LaplaceDiagonal Detect the diagonal edges.
773LaplaceHorizontal Detect the horizontal edges.
774LaplaceVertical Detect the vertical edges.
1025GradientNorth Detect north edges.
1026GradientNorthEast Detect north east edges.
1027GradientEast Detect east edges.
1028GradientSouthEast Detect south east edges.
1029GradientSouth Detect south edges.
1030GradientSouthWest Detect south west edges.
1031GradientWest Detect west edges.
1032GradientNorthWest Detect north west edges.
Requirements

Target Platforms

Help Version 23.0.2024.3.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 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.