LEADTOOLS Image Processing (Leadtools.ImageProcessing.Effects assembly)

SpatialFilterCommandPredefined Enumeration

Show in webframe







Enumerated values that represent a predefined spatial filter to use.
Syntax
public enum SpatialFilterCommandPredefined : System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
'Declaration
 
Public Enum SpatialFilterCommandPredefined 
   Inherits System.Enum
   Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
'Usage
 
Dim instance As SpatialFilterCommandPredefined
public enum SpatialFilterCommandPredefined : System.IComparableSystem.IConvertibleSystem.IFormattable  
enum LTSpatialFilterCommandPredefined
public enum SpatialFilterCommandPredefined
Leadtools.ImageProcessing.Effects.SpatialFilterCommandPredefined = function() { };
Leadtools.ImageProcessing.Effects.SpatialFilterCommandPredefined.prototype = {
EmbossNorth = 0x00000000, EmbossNorthEast = 0x00000001, EmbossEast = 0x00000002, EmbossSouthEast = 0x00000003, EmbossSouth = 0x00000004, EmbossSouthWest = 0x00000005, EmbossWest = 0x00000006, EmbossNorthWest = 0x00000007, GradientEdgeEnhancementNorth = 0x00000008, GradientEdgeEnhancementNorthEast = 0x00000009, GradientEdgeEnhancementEast = 0x0000000A, GradientEdgeEnhancementSouthEast = 0x0000000B, GradientEdgeEnhancementSouth = 0x0000000C, GradientEdgeEnhancementSouthWest = 0x0000000D, GradientEdgeEnhancementWest = 0x0000000E, GradientEdgeEnhancementNorthWest = 0x0000000F, LaplacianFilter1 = 0x00000010, LaplacianFilter2 = 0x00000011, LaplacianFilter3 = 0x00000012, LaplacianDiagonal = 0x00000013, LaplacianHorizontal = 0x00000014, LaplacianVertical = 0x00000015, SobelHorizontal = 0x00000016, SobelVertical = 0x00000017, PrewittHorizontal = 0x00000018, PrewittVertical = 0x00000019, ShiftAndDifferenceDiagonal = 0x0000001A, ShiftAndDifferenceHorizontal = 0x0000001B, ShiftAndDifferenceVertical = 0x0000001C, LineSegmentHorizontal = 0x0000001D, LineSegmentVertical = 0x0000001E, LineSegmentLeftToRight = 0x0000001F, LineSegmentRightToLeft = 0x00000020, };
public enum class SpatialFilterCommandPredefined : public System.Enum, System.IComparableSystem.IConvertibleSystem.IFormattable  
Members
ValueMemberDescription
0x00000000EmbossNorthCreates 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.)
0x00000001EmbossNorthEastCreates 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.)
0x00000002EmbossEastCreates 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.)
0x00000003EmbossSouthEastCreates 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.)
0x00000004EmbossSouthCreates 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.)
0x00000005EmbossSouthWestCreates 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.)
0x00000006EmbossWestCreates 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.)
0x00000007EmbossNorthWestCreates 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.)
0x00000008GradientEdgeEnhancementNorthDetects edges using a Gradient directional filter. The direction of the effect is north.
0x00000009GradientEdgeEnhancementNorthEastDetects edges using a Gradient directional filter. The direction of the effect is north-east.
0x0000000AGradientEdgeEnhancementEastDetects edges using a Gradient directional filter. The direction of the effect is east.
0x0000000BGradientEdgeEnhancementSouthEastDetects edges using a Gradient directional filter. The direction of the effect is south-east.
0x0000000CGradientEdgeEnhancementSouthDetects edges using a Gradient directional filter. The direction of the effect is south.
0x0000000DGradientEdgeEnhancementSouthWestDetects edges using a Gradient directional filter. The direction of the effect is south-west.
0x0000000EGradientEdgeEnhancementWestDetects edges using a Gradient directional filter. The direction of the effect is west.
0x0000000FGradientEdgeEnhancementNorthWestDetects edges using a Gradient directional filter. The direction of the effect is north-west.
0x00000010LaplacianFilter1Applies Laplacian line detection number 1. All pixels not on the detected lines are changed to black.
0x00000011LaplacianFilter2Applies Laplacian line detection number 2. All pixels not on the detected lines are changed to black.
0x00000012LaplacianFilter3Applies Laplacian line detection number 3. All pixels not on the detected lines are changed to black.
0x00000013LaplacianDiagonalApplies diagonal Laplacian line detection. All pixels not on the detected lines are changed to black.
0x00000014LaplacianHorizontalApplies horizontal Laplacian line detection. All pixels not on the detected lines are changed to black.
0x00000015LaplacianVerticalApplies vertical Laplacian line detection. All pixels not on the detected lines are changed to black.
0x00000016SobelHorizontalApplies 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.)
0x00000017SobelVerticalApplies 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.)
0x00000018PrewittHorizontalApplies 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.
0x00000019PrewittVerticalApplies 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.
0x0000001AShiftAndDifferenceDiagonalApplies diagonal shift-and-difference edge detection. All pixels not on the detected edges are changed to black.
0x0000001BShiftAndDifferenceHorizontalApplies horizontal shift-and-difference edge detection. All pixels not on the detected edges are changed to black.
0x0000001CShiftAndDifferenceVerticalApplies vertical shift-and-difference edge detection. All pixels not on the detected edges are changed to black.
0x0000001DLineSegmentHorizontalApplies 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.
0x0000001ELineSegmentVerticalApplies 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.
0x0000001FLineSegmentLeftToRightApplies 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.
0x00000020LineSegmentRightToLeftApplies 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.
Inheritance Hierarchy

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

Requirements

Target Platforms

See Also

Reference

Leadtools.ImageProcessing.Effects Namespace

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.