Searched refs:REDUCE_SUM (Results 1 – 7 of 7) sorted by relevance
/external/opencv3/modules/cudaarithm/src/cuda/ |
D | reduce.cu | 69 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/ |
D | test_reduction.cu | 166 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/ |
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() 853 else if (reduceOp == cv::REDUCE_SUM) in CV_ENUM()
|
/external/opencv3/modules/cudaarithm/perf/ |
D | perf_reductions.cpp | 339 CV_ENUM(ReduceCode, REDUCE_SUM, REDUCE_AVG, REDUCE_MAX, REDUCE_MIN)
|
/external/opencv3/modules/core/include/opencv2/ |
D | core.hpp | 224 enum ReduceTypes { REDUCE_SUM = 0, //!< the output is the sum of all rows/columns of the matrix. enumerator
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 50 REDUCE_SUM = 0, field in Core
|
/external/opencv3/modules/core/misc/java/test/ |
D | CoreTest.java | 1667 Core.reduce(src, dst, 1, Core.REDUCE_SUM, CvType.CV_64F); in testReduceMatMatIntIntInt()
|