Usually online clustering methods (based on kmeans or not) define a distance threshold value. If a new data-point $x$ is far enough from the nearest center $c$ (i.e. the distance from $x$ to $c$ is greater than the threshold), then just give this $x$ its own new cluster.
I saw that many methods theoretically define this sort of threshold as "the mean distance of all data-points to the center of their distribution". That is, let $\bar{x}$ be the center-of-mass of all data-points, the threshold is defined as the mean distance of all data-points to $\bar{x}$.
Question: Why is the threshold defined like that ? Does this make any sense ? What is the idea behind setting the threshold to this value (mean of distances to the center-of-mass) ?