Samiksha Jaiswal (Editor)

Circular thresholding

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Circular thresholding

Circular thresholding is an algorithm for automatic image threshold selection in image processing. Most threshold selection algorithms assume that the values (e.g. intensities) lie on a linear scale. However, some quantities such as hue and orientation are a circular quantity, and therefore require circular thresholding algorithms. The example shows that the standard linear version of Otsu's Method when applied to the hue channel of an image of blood cells fails to correctly segment the large white blood cells (leukocytes). In contrast the white blood cells are correctly segmented by the circular version of Otsu's Method.

Methods

There are a relatively small number of circular image threshold selection algorithms. The following examples are all based on Otsu's Method for linear histograms:

  • (Tseng, Li and Tung 1995) smooth the circular histogram, and apply Otsu's Method. The histogram is cyclically rotated so that the selected threshold is shifted to zero. Otsu's Method and histogram rotation are applied iteratively until several heuristics involving class size, threshold location, and class variance are satisfied.
  • (Wu et al. 2006) smooth the circular histogram until it contains only two peaks. The histogram is cyclically rotated so that the midpoint between the peaks is shifted to zero. Otsu's Method and histogram rotation are applied iteratively until convergence of the threshold.
  • (Lai and Rosin 2014) applied Otsu's Method to the circular histogram. For the two class circular thresholding task they showed that, for a histogram with an even number of bins, the optimal solution for Otsu's criterion of within-class variance is obtained when the histogram is split into two halves. Therefore the optimal solution can be efficiently obtained in linear rather than quadratic time.
  • References

    Circular thresholding Wikipedia