pub fn magnitude_sqr_def(
xy: &impl ToInputArray,
magnitude: &mut impl ToOutputArray,
) -> Result<()>Expand description
Computes squared magnitudes of complex matrix elements.
§Parameters
- xy: Source complex matrix in the interleaved format ( CV_32FC2 ).
- magnitude: Destination matrix of float magnitude squares ( CV_32FC1 ).
- stream: Stream for the asynchronous version.
§Note
This alternative version of magnitude_sqr function uses the following default values for its arguments:
- stream: Stream::Null()