Commit 502aa1f0 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #8368 from csukuangfj:patch-5

parents fdda19cb 95468b72
...@@ -660,7 +660,7 @@ sub-matrices. ...@@ -660,7 +660,7 @@ sub-matrices.
- Use MATLAB-style array initializers, zeros(), ones(), eye(), for example: - Use MATLAB-style array initializers, zeros(), ones(), eye(), for example:
@code @code
// create a double-precision identity martix and add it to M. // create a double-precision identity matrix and add it to M.
M += Mat::eye(M.rows, M.cols, CV_64F); M += Mat::eye(M.rows, M.cols, CV_64F);
@endcode @endcode
...@@ -693,7 +693,7 @@ If you need to process a whole row of a 2D array, the most efficient way is to g ...@@ -693,7 +693,7 @@ If you need to process a whole row of a 2D array, the most efficient way is to g
the row first, and then just use the plain C operator [] : the row first, and then just use the plain C operator [] :
@code @code
// compute sum of positive matrix elements // compute sum of positive matrix elements
// (assuming that M isa double-precision matrix) // (assuming that M is a double-precision matrix)
double sum=0; double sum=0;
for(int i = 0; i < M.rows; i++) for(int i = 0; i < M.rows; i++)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment