OpenCvSharp.Cv2.CompleteSymm C# (CSharp) Method

CompleteSymm() public static method

extends the symmetrical matrix from the lower half or from the upper half
public static CompleteSymm ( OpenCvSharp.InputOutputArray mtx, bool lowerToUpper = false ) : void
mtx OpenCvSharp.InputOutputArray Input-output floating-point square matrix
lowerToUpper bool If true, the lower half is copied to the upper half, /// otherwise the upper half is copied to the lower half
return void
        public static void CompleteSymm(InputOutputArray mtx, bool lowerToUpper = false)
        {
            if (mtx == null)
                throw new ArgumentNullException(nameof(mtx));
            mtx.ThrowIfNotReady();
            NativeMethods.core_completeSymm(mtx.CvPtr, lowerToUpper ? 1 : 0);
            mtx.Fix();
        }
        #endregion
Cv2