Find threshold🔗
Automatically finds a suitable threshold value for binarizing a gray-level image based on its histogram. This tool uses Otsu’s method to find a threshold that best separates background from foreground. Mathematically, the threshold is selected by splitting the input histogram so that the sum of variances on both sides of the threshold is minimized.
In addition to the optimal threshold, the tool estimates which of the sides of the threshold represents foreground and background and sets the invert output accordingly.
This tool is usually used as a way to automatically choose a suitable threshold for tools such as binarize, detect boundaries, detect blobs or find matrix code.
Inputs🔗
histogram
: The gray-level histogram of an image.
Outputs🔗
threshold
: The optimal threshold.invert
: A boolean value that indicates whether the background is dark or light. It is assumed that the input histogram contains more background than foreground. If at least half of its mass is on the left side of the the selected threshold, background is assumed to be dark and the the invert output will befalse
. Otherwise, it will betrue
.