10-26-2015 10:31 PM
NI Vision has five automatic thresholding techniques on of them is clustering. i need to know what is algorithm used in this clustering based thresholding.. it is otsu, k-means?..
10-29-2015 02:06 PM - edited 10-29-2015 02:09 PM
Clustering is the most frequently used automatic thresholding method. Use the clustering method when you need to threshold the image into more than two classes.
Clustering sorts the histogram of the image within a discrete number of classes corresponding to the number of phases perceived in an image. The gray values are determined, and a barycenter is determined for each class. This process repeats until it obtains a value that represents the center of mass for each phase or class.
Also, check out the in-depth discussion section here.
Cheers
--------, Unofficial Forum Rules and Guidelines ,--------
'--- >The shortest distance between two nodes is a straight wire> ---'
10-30-2015 01:10 AM
based on my understanding..in clustering there a lots of algorithm..k-means, fuzzy cmeans, otsu..which algorithm (clustering) that used in auto thresholding to determine value of threshold?