Skip to content

Commit 6af8749

Browse files
committed
Update docs for OpenCV 4.11
1 parent 966b880 commit 6af8749

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+2229
-854
lines changed

docs/alphamat.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub mod alphamat {
44
//!
55
//! This module is dedicated to computing alpha matte of objects in images from a given input image and a greyscale trimap image that contains information about the foreground, background and unknown pixels. The unknown pixels are assumed to be a combination of foreground and background pixels. The algorithm uses a combination of multiple carefully defined pixels affinities to estimate the opacity of the foreground pixels in the unkown region.
66
//!
7-
//! The implementation is based on [aksoy2017designing](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_aksoy2017designing).
7+
//! The implementation is based on [aksoy2017designing](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_aksoy2017designing).
88
//!
99
//! This module was developed by Muskaan Kularia and Sunita Nayak as a project
1010
//! for Google Summer of Code 2019 (GSoC 19).

docs/bgsegm.rs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -196,16 +196,16 @@ pub mod bgsegm {
196196

197197
/// Creates an instance of BackgroundSubtractorLSBP algorithm.
198198
///
199-
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016)
199+
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016)
200200
///
201201
/// ## Parameters
202202
/// * mc: Whether to use camera motion compensation.
203203
/// * nSamples: Number of samples to maintain at each point of the frame.
204204
/// * LSBPRadius: LSBP descriptor radius.
205-
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
206-
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
207-
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
208-
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
205+
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
206+
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
207+
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
208+
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
209209
/// * Rscale: Scale coefficient for threshold values.
210210
/// * Rincdec: Increase/Decrease step for threshold values.
211211
/// * noiseRemovalThresholdFacBG: Strength of the noise removal for background points.
@@ -240,16 +240,16 @@ pub mod bgsegm {
240240

241241
/// Creates an instance of BackgroundSubtractorLSBP algorithm.
242242
///
243-
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016)
243+
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016)
244244
///
245245
/// ## Parameters
246246
/// * mc: Whether to use camera motion compensation.
247247
/// * nSamples: Number of samples to maintain at each point of the frame.
248248
/// * LSBPRadius: LSBP descriptor radius.
249-
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
250-
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
251-
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
252-
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
249+
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
250+
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
251+
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
252+
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
253253
/// * Rscale: Scale coefficient for threshold values.
254254
/// * Rincdec: Increase/Decrease step for threshold values.
255255
/// * noiseRemovalThresholdFacBG: Strength of the noise removal for background points.
@@ -577,7 +577,7 @@ pub mod bgsegm {
577577

578578
boxed_ref! { BackgroundSubtractorCNT, crate::bgsegm::BackgroundSubtractorCNTTraitConst, as_raw_BackgroundSubtractorCNT, crate::bgsegm::BackgroundSubtractorCNTTrait, as_raw_mut_BackgroundSubtractorCNT }
579579

580-
/// Background Subtractor module based on the algorithm given in [Gold2012](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_Gold2012) .
580+
/// Background Subtractor module based on the algorithm given in [Gold2012](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_Gold2012) .
581581
///
582582
/// Takes a series of images and returns a sequence of mask (8UC1)
583583
/// images of the same size, where 255 indicates Foreground and 0 represents Background.
@@ -1026,7 +1026,7 @@ pub mod bgsegm {
10261026

10271027
boxed_ref! { BackgroundSubtractorGSOC, crate::bgsegm::BackgroundSubtractorGSOCTraitConst, as_raw_BackgroundSubtractorGSOC, crate::bgsegm::BackgroundSubtractorGSOCTrait, as_raw_mut_BackgroundSubtractorGSOC }
10281028

1029-
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_LGuo2016)
1029+
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_LGuo2016)
10301030
pub struct BackgroundSubtractorLSBP {
10311031
ptr: *mut c_void,
10321032
}
@@ -1230,7 +1230,7 @@ pub mod bgsegm {
12301230

12311231
/// Gaussian Mixture-based Background/Foreground Segmentation Algorithm.
12321232
///
1233-
/// The class implements the algorithm described in [KB2001](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_KB2001) .
1233+
/// The class implements the algorithm described in [KB2001](https://docs.opencv.org/4.12.0/d0/de3/citelist.html#CITEREF_KB2001) .
12341234
pub struct BackgroundSubtractorMOG {
12351235
ptr: *mut c_void,
12361236
}

0 commit comments

Comments
 (0)