@@ -1288,7 +1288,6 @@ public static void BitwiseAnd(InputArray src1, InputArray src2, OutputArray dst,
12881288 GC . KeepAlive ( src1 ) ;
12891289 GC . KeepAlive ( src2 ) ;
12901290 GC . KeepAlive ( dst ) ;
1291- dst . Fix ( ) ;
12921291 GC . KeepAlive ( mask ) ;
12931292 }
12941293
@@ -1491,7 +1490,7 @@ public static void InRange(InputArray src, Scalar lowerb, Scalar upperb, OutputA
14911490 /// <param name="dst">output array of type ref CV_8U that has the same size and the same number of channels as the input arrays.</param>
14921491 /// <param name="cmpop">a flag, that specifies correspondence between the arrays (cv::CmpTypes)</param>
14931492 // ReSharper disable once IdentifierTypo
1494- public static void Compare ( InputArray src1 , InputArray src2 , OutputArray dst , CmpType cmpop )
1493+ public static void Compare ( InputArray src1 , InputArray src2 , OutputArray dst , CmpTypes cmpop )
14951494 {
14961495 if ( src1 is null )
14971496 throw new ArgumentNullException ( nameof ( src1 ) ) ;
@@ -1748,7 +1747,6 @@ public static void Log(InputArray src, OutputArray dst)
17481747
17491748 GC . KeepAlive ( src ) ;
17501749 GC . KeepAlive ( dst ) ;
1751- dst . Fix ( ) ;
17521750 }
17531751
17541752
@@ -2511,7 +2509,7 @@ public static void EigenNonSymmetric(InputArray src, OutputArray eigenvalues, Ou
25112509 /// <param name="samples">samples stored as separate matrices</param>
25122510 /// <param name="covar">output covariance matrix of the type ctype and square size.</param>
25132511 /// <param name="mean">input or output (depending on the flags) array as the average value of the input vectors.</param>
2514- /// <param name="flags">operation flags as a combination of CovarFlags</param>
2512+ /// <param name="flags">operation flags - see CovarFlags. </param>
25152513 /// <param name="ctype">type of the matrixl; it equals 'CV_64F' by default.</param>
25162514 public static void CalcCovarMatrix (
25172515 Mat [ ] samples , Mat covar , Mat mean ,
@@ -2542,7 +2540,7 @@ public static void CalcCovarMatrix(
25422540 /// <param name="samples">samples stored as rows/columns of a single matrix.</param>
25432541 /// <param name="covar">output covariance matrix of the type ctype and square size.</param>
25442542 /// <param name="mean">input or output (depending on the flags) array as the average value of the input vectors.</param>
2545- /// <param name="flags">operation flags as a combination of CovarFlags</param>
2543+ /// <param name="flags">operation flags - see CovarFlags. </param>
25462544 /// <param name="ctype">type of the matrixl; it equals 'CV_64F' by default.</param>
25472545 public static void CalcCovarMatrix (
25482546 InputArray samples , OutputArray covar ,
@@ -2575,7 +2573,7 @@ public static void CalcCovarMatrix(
25752573 /// <param name="data">input samples stored as the matrix rows or as the matrix columns.</param>
25762574 /// <param name="mean">optional mean value; if the matrix is empty (noArray()), the mean is computed from the data.</param>
25772575 /// <param name="eigenvectors">eigenvectors of the covariation matrix</param>
2578- /// <param name="maxComponents">maximum number of components that PCA should
2576+ /// <param name="maxComponents">Number of components that PCA should
25792577 /// retain; by default, all the components are retained.</param>
25802578 public static void PCACompute (
25812579 InputArray data , InputOutputArray mean ,
@@ -2606,7 +2604,7 @@ public static void PCACompute(
26062604 /// <param name="mean">optional mean value; if the matrix is empty (noArray()), the mean is computed from the data.</param>
26072605 /// <param name="eigenvectors">eigenvectors of the covariation matrix</param>
26082606 /// <param name="eigenvalues">eigenvalues of the covariation matrix</param>
2609- /// <param name="maxComponents">maximum number of components that PCA should
2607+ /// <param name="maxComponents">Number of components that PCA should
26102608 /// retain; by default, all the components are retained.</param>
26112609 public static void PCACompute (
26122610 InputArray data , InputOutputArray mean ,
0 commit comments