Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
037e3ee2
Commit
037e3ee2
authored
Sep 06, 2012
by
Vsevolod Glumov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some minor formatting issues in 'old_basic_structures' and 'operations_on_arrays'.
parent
a1796469
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
17 deletions
+13
-17
old_basic_structures.rst
modules/core/doc/old_basic_structures.rst
+2
-2
operations_on_arrays.rst
modules/core/doc/operations_on_arrays.rst
+11
-15
No files found.
modules/core/doc/old_basic_structures.rst
View file @
037e3ee2
...
@@ -826,7 +826,7 @@ Returns one of array diagonals.
...
@@ -826,7 +826,7 @@ Returns one of array diagonals.
The function returns the header, corresponding to a specified diagonal of the input array.
The function returns the header, corresponding to a specified diagonal of the input array.
GetDims
GetDims
-------
--
-------
Return number of array dimensions
Return number of array dimensions
.. ocv:cfunction:: int cvGetDims(const CvArr* arr, int* sizes=NULL)
.. ocv:cfunction:: int cvGetDims(const CvArr* arr, int* sizes=NULL)
...
@@ -847,7 +847,7 @@ The function returns the array dimensionality and the array of dimension sizes.
...
@@ -847,7 +847,7 @@ The function returns the array dimensionality and the array of dimension sizes.
total *= sizes[i];
total *= sizes[i];
GetDimSize
GetDimSize
----------
--
----------
Returns array size along the specified dimension.
Returns array size along the specified dimension.
.. ocv:cfunction:: int cvGetDimSize(const CvArr* arr, int index)
.. ocv:cfunction:: int cvGetDimSize(const CvArr* arr, int index)
...
...
modules/core/doc/operations_on_arrays.rst
View file @
037e3ee2
...
@@ -406,8 +406,6 @@ Calculates the covariance matrix of a set of vectors.
...
@@ -406,8 +406,6 @@ Calculates the covariance matrix of a set of vectors.
:param ctype: type of the matrixl; it equals 'CV_64F' by default.
:param ctype: type of the matrixl; it equals 'CV_64F' by default.
:param cov_mat: output covariance matrix (specific to C syntax).
:param mean: input or output (depending on the flags) array as the average value of the input vectors.
:param mean: input or output (depending on the flags) array as the average value of the input vectors.
:param vects: a set of vectors.
:param vects: a set of vectors.
...
@@ -545,8 +543,6 @@ Performs the per-element comparison of two arrays or an array and scalar value.
...
@@ -545,8 +543,6 @@ Performs the per-element comparison of two arrays or an array and scalar value.
* **CMP_LE** ``src1`` is less than or equal to ``src2``.
* **CMP_LE** ``src1`` is less than or equal to ``src2``.
* **CMP_NE** ``src1`` is unequal to ``src2``.
* **CMP_NE** ``src1`` is unequal to ``src2``.
:param cmp_op: a flag, that specifies correspondence between the arrays (specific to C syntax; for possible values see 'cmpop above).
The function compares:
The function compares:
...
@@ -1004,7 +1000,7 @@ All of the above improvements have been implemented in :ocv:func:`matchTemplate`
...
@@ -1004,7 +1000,7 @@ All of the above improvements have been implemented in :ocv:func:`matchTemplate`
divide
divide
------
----
------
Performs per-element division of two arrays or a scalar by an array.
Performs per-element division of two arrays or a scalar by an array.
.. ocv:function:: void divide(InputArray src1, InputArray src2, OutputArray dst, double scale=1, int dtype=-1)
.. ocv:function:: void divide(InputArray src1, InputArray src2, OutputArray dst, double scale=1, int dtype=-1)
...
@@ -1164,7 +1160,7 @@ To extract a channel from a new-style matrix, use
...
@@ -1164,7 +1160,7 @@ To extract a channel from a new-style matrix, use
insertImageCOI
insertImageCOI
--------------
-
--------------
Copies the selected image channel from a new-style C++ matrix to the old-style C array.
Copies the selected image channel from a new-style C++ matrix to the old-style C array.
.. ocv:function:: void insertImageCOI( InputArray coiimg, CvArr* arr, int coi=-1 )
.. ocv:function:: void insertImageCOI( InputArray coiimg, CvArr* arr, int coi=-1 )
...
@@ -1196,7 +1192,7 @@ To insert a channel to a new-style matrix, use
...
@@ -1196,7 +1192,7 @@ To insert a channel to a new-style matrix, use
flip
flip
----
----
----
Flips a 2D array around vertical, horizontal, or both axes.
Flips a 2D array around vertical, horizontal, or both axes.
.. ocv:function:: void flip(InputArray src, OutputArray dst, int flipCode)
.. ocv:function:: void flip(InputArray src, OutputArray dst, int flipCode)
...
@@ -2267,7 +2263,7 @@ The sample below is the function that takes two matrices. The first function sto
...
@@ -2267,7 +2263,7 @@ The sample below is the function that takes two matrices. The first function sto
PCA::PCA
PCA::PCA
--------
----
--------
PCA constructors
PCA constructors
.. ocv:function:: PCA::PCA()
.. ocv:function:: PCA::PCA()
...
@@ -2535,7 +2531,7 @@ http://en.wikipedia.org/wiki/Ziggurat_algorithm
...
@@ -2535,7 +2531,7 @@ http://en.wikipedia.org/wiki/Ziggurat_algorithm
RNG::RNG
RNG::RNG
--------
----
--------
The constructors
The constructors
.. ocv:function:: RNG::RNG()
.. ocv:function:: RNG::RNG()
...
@@ -2549,7 +2545,7 @@ These are the RNG constructors. The first form sets the state to some pre-define
...
@@ -2549,7 +2545,7 @@ These are the RNG constructors. The first form sets the state to some pre-define
RNG::next
RNG::next
---------
----
---------
Returns the next random number.
Returns the next random number.
.. ocv:function:: unsigned RNG::next()
.. ocv:function:: unsigned RNG::next()
...
@@ -2583,7 +2579,7 @@ Each of the methods updates the state using the MWC algorithm and returns the ne
...
@@ -2583,7 +2579,7 @@ Each of the methods updates the state using the MWC algorithm and returns the ne
RNG::operator ()
RNG::operator ()
----------------
----
----------------
Returns the next random number.
Returns the next random number.
.. ocv:function:: unsigned RNG::operator ()()
.. ocv:function:: unsigned RNG::operator ()()
...
@@ -2598,7 +2594,7 @@ The methods transform the state using the MWC algorithm and return the next rand
...
@@ -2598,7 +2594,7 @@ The methods transform the state using the MWC algorithm and return the next rand
RNG::uniform
RNG::uniform
------------
----
------------
Returns the next random number sampled from the uniform distribution.
Returns the next random number sampled from the uniform distribution.
.. ocv:function:: int RNG::uniform(int a, int b)
.. ocv:function:: int RNG::uniform(int a, int b)
...
@@ -2637,7 +2633,7 @@ The compiler does not take into account the type of the variable to which you as
...
@@ -2637,7 +2633,7 @@ The compiler does not take into account the type of the variable to which you as
RNG::gaussian
RNG::gaussian
-------------
----
-------------
Returns the next random number sampled from the Gaussian distribution.
Returns the next random number sampled from the Gaussian distribution.
.. ocv:function:: double RNG::gaussian(double sigma)
.. ocv:function:: double RNG::gaussian(double sigma)
...
@@ -2649,7 +2645,7 @@ The method transforms the state using the MWC algorithm and returns the next ran
...
@@ -2649,7 +2645,7 @@ The method transforms the state using the MWC algorithm and returns the next ran
RNG::fill
RNG::fill
---------
----
---------
Fills arrays with random numbers.
Fills arrays with random numbers.
.. ocv:function:: void RNG::fill( InputOutputArray mat, int distType, InputArray a, InputArray b, bool saturateRange=false )
.. ocv:function:: void RNG::fill( InputOutputArray mat, int distType, InputArray a, InputArray b, bool saturateRange=false )
...
@@ -2952,7 +2948,7 @@ If ``DECOMP_LU`` or ``DECOMP_CHOLESKY`` method is used, the function returns 1 i
...
@@ -2952,7 +2948,7 @@ If ``DECOMP_LU`` or ``DECOMP_CHOLESKY`` method is used, the function returns 1 i
solveCubic
solveCubic
----------
----
----------
Finds the real roots of a cubic equation.
Finds the real roots of a cubic equation.
.. ocv:function:: int solveCubic( InputArray coeffs, OutputArray roots )
.. ocv:function:: int solveCubic( InputArray coeffs, OutputArray roots )
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment