Searched refs:REDUCE_AVG (Results 1 – 7 of 7) sorted by relevance
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | reduce.cu | 73 case cv::REDUCE_AVG: in reduceToRowImpl() 99 case cv::REDUCE_AVG: in reduceToColumnImpl_() 135 …CV_Assert( reduceOp == REDUCE_SUM || reduceOp == REDUCE_AVG || reduceOp == REDUCE_MAX || reduceOp … in reduce()
|
/external/opencv3/modules/cudev/test/ |
D | test_reduction.cu | 182 cv::reduce(src, dst_gold, 0, REDUCE_AVG, CV_32F); in TEST() 249 cv::reduce(src, dst_gold, 1, REDUCE_AVG, CV_32F); in TEST()
|
/external/opencv3/modules/cudaarithm/perf/ |
D | perf_reductions.cpp | 339 CV_ENUM(ReduceCode, REDUCE_SUM, REDUCE_AVG, REDUCE_MAX, REDUCE_MIN)
|
/external/opencv3/modules/cudaarithm/test/ |
D | test_reductions.cpp | 822 CV_ENUM(ReduceCode, cv::REDUCE_SUM, cv::REDUCE_AVG, cv::REDUCE_MAX, cv::REDUCE_MIN) in CV_ENUM() argument 823 #define ALL_REDUCE_CODES testing::Values(ReduceCode(cv::REDUCE_SUM), ReduceCode(cv::REDUCE_AVG), Re… in CV_ENUM()
|
/external/opencv3/modules/core/include/opencv2/ |
D | core.hpp | 225 … REDUCE_AVG = 1, //!< the output is the mean vector of all rows/columns of the matrix. enumerator
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 51 REDUCE_AVG = 1, field in Core
|
/external/opencv3/modules/core/misc/java/test/ |
D | CoreTest.java | 1649 Core.reduce(src, dst, 0, Core.REDUCE_AVG); in testReduceMatMatIntInt()
|