fix documentation warning
This commit is contained in:
@@ -7,7 +7,7 @@ ocl::abs
|
|||||||
------------------
|
------------------
|
||||||
Returns void
|
Returns void
|
||||||
|
|
||||||
.. ocv:function:: void ocl::absdiff(const oclMat& src, oclMat& dst)
|
.. ocv:function:: void ocl::abs(const oclMat& src, oclMat& dst)
|
||||||
|
|
||||||
:param src: input array.
|
:param src: input array.
|
||||||
|
|
||||||
|
|||||||
@@ -219,10 +219,10 @@ void cv::ocl::max(const oclMat &src1, const oclMat &src2, oclMat &dst)
|
|||||||
/////////////////////////////Abs, Absdiff ////////////////////////////////////
|
/////////////////////////////Abs, Absdiff ////////////////////////////////////
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
void cv::ocl::abs(const oclMat &src1, oclMat &dst)
|
void cv::ocl::abs(const oclMat &src, oclMat &dst)
|
||||||
{
|
{
|
||||||
// explicitly uses use_scalar (even if zero) so that the correct kernel is used
|
// explicitly uses use_scalar (even if zero) so that the correct kernel is used
|
||||||
arithmetic_run_generic(src1, oclMat(), Scalar(), oclMat(), dst, ABS, true);
|
arithmetic_run_generic(src, oclMat(), Scalar(), oclMat(), dst, ABS, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void cv::ocl::absdiff(const oclMat &src1, const oclMat &src2, oclMat &dst)
|
void cv::ocl::absdiff(const oclMat &src1, const oclMat &src2, oclMat &dst)
|
||||||
|
|||||||
Reference in New Issue
Block a user