Lines Matching refs:anchor
72 @anchor filter_depths
236 //!< \f[E_{ij} = \fork{1}{if i=\texttt{anchor.y} or j=\texttt{anchor.x}}{0}{otherwise}\f]
1118 @param anchor Anchor position within the element. The default value \f$(-1, -1)\f$ means that the
1119 anchor is at the center. Note that only the shape of a cross-shaped element depends on the anchor
1120 position. In other cases the anchor just regulates how much the result of the morphological
1123 CV_EXPORTS_W Mat getStructuringElement(int shape, Size ksize, Point anchor = Point(-1,-1));
1213 @param anchor anchor point; default value Point(-1,-1) means that the anchor is at the kernel
1220 Size ksize, Point anchor = Point(-1,-1),
1236 @param anchor kernel anchor point. The default value of Point(-1, -1) denotes that the anchor is at the kernel
1243 Size ksize, Point anchor = Point(-1, -1),
1253 The call `blur(src, dst, ksize, anchor, borderType)` is equivalent to `boxFilter(src, dst, src.type(),
1254 anchor, true, borderType)`.
1260 @param anchor anchor point; default value Point(-1,-1) means that the anchor is at the kernel
1266 Size ksize, Point anchor = Point(-1,-1),
1277 \f[\texttt{dst} (x,y) = \sum _{ \stackrel{0\leq x' < \texttt{kernel.cols},}{0\leq y' < \texttt{kernel.rows}} } \texttt{kernel} (x',y')* \texttt{src} (x+x'- \texttt{anchor.x} ,y+y'- \texttt{anchor.y} )\f]
1279 That is, the kernel is not mirrored around the anchor point. If you need a real convolution, flip
1280 the kernel using cv::flip and set the new anchor to `(kernel.cols - anchor.x - 1, kernel.rows -
1281 anchor.y - 1)`.
1292 @param anchor anchor of the kernel that indicates the relative position of a filtered point within
1293 the kernel; the anchor should lie within the kernel; default value (-1,-1) means that the anchor
1300 InputArray kernel, Point anchor = Point(-1,-1),
1314 @param anchor Anchor position within the kernel. The default value \f$(-1,-1)\f$ means that the anchor
1322 Point anchor = Point(-1,-1),
1859 @param anchor position of the anchor within the element; default value (-1, -1) means that the
1860 anchor is at the element center.
1867 Point anchor = Point(-1,-1), int iterations = 1,
1885 @param anchor position of the anchor within the element; default value (-1, -1) means that the
1886 anchor is at the element center.
1893 Point anchor = Point(-1,-1), int iterations = 1,
1909 @param anchor Anchor position with the kernel. Negative values mean that the anchor is at the
1920 Point anchor = Point(-1,-1), int iterations = 1,