mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 07:43:03 +04:00
renamed "None()" to "noArray()" to avoid conflicts with X11 (ticket #1122)
This commit is contained in:
@@ -193,7 +193,7 @@ The algorithm sets the center of the neighborhood window at this new center
|
||||
goodFeaturesToTrack
|
||||
-------------------
|
||||
|
||||
.. cpp:function:: void goodFeaturesToTrack( InputArray image, OutputArray corners, int maxCorners, double qualityLevel, double minDistance, InputArray mask=None(), int blockSize=3, bool useHarrisDetector=false, double k=0.04 )
|
||||
.. cpp:function:: void goodFeaturesToTrack( InputArray image, OutputArray corners, int maxCorners, double qualityLevel, double minDistance, InputArray mask=noArray(), int blockSize=3, bool useHarrisDetector=false, double k=0.04 )
|
||||
|
||||
Determines strong corners on an image.
|
||||
|
||||
|
||||
@@ -519,7 +519,7 @@ By default, the undistortion functions in OpenCV (see
|
||||
|
||||
undistort
|
||||
-------------
|
||||
.. cpp:function:: void undistort( InputArray src, OutputArray dst, InputArray cameraMatrix, InputArray distCoeffs, InputArray newCameraMatrix=None() )
|
||||
.. cpp:function:: void undistort( InputArray src, OutputArray dst, InputArray cameraMatrix, InputArray distCoeffs, InputArray newCameraMatrix=noArray() )
|
||||
|
||||
Transforms an image to compensate for lens distortion.
|
||||
|
||||
@@ -554,7 +554,7 @@ The camera matrix and the distortion parameters can be determined using
|
||||
|
||||
undistortPoints
|
||||
-------------------
|
||||
.. cpp:function:: void undistortPoints( InputArray src, OutputArray dst, InputArray cameraMatrix, InputArray distCoeffs, InputArray R=None(), InputArray P=None())
|
||||
.. cpp:function:: void undistortPoints( InputArray src, OutputArray dst, InputArray cameraMatrix, InputArray distCoeffs, InputArray R=noArray(), InputArray P=noArray())
|
||||
|
||||
Computes the ideal point coordinates from the observed point coordinates.
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ Motion Analysis and Object Tracking
|
||||
|
||||
accumulate
|
||||
--------------
|
||||
.. cpp:function:: void accumulate( InputArray src, InputOutputArray dst, InputArray mask=None() )
|
||||
.. cpp:function:: void accumulate( InputArray src, InputOutputArray dst, InputArray mask=noArray() )
|
||||
|
||||
Adds an image to the accumulator.
|
||||
|
||||
@@ -36,7 +36,7 @@ See Also:
|
||||
|
||||
accumulateSquare
|
||||
--------------------
|
||||
.. cpp:function:: void accumulateSquare( InputArray src, InputOutputArray dst, InputArray mask=None() )
|
||||
.. cpp:function:: void accumulateSquare( InputArray src, InputOutputArray dst, InputArray mask=noArray() )
|
||||
|
||||
Adds the square of a source image to the accumulator.
|
||||
|
||||
@@ -63,7 +63,7 @@ See Also:
|
||||
|
||||
accumulateProduct
|
||||
---------------------
|
||||
.. cpp:function:: void accumulateProduct( InputArray src1, InputArray src2, InputOutputArray dst, InputArray mask=None() )
|
||||
.. cpp:function:: void accumulateProduct( InputArray src1, InputArray src2, InputOutputArray dst, InputArray mask=noArray() )
|
||||
|
||||
Adds the per-element product of two input images to the accumulator.
|
||||
|
||||
@@ -92,7 +92,7 @@ See Also:
|
||||
|
||||
accumulateWeighted
|
||||
----------------------
|
||||
.. cpp:function:: void accumulateWeighted( InputArray src, InputOutputArray dst, double alpha, InputArray mask=None() )
|
||||
.. cpp:function:: void accumulateWeighted( InputArray src, InputOutputArray dst, double alpha, InputArray mask=noArray() )
|
||||
|
||||
Updates a running average.
|
||||
|
||||
|
||||
@@ -150,7 +150,7 @@ Source ``image`` is modified by this function.
|
||||
|
||||
drawContours
|
||||
----------------
|
||||
.. cpp:function:: void drawContours( InputOutputArray image, InputArrayOfArrays contours, int contourIdx, const Scalar& color, int thickness=1, int lineType=8, InputArray hierarchy=None(), int maxLevel=INT_MAX, Point offset=Point() )
|
||||
.. cpp:function:: void drawContours( InputOutputArray image, InputArrayOfArrays contours, int contourIdx, const Scalar& color, int thickness=1, int lineType=8, InputArray hierarchy=noArray(), int maxLevel=INT_MAX, Point offset=Point() )
|
||||
|
||||
Draws contours outlines or filled contours.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user