[][src]Trait opencv::bgsegm::BackgroundSubtractorGMG

pub trait BackgroundSubtractorGMG {
    fn as_raw_BackgroundSubtractorGMG(&self) -> *mut c_void;

    fn get_max_features(&self) -> Result<i32> { ... }
fn set_max_features(&mut self, max_features: i32) -> Result<()> { ... }
fn get_default_learning_rate(&self) -> Result<f64> { ... }
fn set_default_learning_rate(&mut self, lr: f64) -> Result<()> { ... }
fn get_num_frames(&self) -> Result<i32> { ... }
fn set_num_frames(&mut self, nframes: i32) -> Result<()> { ... }
fn get_quantization_levels(&self) -> Result<i32> { ... }
fn set_quantization_levels(&mut self, nlevels: i32) -> Result<()> { ... }
fn get_background_prior(&self) -> Result<f64> { ... }
fn set_background_prior(&mut self, bgprior: f64) -> Result<()> { ... }
fn get_smoothing_radius(&self) -> Result<i32> { ... }
fn set_smoothing_radius(&mut self, radius: i32) -> Result<()> { ... }
fn get_decision_threshold(&self) -> Result<f64> { ... }
fn set_decision_threshold(&mut self, thresh: f64) -> Result<()> { ... }
fn get_update_background_model(&self) -> Result<bool> { ... }
fn set_update_background_model(&mut self, update: bool) -> Result<()> { ... }
fn get_min_val(&self) -> Result<f64> { ... }
fn set_min_val(&mut self, val: f64) -> Result<()> { ... }
fn get_max_val(&self) -> Result<f64> { ... }
fn set_max_val(&mut self, val: f64) -> Result<()> { ... } }

Background Subtractor module based on the algorithm given in Gold2012 .

Takes a series of images and returns a sequence of mask (8UC1) images of the same size, where 255 indicates Foreground and 0 represents Background. This class implements an algorithm described in "Visual Tracking of Human Visitors under Variable-Lighting Conditions for a Responsive Audio Art Installation," A. Godbehere, A. Matsukawa, K. Goldberg, American Control Conference, Montreal, June 2012.

Required methods

Loading content...

Provided methods

fn get_max_features(&self) -> Result<i32>

Returns total number of distinct colors to maintain in histogram.

fn set_max_features(&mut self, max_features: i32) -> Result<()>

Sets total number of distinct colors to maintain in histogram.

fn get_default_learning_rate(&self) -> Result<f64>

Returns the learning rate of the algorithm.

It lies between 0.0 and 1.0. It determines how quickly features are "forgotten" from histograms.

fn set_default_learning_rate(&mut self, lr: f64) -> Result<()>

Sets the learning rate of the algorithm.

fn get_num_frames(&self) -> Result<i32>

Returns the number of frames used to initialize background model.

fn set_num_frames(&mut self, nframes: i32) -> Result<()>

Sets the number of frames used to initialize background model.

fn get_quantization_levels(&self) -> Result<i32>

Returns the parameter used for quantization of color-space.

It is the number of discrete levels in each channel to be used in histograms.

fn set_quantization_levels(&mut self, nlevels: i32) -> Result<()>

Sets the parameter used for quantization of color-space

fn get_background_prior(&self) -> Result<f64>

Returns the prior probability that each individual pixel is a background pixel.

fn set_background_prior(&mut self, bgprior: f64) -> Result<()>

Sets the prior probability that each individual pixel is a background pixel.

fn get_smoothing_radius(&self) -> Result<i32>

Returns the kernel radius used for morphological operations

fn set_smoothing_radius(&mut self, radius: i32) -> Result<()>

Sets the kernel radius used for morphological operations

fn get_decision_threshold(&self) -> Result<f64>

Returns the value of decision threshold.

Decision value is the value above which pixel is determined to be FG.

fn set_decision_threshold(&mut self, thresh: f64) -> Result<()>

Sets the value of decision threshold.

fn get_update_background_model(&self) -> Result<bool>

Returns the status of background model update

fn set_update_background_model(&mut self, update: bool) -> Result<()>

Sets the status of background model update

fn get_min_val(&self) -> Result<f64>

Returns the minimum value taken on by pixels in image sequence. Usually 0.

fn set_min_val(&mut self, val: f64) -> Result<()>

Sets the minimum value taken on by pixels in image sequence.

fn get_max_val(&self) -> Result<f64>

Returns the maximum value taken on by pixels in image sequence. e.g. 1.0 or 255.

fn set_max_val(&mut self, val: f64) -> Result<()>

Sets the maximum value taken on by pixels in image sequence.

Loading content...

Implementors

Loading content...