TextureDetectionResultUnit
The TextureDetectionResultUnit class represents an intermediate result unit for texture detection. It is derived from the IntermediateResultUnit class and contains the x-direction spacing and y-direction spacing of the texture stripes.
Definition
Namespace: Dynamsoft.Core.intermediate_results
class TextureDetectionResultUnit : IntermediateResultUnit
Methods
| Method | Description |
|---|---|
GetXSpacing |
Gets x-direction spacing of the texture stripes. |
GetYSpacing |
Gets y-direction spacing of the texture stripes. |
SetXSpacing |
Sets x-direction spacing of the texture stripes. |
SetYSpacing |
Sets y-direction spacing of the texture stripes. |
Inherited Methods
Checkout inherited methods from IntermediateResultUnit for more details.
GetXSpacing
Gets x-direction spacing of the texture stripes.
int GetXSpacing()
Return value
Returns the x-direction spacing of the texture stripes.
GetYSpacing
Gets y-direction spacing of the texture stripes.
int GetYSpacing()
Return value
Returns the y-direction spacing of the texture stripes.
SetXSpacing
Sets the x-direction spacing of the texture stripes.
void SetXSpacing(int xSpacing)
Parameters
[in] xSpacing The x-direction spacing of the texture stripes.
SetYSpacing
Sets the y-direction spacing of the texture stripes.
void SetYSpacing(int ySpacing)
Parameters
[in] ySpacing The y-direction spacing of the texture stripes.