Skip to content

Files

Latest commit

75d88af · Apr 10, 2021

History

History
5 lines (3 loc) · 672 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 672 Bytes

OTSU THRESHOLDING

Otsu thresholding method, named after its inventor Nobuyuki Otsu. Otsu thresholding involves in statistic and probability theory. So calculated values will relate to histogram (represent distribution of the image). This method basically base on Variances. Suppose, one image has 2 classes: foreground and background. Within Class Variance (Vw) and Between Class Variance (Vb) is considered. Vw and Vb is the measure of spread of in a class and between 2 classes respectively for a threshold value. The optimal threshold would make Vw to be smallest (the less dispersed data is in each class) or Vb max (the most dispersed data is between classes).