From 55f389e8faa5925cb22f1283c7d2bd0fd9aa10d6 Mon Sep 17 00:00:00 2001 From: Ahmed Ashour Date: Wed, 5 Jun 2019 12:44:03 +0200 Subject: [PATCH] [moved from opencv] java: generated code to have javadoc original commit: https://github.com/opencv/opencv/commit/5c56b8ce9251050a4aadb9570ee598aaa14a2cf4 --- modules/cudaarithm/include/opencv2/cudaarithm.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/cudaarithm/include/opencv2/cudaarithm.hpp b/modules/cudaarithm/include/opencv2/cudaarithm.hpp index 37c0a999d..5b19ea0f6 100644 --- a/modules/cudaarithm/include/opencv2/cudaarithm.hpp +++ b/modules/cudaarithm/include/opencv2/cudaarithm.hpp @@ -505,9 +505,9 @@ CV_EXPORTS_W Ptr createLookUpTable(InputArray lut); @param src Source image. CV_8UC1 , CV_8UC4 , CV_32SC1 , and CV_32FC1 types are supported. @param dst Destination image with the same type as src. The size is Size(src.cols+left+right, src.rows+top+bottom) . -@param top -@param bottom -@param left +@param top Number of top pixels +@param bottom Number of bottom pixels +@param left Number of left pixels @param right Number of pixels in each direction from the source image rectangle to extrapolate. For example: top=1, bottom=1, left=1, right=1 mean that 1 pixel-wide border needs to be built. @param borderType Border type. See borderInterpolate for details. BORDER_REFLECT101 ,