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.10.0/d0/de3/citelist.html#CITEREF_aksoy2017designing).
7
+
//! The implementation is based on [aksoy2017designing](https://docs.opencv.org/4.11.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
+70-13Lines changed: 70 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -196,16 +196,16 @@ pub mod bgsegm {
196
196
197
197
/// Creates an instance of BackgroundSubtractorLSBP algorithm.
198
198
///
199
-
/// 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
+
/// 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)
200
200
///
201
201
/// ## Parameters
202
202
/// * mc: Whether to use camera motion compensation.
203
203
/// * nSamples: Number of samples to maintain at each point of the frame.
204
204
/// * LSBPRadius: LSBP descriptor radius.
205
-
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
206
-
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
207
-
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
208
-
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
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.
209
209
/// * Rscale: Scale coefficient for threshold values.
210
210
/// * Rincdec: Increase/Decrease step for threshold values.
211
211
/// * noiseRemovalThresholdFacBG: Strength of the noise removal for background points.
@@ -240,16 +240,16 @@ pub mod bgsegm {
240
240
241
241
/// Creates an instance of BackgroundSubtractorLSBP algorithm.
242
242
///
243
-
/// 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
+
/// 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)
244
244
///
245
245
/// ## Parameters
246
246
/// * mc: Whether to use camera motion compensation.
247
247
/// * nSamples: Number of samples to maintain at each point of the frame.
248
248
/// * LSBPRadius: LSBP descriptor radius.
249
-
/// * Tlower: Lower bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
250
-
/// * Tupper: Upper bound for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
251
-
/// * Tinc: Increase step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
252
-
/// * Tdec: Decrease step for T-values. See [LGuo2016](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_LGuo2016) for details.
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.
253
253
/// * Rscale: Scale coefficient for threshold values.
254
254
/// * Rincdec: Increase/Decrease step for threshold values.
255
255
/// * noiseRemovalThresholdFacBG: Strength of the noise removal for background points.
/// Background Subtractor module based on the algorithm given in [Gold2012](https://docs.opencv.org/4.10.0/d0/de3/citelist.html#CITEREF_Gold2012) .
859
+
/// Background Subtractor module based on the algorithm given in [Gold2012](https://docs.opencv.org/4.11.0/d0/de3/citelist.html#CITEREF_Gold2012) .
803
860
///
804
861
/// Takes a series of images and returns a sequence of mask (8UC1)
805
862
/// images of the same size, where 255 indicates Foreground and 0 represents Background.
@@ -1027,7 +1084,7 @@ pub mod bgsegm {
1027
1084
1028
1085
}
1029
1086
1030
-
/// 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)
1087
+
/// 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)
0 commit comments