Trait opencv::prelude::SuperpixelSLIC
source · pub trait SuperpixelSLIC: AlgorithmTrait + SuperpixelSLICConst {
// Required method
fn as_raw_mut_SuperpixelSLIC(&mut self) -> *mut c_void;
// Provided methods
fn iterate(&mut self, num_iterations: i32) -> Result<()> { ... }
fn enforce_label_connectivity(
&mut self,
min_element_size: i32
) -> Result<()> { ... }
}
Expand description
Class implementing the SLIC (Simple Linear Iterative Clustering) superpixels algorithm described in Achanta2012.
SLIC (Simple Linear Iterative Clustering) clusters pixels using pixel channels and image plane space to efficiently generate compact, nearly uniform superpixels. The simplicity of approach makes it extremely easy to use a lone parameter specifies the number of superpixels and the efficiency of the algorithm makes it very practical. Several optimizations are available for SLIC class: SLICO stands for “Zero parameter SLIC” and it is an optimization of baseline SLIC described in Achanta2012. MSLIC stands for “Manifold SLIC” and it is an optimization of baseline SLIC described in Liu_2017_IEEE.
Required Methods§
fn as_raw_mut_SuperpixelSLIC(&mut self) -> *mut c_void
Provided Methods§
sourcefn iterate(&mut self, num_iterations: i32) -> Result<()>
fn iterate(&mut self, num_iterations: i32) -> Result<()>
Calculates the superpixel segmentation on a given image with the initialized parameters in the SuperpixelSLIC object.
This function can be called again without the need of initializing the algorithm with createSuperpixelSLIC(). This save the computational cost of allocating memory for all the structures of the algorithm.
Parameters
- num_iterations: Number of iterations. Higher number improves the result.
The function computes the superpixels segmentation of an image with the parameters initialized with the function createSuperpixelSLIC(). The algorithms starts from a grid of superpixels and then refines the boundaries by proposing updates of edges boundaries.
C++ default parameters
- num_iterations: 10
sourcefn enforce_label_connectivity(&mut self, min_element_size: i32) -> Result<()>
fn enforce_label_connectivity(&mut self, min_element_size: i32) -> Result<()>
Enforce label connectivity.
Parameters
- min_element_size: The minimum element size in percents that should be absorbed into a bigger superpixel. Given resulted average superpixel size valid value should be in 0-100 range, 25 means that less then a quarter sized superpixel should be absorbed, this is default.
The function merge component that is too small, assigning the previously found adjacent label to this component. Calling this function may change the final number of superpixels.
C++ default parameters
- min_element_size: 25