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.12.0/d0/de3/citelist.html#CITEREF_aksoy2017designing).
7
+
//! The implementation is based on [aksoy2017designing](https://docs.opencv.org/4.13.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/cudacodec.rs
+2-6Lines changed: 2 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -952,20 +952,18 @@ pub mod cudacodec {
952
952
/// * outputFormat: The requested output color format.
953
953
/// * bitDepth: The requested bit depth of the output frame.
954
954
/// * planar: Request seperate planes for each color plane.
955
-
/// * videoFullRangeFlag: Indicates if the black level, luma and chroma of the source are represented using the full or limited range (AKA TV or "analogue" range) of values as defined in Annex E of the ITU-T Specification.
956
955
/// * stream: Stream for the asynchronous version.
/// * outputFormat: The requested output color format.
980
978
/// * bitDepth: The requested bit depth of the output frame.
981
979
/// * planar: Request seperate planes for each color plane.
982
-
/// * videoFullRangeFlag: Indicates if the black level, luma and chroma of the source are represented using the full or limited range (AKA TV or "analogue" range) of values as defined in Annex E of the ITU-T Specification.
983
980
/// * stream: Stream for the asynchronous version.
984
981
///
985
982
/// ## Note
986
983
/// This alternative version of [CUDA_NVSurfaceToColorConverterTrait::convert] function uses the following default values for its arguments:
0 commit comments