Local extrema labelization
Include <mln/labeling/local_extrema.hpp>
-
template<class Label_t, class I, class N>
image_ch_value_t<I, Label_t> local_minima(I input, Neighborhood nbh, int &nlabel) -
template<class Label_t, class I, class N>
image_ch_value_t<I, Label_t> local_maxima(I input, Neighborhood nbh, int &nlabel) -
template<class Label_t, class I, class N, class Compare>
image_ch_value_t<I, Label_t> local_minima(I input, Neighborhood nbh, int &nlabel, Compare cmp) Labelize the regional minima (1) or maxima (2) of an image with an optional comparaison function
cmp
(3). According to [Soi13], a regional minimum M of an image f at elevation t is a connected component of pixels with the value t whose external boundary pixels have a value strictly greater than t. Similarly, a regional maximum M of an image f at elevation t is a connected component of pixels with the value t whose external boundary pixels have a value strictly less than t.- Template Parameters:
Label_t – The type of label (must be
Integral
and not boolean)- Parameters:
input – Input image
nbh – Neighborhood considered
nlabel (out) – Number of extrema detected
cmp (optional) – Comparison function
- Returns:
A labelized image
- Exception:
N/A
Notes
Complexity
The algorithm is quasi-linear and requires \(n\) extra-memory space.
References
Soille, P. (2013). Morphological image analysis: principles and applications. Springer Science & Business Media.