pub fn suppress_non_maximum<I, C>(
image: &I,
radius: u32,
) -> ImageBuffer<Luma<C>, Vec<C>>
Expand description
Returned image has zeroes for all inputs pixels which do not have the greatest intensity in the (2 * radius + 1) square block centred on them. Ties are resolved lexicographically.