Home
last modified time | relevance | path

Searched refs:REDUCE_AVG (Results 1 – 7 of 7) sorted by relevance

/external/opencv3/modules/cudaarithm/src/cuda/
Dreduce.cu73 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/
Dtest_reduction.cu182 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/
Dperf_reductions.cpp339 CV_ENUM(ReduceCode, REDUCE_SUM, REDUCE_AVG, REDUCE_MAX, REDUCE_MIN)
/external/opencv3/modules/cudaarithm/test/
Dtest_reductions.cpp822 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/
Dcore.hpp225REDUCE_AVG = 1, //!< the output is the mean vector of all rows/columns of the matrix. enumerator
/external/opencv3/modules/java/src/
Dcore+Core.java51 REDUCE_AVG = 1, field in Core
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java1649 Core.reduce(src, dst, 0, Core.REDUCE_AVG); in testReduceMatMatIntInt()