Improved RST parser; fixed small typos found by new parser
This commit is contained in:
@@ -240,7 +240,7 @@ gpu::boxFilter
|
||||
|
||||
:param anchor: Anchor point. The default value ``Point(-1, -1)`` means that the anchor is at the kernel center.
|
||||
|
||||
.. note:: This filter does not check out-of-border accesses, so only a proper sub-matrix of a bigger matrix has to be passed to it.
|
||||
.. note:: This filter does not check out-of-border accesses, so only a proper sub-matrix of a bigger matrix has to be passed to it.
|
||||
|
||||
.. seealso:: :ocv:func:`boxFilter`
|
||||
|
||||
@@ -365,7 +365,7 @@ gpu::morphologyEx
|
||||
|
||||
:param iterations: Number of times erosion and dilation to be applied.
|
||||
|
||||
.. note:: This filter does not check out-of-border accesses, so only a proper sub-matrix of a bigger matrix has to be passed to it.
|
||||
.. note:: This filter does not check out-of-border accesses, so only a proper sub-matrix of a bigger matrix has to be passed to it.
|
||||
|
||||
.. seealso:: :ocv:func:`morphologyEx`
|
||||
|
||||
@@ -433,7 +433,7 @@ gpu::Laplacian
|
||||
|
||||
:param scale: Optional scale factor for the computed Laplacian values. By default, no scaling is applied (see :ocv:func:`getDerivKernels` ).
|
||||
|
||||
.. note:: This filter does not check out-of-border accesses, so only a proper sub-matrix of a bigger matrix has to be passed to it.
|
||||
.. note:: This filter does not check out-of-border accesses, so only a proper sub-matrix of a bigger matrix has to be passed to it.
|
||||
|
||||
.. seealso:: :ocv:func:`Laplacian`,:ocv:func:`gpu::filter2D` .
|
||||
|
||||
|
@@ -166,9 +166,9 @@ Class providing a set of static methods to check what NVIDIA* card architecture
|
||||
|
||||
The following method checks whether the module was built with the support of the given feature:
|
||||
|
||||
.. ocv:function:: static bool gpu::TargetArchs::builtWith(GpuFeature feature)
|
||||
.. ocv:function:: static bool gpu::TargetArchs::builtWith(GpuFeature feature)
|
||||
|
||||
:param feature: Feature to be checked. See :ocv:class:`gpu::GpuFeature`.
|
||||
:param feature: Feature to be checked. See :ocv:class:`gpu::GpuFeature`.
|
||||
|
||||
There is a set of methods to check whether the module contains intermediate (PTX) or binary GPU code for the given architecture(s):
|
||||
|
||||
|
@@ -7,7 +7,7 @@ Matrix Reductions
|
||||
|
||||
gpu::meanStdDev
|
||||
-------------------
|
||||
.. cpp:function:: void gpu::meanStdDev(const GpuMat\& mtx, Scalar\& mean, Scalar\& stddev)
|
||||
.. ocv:function:: void gpu::meanStdDev(const GpuMat\& mtx, Scalar\& mean, Scalar\& stddev)
|
||||
|
||||
Computes a mean value and a standard deviation of matrix elements.
|
||||
|
||||
|
Reference in New Issue
Block a user