mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 00:03:03 +04:00
Merge pull request #10003 from sturkmen72:documentation_updates
This commit is contained in:
@@ -359,7 +359,7 @@ CVAPI(CvMat*) cvGetSubRect( const CvArr* arr, CvMat* submat, CvRect rect );
|
||||
|
||||
/** @brief Returns array row or row span.
|
||||
|
||||
The functions return the header, corresponding to a specified row/row span of the input array.
|
||||
The function returns the header, corresponding to a specified row/row span of the input array.
|
||||
cvGetRow(arr, submat, row) is a shortcut for cvGetRows(arr, submat, row, row+1).
|
||||
@param arr Input array
|
||||
@param submat Pointer to the resulting sub-array header
|
||||
@@ -385,7 +385,7 @@ CV_INLINE CvMat* cvGetRow( const CvArr* arr, CvMat* submat, int row )
|
||||
|
||||
/** @brief Returns one of more array columns.
|
||||
|
||||
The functions return the header, corresponding to a specified column span of the input array. That
|
||||
The function returns the header, corresponding to a specified column span of the input array. That
|
||||
|
||||
is, no data is copied. Therefore, any modifications of the submatrix will affect the original array.
|
||||
If you need to copy the columns, use cvCloneMat. cvGetCol(arr, submat, col) is a shortcut for
|
||||
|
||||
@@ -58,8 +58,8 @@ namespace cv
|
||||
|
||||
/** @brief Template function for accurate conversion from one primitive type to another.
|
||||
|
||||
The functions saturate_cast resemble the standard C++ cast operations, such as static_cast\<T\>()
|
||||
and others. They perform an efficient and accurate conversion from one primitive type to another
|
||||
The function saturate_cast resembles the standard C++ cast operations, such as static_cast\<T\>()
|
||||
and others. It perform an efficient and accurate conversion from one primitive type to another
|
||||
(see the introduction chapter). saturate in the name means that when the input value v is out of the
|
||||
range of the target type, the result is not formed just by taking low bits of the input, but instead
|
||||
the value is clipped. For example:
|
||||
|
||||
@@ -2623,7 +2623,7 @@ CV_EXPORTS_AS(integral3) void integral( InputArray src, OutputArray sum,
|
||||
//! @addtogroup imgproc_motion
|
||||
//! @{
|
||||
|
||||
/** @brief Adds an image to the accumulator.
|
||||
/** @brief Adds an image to the accumulator image.
|
||||
|
||||
The function adds src or some of its elements to dst :
|
||||
|
||||
@@ -2631,7 +2631,7 @@ The function adds src or some of its elements to dst :
|
||||
|
||||
The function supports multi-channel images. Each channel is processed independently.
|
||||
|
||||
The functions accumulate\* can be used, for example, to collect statistics of a scene background
|
||||
The function cv::accumulate can be used, for example, to collect statistics of a scene background
|
||||
viewed by a still camera and for the further foreground-background segmentation.
|
||||
|
||||
@param src Input image of type CV_8UC(n), CV_16UC(n), CV_32FC(n) or CV_64FC(n), where n is a positive integer.
|
||||
@@ -2643,7 +2643,7 @@ viewed by a still camera and for the further foreground-background segmentation.
|
||||
CV_EXPORTS_W void accumulate( InputArray src, InputOutputArray dst,
|
||||
InputArray mask = noArray() );
|
||||
|
||||
/** @brief Adds the square of a source image to the accumulator.
|
||||
/** @brief Adds the square of a source image to the accumulator image.
|
||||
|
||||
The function adds the input image src or its selected region, raised to a power of 2, to the
|
||||
accumulator dst :
|
||||
@@ -2662,7 +2662,7 @@ floating-point.
|
||||
CV_EXPORTS_W void accumulateSquare( InputArray src, InputOutputArray dst,
|
||||
InputArray mask = noArray() );
|
||||
|
||||
/** @brief Adds the per-element product of two input images to the accumulator.
|
||||
/** @brief Adds the per-element product of two input images to the accumulator image.
|
||||
|
||||
The function adds the product of two images or their selected regions to the accumulator dst :
|
||||
|
||||
@@ -2672,7 +2672,7 @@ The function supports multi-channel images. Each channel is processed independen
|
||||
|
||||
@param src1 First input image, 1- or 3-channel, 8-bit or 32-bit floating point.
|
||||
@param src2 Second input image of the same type and the same size as src1 .
|
||||
@param dst %Accumulator with the same number of channels as input images, 32-bit or 64-bit
|
||||
@param dst %Accumulator image with the same number of channels as input images, 32-bit or 64-bit
|
||||
floating-point.
|
||||
@param mask Optional operation mask.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user