Home
last modified time | relevance | path

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

/external/opencv3/modules/cudaarithm/src/cuda/
Dreduce.cu69 case cv::REDUCE_SUM: in reduceToRowImpl()
95 case cv::REDUCE_SUM: in reduceToColumnImpl_()
135 …CV_Assert( reduceOp == REDUCE_SUM || reduceOp == REDUCE_AVG || reduceOp == REDUCE_MAX || reduceOp … in reduce()
/external/opencv3/modules/cudev/test/
Dtest_reduction.cu166 cv::reduce(src, dst_gold, 0, REDUCE_SUM, CV_32S); in TEST()
230 cv::reduce(src, dst_gold, 1, REDUCE_SUM, CV_32S); in TEST()
/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()
853 else if (reduceOp == cv::REDUCE_SUM) in CV_ENUM()
/external/opencv3/modules/cudaarithm/perf/
Dperf_reductions.cpp339 CV_ENUM(ReduceCode, REDUCE_SUM, REDUCE_AVG, REDUCE_MAX, REDUCE_MIN)
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp224 enum ReduceTypes { REDUCE_SUM = 0, //!< the output is the sum of all rows/columns of the matrix. enumerator
/external/opencv3/modules/java/src/
Dcore+Core.java50 REDUCE_SUM = 0, field in Core
/external/opencv3/modules/core/misc/java/test/
DCoreTest.java1667 Core.reduce(src, dst, 1, Core.REDUCE_SUM, CvType.CV_64F); in testReduceMatMatIntIntInt()