Instantiates a new CombRemovalOptions object setting the specified values.
Syntax
'Declaration
Public Function New( _
ByVal As Rectangle, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim area As Rectangle
Dim combSpacing As Integer
Dim minimumCombLength As Integer
Dim combHeight As Integer
Dim horizontalLineThickness As Integer
Dim verticalLineThickness As Integer
Dim minimumConfidence As Integer
Dim instance As New CombRemovalOptions(area, combSpacing, minimumCombLength, combHeight, horizontalLineThickness, verticalLineThickness, minimumConfidence)
public CombRemovalOptions(
Rectangle ,
int ,
int ,
int ,
int ,
int ,
int
)
public: CombRemovalOptions(
Rectangle ,
int ,
int ,
int ,
int ,
int ,
int
)
public:
CombRemovalOptions(
Rectangle ,
int ,
int ,
int ,
int ,
int ,
int
)
Parameters
- area
- The area of the image where the comb removal process will search.
- combSpacing
- The typical distance (in pixels) between comb marks.
- minimumCombLength
- The minimum distance (in pixels) from the leftmost comb mark to the rightmost comb mark.
- combHeight
- The typical height (in pixels) of a comb mark (measured from the top of
the horizontal base line to the top of the mark).
- horizontalLineThickness
- The typical thickness (in pixels) of the horizontal lines that comprise the comb.
- verticalLineThickness
- The typical thickness (in pixels) of the vertical lines that comprise the comb.
- minimumConfidence
- The confidence of an individual comb before it will be removed.
See Also