Home
last modified time | relevance | path

Searched defs:skipSmallImages (Results 1 – 11 of 11) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/core/include/opencv2/core/openvx/
H A Dovx_defs.hpp28 template <int kernel_id> inline bool skipSmallImages(int w, int h) { return w*h < 3840 * 2160; } in skipSmallImages() function
/dports/graphics/opencv/opencv-4.5.3/3rdparty/openvx/hal/
H A Dopenvx_hal.cpp85 template <int kernel_id> inline bool skipSmallImages(int w, int h) { return w*h < … in skipSmallImages() function
86 template <> inline bool skipSmallImages<VX_KERNEL_MULTIPLY>(int w, int h) { return w*h < … in skipSmallImages() function
87 template <> inline bool skipSmallImages<VX_KERNEL_COLOR_CONVERT>(int w, int h) { return w*h < … in skipSmallImages() function
88 template <> inline bool skipSmallImages<VX_KERNEL_INTEGRAL_IMAGE>(int w, int h) { return w*h < … in skipSmallImages() function
89 template <> inline bool skipSmallImages<VX_KERNEL_WARP_AFFINE>(int w, int h) { return w*h < … in skipSmallImages() function
90 template <> inline bool skipSmallImages<VX_KERNEL_WARP_PERSPECTIVE>(int w, int h) { return w*h < … in skipSmallImages() function
91 template <> inline bool skipSmallImages<VX_KERNEL_CUSTOM_CONVOLUTION>(int w, int h) { return w*h < … in skipSmallImages() function
/dports/graphics/opencv/opencv-4.5.3/modules/imgproc/src/
H A Dmedian_blur.dispatch.cpp117 …template <> inline bool skipSmallImages<VX_KERNEL_MEDIAN_3x3>(int w, int h) { return w*h < 1280 * … in skipSmallImages() function
H A Dbox_filter.dispatch.cpp320 …template <> inline bool skipSmallImages<VX_KERNEL_BOX_3x3>(int w, int h) { return w*h < 640 * 480;… in skipSmallImages() function
H A Dsmooth.dispatch.cpp392 …template <> inline bool skipSmallImages<VX_KERNEL_GAUSSIAN_3x3>(int w, int h) { return w*h < 320 *… in skipSmallImages() function
H A Dcanny.cpp766 …template <> inline bool skipSmallImages<VX_KERNEL_CANNY_EDGE_DETECTOR>(int w, int h) { return w*h … in skipSmallImages() function
H A Daccum.cpp245 …template <> inline bool skipSmallImages<VX_KERNEL_ACCUMULATE>(int w, int h) { return w*h < 120 * 6… in skipSmallImages() function
H A Dderiv.cpp189 …template <> inline bool skipSmallImages<VX_KERNEL_SOBEL_3x3>(int w, int h) { return w*h < 320 * 24… in skipSmallImages() function
H A Dhistogram.cpp843 …template <> inline bool skipSmallImages<VX_KERNEL_HISTOGRAM>(int w, int h) { return w*h < 2048 * 1… in skipSmallImages() function
/dports/graphics/opencv/opencv-4.5.3/modules/features2d/src/
H A Dfast.cpp376 …template <> inline bool skipSmallImages<VX_KERNEL_FAST_CORNERS>(int w, int h) { return w*h < 800 *… in skipSmallImages() function
/dports/graphics/opencv/opencv-4.5.3/modules/core/src/
H A Dminmax.cpp1111 …template <> inline bool skipSmallImages<VX_KERNEL_MINMAXLOC>(int w, int h) { return w*h < 3840 * 2… in skipSmallImages() function