You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/alphamat.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ pub mod alphamat {
4
4
//!
5
5
//! 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.
6
6
//!
7
-
//! The implementation is based on [aksoy2017designing](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_aksoy2017designing).
7
+
//! The implementation is based on [aksoy2017designing](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_aksoy2017designing).
8
8
//!
9
9
//! This module was developed by Muskaan Kularia and Sunita Nayak as a project
Copy file name to clipboardExpand all lines: docs/bgsegm.rs
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -195,16 +195,16 @@ pub mod bgsegm {
195
195
196
196
/// Creates an instance of BackgroundSubtractorLSBP algorithm.
197
197
///
198
-
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016)
198
+
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016)
199
199
///
200
200
/// ## Parameters
201
201
/// * mc: Whether to use camera motion compensation.
202
202
/// * nSamples: Number of samples to maintain at each point of the frame.
203
203
/// * LSBPRadius: LSBP descriptor radius.
204
-
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
205
-
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
206
-
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
207
-
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
204
+
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
205
+
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
206
+
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
207
+
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
208
208
/// * Rscale: Scale coefficient for threshold values.
209
209
/// * Rincdec: Increase/Decrease step for threshold values.
210
210
/// * noiseRemovalThresholdFacBG: Strength of the noise removal for background points.
@@ -239,16 +239,16 @@ pub mod bgsegm {
239
239
240
240
/// Creates an instance of BackgroundSubtractorLSBP algorithm.
241
241
///
242
-
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016)
242
+
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016)
243
243
///
244
244
/// ## Parameters
245
245
/// * mc: Whether to use camera motion compensation.
246
246
/// * nSamples: Number of samples to maintain at each point of the frame.
247
247
/// * LSBPRadius: LSBP descriptor radius.
248
-
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
249
-
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
250
-
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
251
-
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
248
+
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
249
+
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
250
+
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
251
+
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
252
252
/// * Rscale: Scale coefficient for threshold values.
253
253
/// * Rincdec: Increase/Decrease step for threshold values.
254
254
/// * noiseRemovalThresholdFacBG: Strength of the noise removal for background points.
@@ -798,7 +798,7 @@ pub mod bgsegm {
798
798
799
799
}
800
800
801
-
/// Background Subtractor module based on the algorithm given in [Gold2012](https://docs.opencv.org/4.9.0/d0/de3/citelist.html#CITEREF_Gold2012) .
801
+
/// Background Subtractor module based on the algorithm given in [Gold2012](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_Gold2012) .
802
802
///
803
803
/// Takes a series of images and returns a sequence of mask (8UC1)
804
804
/// images of the same size, where 255 indicates Foreground and 0 represents Background.
@@ -1026,7 +1026,7 @@ pub mod bgsegm {
1026
1026
1027
1027
}
1028
1028
1029
-
/// Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at [LGuo2016](https://docs.opencv.org/4.9.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.10.0/d0/de3/citelist.html#CITEREF_LGuo2016)
0 commit comments