Trait opencv::prelude::SelectiveSearchSegmentation
source · [−]pub trait SelectiveSearchSegmentation: AlgorithmTrait + SelectiveSearchSegmentationConst {
fn as_raw_mut_SelectiveSearchSegmentation(&mut self) -> *mut c_void;
fn set_base_image(&mut self, img: &dyn ToInputArray) -> Result<()> { ... }
fn switch_to_single_strategy(&mut self, k: i32, sigma: f32) -> Result<()> { ... }
fn switch_to_selective_search_fast(
&mut self,
base_k: i32,
inc_k: i32,
sigma: f32
) -> Result<()> { ... }
fn switch_to_selective_search_quality(
&mut self,
base_k: i32,
inc_k: i32,
sigma: f32
) -> Result<()> { ... }
fn add_image(&mut self, img: &dyn ToInputArray) -> Result<()> { ... }
fn clear_images(&mut self) -> Result<()> { ... }
fn add_graph_segmentation(
&mut self,
g: Ptr<dyn GraphSegmentation>
) -> Result<()> { ... }
fn clear_graph_segmentations(&mut self) -> Result<()> { ... }
fn add_strategy(
&mut self,
s: Ptr<dyn SelectiveSearchSegmentationStrategy>
) -> Result<()> { ... }
fn clear_strategies(&mut self) -> Result<()> { ... }
fn process(&mut self, rects: &mut Vector<Rect>) -> Result<()> { ... }
}
Required Methods
fn as_raw_mut_SelectiveSearchSegmentation(&mut self) -> *mut c_void
Provided Methods
sourcefn set_base_image(&mut self, img: &dyn ToInputArray) -> Result<()>
fn set_base_image(&mut self, img: &dyn ToInputArray) -> Result<()>
sourcefn switch_to_single_strategy(&mut self, k: i32, sigma: f32) -> Result<()>
fn switch_to_single_strategy(&mut self, k: i32, sigma: f32) -> Result<()>
Initialize the class with the ‘Single stragegy’ parameters describled in uijlings2013selective.
Parameters
- k: The k parameter for the graph segmentation
- sigma: The sigma parameter for the graph segmentation
C++ default parameters
- k: 200
- sigma: 0.8f
sourcefn switch_to_selective_search_fast(
&mut self,
base_k: i32,
inc_k: i32,
sigma: f32
) -> Result<()>
fn switch_to_selective_search_fast(
&mut self,
base_k: i32,
inc_k: i32,
sigma: f32
) -> Result<()>
Initialize the class with the ‘Selective search fast’ parameters describled in uijlings2013selective.
Parameters
- base_k: The k parameter for the first graph segmentation
- inc_k: The increment of the k parameter for all graph segmentations
- sigma: The sigma parameter for the graph segmentation
C++ default parameters
- base_k: 150
- inc_k: 150
- sigma: 0.8f
sourcefn switch_to_selective_search_quality(
&mut self,
base_k: i32,
inc_k: i32,
sigma: f32
) -> Result<()>
fn switch_to_selective_search_quality(
&mut self,
base_k: i32,
inc_k: i32,
sigma: f32
) -> Result<()>
Initialize the class with the ‘Selective search fast’ parameters describled in uijlings2013selective.
Parameters
- base_k: The k parameter for the first graph segmentation
- inc_k: The increment of the k parameter for all graph segmentations
- sigma: The sigma parameter for the graph segmentation
C++ default parameters
- base_k: 150
- inc_k: 150
- sigma: 0.8f
sourcefn add_image(&mut self, img: &dyn ToInputArray) -> Result<()>
fn add_image(&mut self, img: &dyn ToInputArray) -> Result<()>
sourcefn clear_images(&mut self) -> Result<()>
fn clear_images(&mut self) -> Result<()>
Clear the list of images to process
sourcefn add_graph_segmentation(&mut self, g: Ptr<dyn GraphSegmentation>) -> Result<()>
fn add_graph_segmentation(&mut self, g: Ptr<dyn GraphSegmentation>) -> Result<()>
Add a new graph segmentation in the list of graph segementations to process.
Parameters
- g: The graph segmentation
sourcefn clear_graph_segmentations(&mut self) -> Result<()>
fn clear_graph_segmentations(&mut self) -> Result<()>
Clear the list of graph segmentations to process;
sourcefn add_strategy(
&mut self,
s: Ptr<dyn SelectiveSearchSegmentationStrategy>
) -> Result<()>
fn add_strategy(
&mut self,
s: Ptr<dyn SelectiveSearchSegmentationStrategy>
) -> Result<()>
sourcefn clear_strategies(&mut self) -> Result<()>
fn clear_strategies(&mut self) -> Result<()>
Clear the list of strategy to process;