XImgprocInvokeThinning Method |
http://www.emgu.com
Applies a binary blob thinning operation, to achieve a skeletization of the input image.
The function transforms a binary blob image into a skeletized form using the technique of Zhang-Suen.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic static void Thinning(
IInputArray src,
IOutputArray dst,
ThinningTypes thinningType
)
Public Shared Sub Thinning (
src As IInputArray,
dst As IOutputArray,
thinningType As ThinningTypes
)
public:
static void Thinning(
IInputArray^ src,
IOutputArray^ dst,
ThinningTypes thinningType
)
static member Thinning :
src : IInputArray *
dst : IOutputArray *
thinningType : ThinningTypes -> unit
Parameters
- src
- Type: Emgu.CVIInputArray
Source 8-bit single-channel image, containing binary blobs, with blobs having 255 pixel values. - dst
- Type: Emgu.CVIOutputArray
Destination image of the same size and the same type as src. The function can work in-place. - thinningType
- Type: Emgu.CV.XImgprocThinningTypes
Value that defines which thinning algorithm should be used.
See Also