Goldriver
Goldriver

Reputation: 35

How does the Zhang Suen Thinning Algorithm achieve thinning of an image?

I have the Zhang Suen algorithm properly implemented in MATLAB and its producing a fine output but I am lacking understanding of how does it achieve thinning?

I am attaching here the links that maybe of help in understanding my problem.

A document discussing the implementation of various image thinning techniques

Research paper of Zhang + Suen:

Upvotes: 0

Views: 1620

Answers (1)

Kurt Pfeifle
Kurt Pfeifle

Reputation: 90263

An explanation about various 'thinning' methods in automatic image procession as used by ImageMagick can be found here:

This section of the ImageMagick documentation provides quite a few examples. To really understand it though, you should start reading up about 'Morphology' and 'Kernels' in ImageMagick (at the top of the same page):


Note, that I have not heard about the 'Zhang Suen' thinning algorithm before. ImageMagick also does not support it.

Upvotes: 1

Related Questions