java.lang.Object
imagingbook.common.morphology.BinaryThinning
- All Implemented Interfaces:
BinaryMorphologyOperator
Implements a binary morphological thinning or "skeletonization" operation, based on the algorithm by Zhang and Suen [1]. See Sec. 7.4 (Alg. 7.2-7.3) of [2] for additional details.
[1] T. Y. Zhang and C. Y. Suen. A fast parallel algorithm for thinning digital patterns. Communications of the ACM
27(3), 236–239 (1984).
[2] W. Burger, M.J. Burge, Digital Image Processing – An Algorithmic
Introduction, 3rd ed, Springer (2022).
- Version:
- 2022/09/18
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor, creates aBinaryThinning
operator with the maximum number of iterations to be calculated dynamically from the size of the processed image.BinaryThinning
(int maxIterations) Constructor, creates aBinaryThinning
operator with the specified maximum number of iterations. -
Method Summary
Modifier and TypeMethodDescriptionvoid
applyTo
(ByteProcessor bp) Applies this morphological operator to the specified image (destructively, that is, the image is modified).int
Returns the number of iterations performed since the last invocation ofapplyTo(ByteProcessor)
orreset()
.boolean
Returnstrue
if thinning has successfully completed,false
otherwise.void
reset()
Resets the internal iteration counter and completion flag.int
Performs a single thinning iteration and returns the number of pixel deletions.
-
Constructor Details
-
BinaryThinning
public BinaryThinning()Constructor, creates aBinaryThinning
operator with the maximum number of iterations to be calculated dynamically from the size of the processed image. -
BinaryThinning
Constructor, creates aBinaryThinning
operator with the specified maximum number of iterations.- Parameters:
maxIterations
- the maximum number of iterations
-
-
Method Details
-
getIterations
Returns the number of iterations performed since the last invocation ofapplyTo(ByteProcessor)
orreset()
.- Returns:
- the number of iterations
-
isComplete
Returnstrue
if thinning has successfully completed,false
otherwise.- Returns:
true
if successfully completed
-
reset
Resets the internal iteration counter and completion flag. Provided for debugging or animation only. -
applyTo
Description copied from interface:BinaryMorphologyOperator
Applies this morphological operator to the specified image (destructively, that is, the image is modified).- Specified by:
applyTo
in interfaceBinaryMorphologyOperator
- Parameters:
bp
- the image the operator is applied to
-
thinOnce
Performs a single thinning iteration and returns the number of pixel deletions. Updates the internal iteration counter and completion flag. This method is iteratively called byapplyTo(ByteProcessor)
. It is public only for debugging and animation.- Parameters:
bp
- the image to be thinned- Returns:
- the number of pixel deletions
-