In This Topic
GdPicture14 Namespace / DespeckleType Enumeration

DespeckleType Enumeration

In This Topic
Specifies advanced despeckle types.
Syntax
'Declaration
 
<ComVisibleAttribute(True)>
Public Enum DespeckleType 
   Inherits System.Enum
[ComVisible(true)]
public enum DespeckleType : System.Enum 
public enum DespeckleType = class(System.Enum)
ComVisibleAttribute()
public enum DespeckleType extends System.Enum
[ComVisible(true)]
__value public enum DespeckleType : public System.Enum 
[ComVisible(true)]
public enum class DespeckleType : public System.Enum 
Members
MemberValueDescription
Connected4 The connected despeckle removes all the groups of connected black pixels with a number of black pixels below a threshold computed based on the requested despeckle strength. The group of connected pixels is computed by taking into consideration all directions.
ConnectedNeighborhood5 The connected despeckle neighborhood removes all the groups of connected black pixels with a number of black pixels below a threshold computed based on the despeckle strength and not close to larger component. The distance is also computed based on the strength. The group of connected pixels is computed by taking into consideration all directions.
ConnectedNeighborhoodWhite7 The connected white despeckle neighborhood removes all the groups of connected white pixels with a number of white pixels below a threshold computed based on the despeckle strength and not close to larger component. The distance is also computed based on the strength. The group of connected pixels is computed by taking into consideration all directions.
ConnectedWhite6 The connected white despeckle removes all the groups of connected white pixels with a number of white pixels below a threshold computed based on the requested despeckle strength. The group of connected pixels is computed by taking into consideration all directions.
FourConnected0 The four connected despeckle removes all the groups of connected black pixels with a number of black pixels below a threshold computed based on the requested despeckle strength. The group of connected pixels is computed by taking into consideration the following directions: above, below, right and left. As a result, diagonals are not taken into consideration, which may cause some thin slanted lines to be removed.
FourConnectedNeighborhood1 The four connected despeckle neighborhood removes all the groups of connected black pixels with a number of black pixels below a threshold computed based on the despeckle strength and not close to larger component. The distance is also computed based on the strength. The group of connected pixels is computed by taking into consideration the following directions: above, below, right and left. As a result, diagonals are not taken into consideration, which may cause some thin slanted lines to be removed.
FourConnectedNeighborhoodWhite3 The four connected white despeckle neighborhood removes all the groups of connected white pixels with a number of white pixels below a threshold computed based on the despeckle strength and not close to larger component. The distance is also computed based on the strength. The group of connected pixels is computed by taking into consideration the following directions: above, below, right and left. As a result, diagonals are not taken into consideration, which may cause some thin slanted lines to be removed.
FourConnectedWhite2 The four connected white despeckle removes all the groups of connected white pixels with a number of white pixels below a threshold computed based on the requested despeckle strength. The group of connected pixels is computed by taking into consideration the following directions: above, below, right and left. As a result, diagonals are not taken into consideration, which may cause some thin slanted lines to be removed.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         GdPicture14.DespeckleType

See Also