Function opencv::cudaarithm::phase
source · pub fn phase(
x: &dyn ToInputArray,
y: &dyn ToInputArray,
angle: &mut dyn ToOutputArray,
angle_in_degrees: bool,
stream: &mut Stream
) -> Result<()>
Expand description
Computes polar angles of complex matrix elements.
Parameters
- x: Source matrix containing real components ( CV_32FC1 ).
- y: Source matrix containing imaginary components ( CV_32FC1 ).
- angle: Destination matrix of angles ( CV_32FC1 ).
- angleInDegrees: Flag for angles that must be evaluated in degrees.
- stream: Stream for the asynchronous version.
See also
phase
C++ default parameters
- angle_in_degrees: false
- stream: Stream::Null()