Home
last modified time | relevance | path

Searched refs:REDUCE_MAX (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/modules/cudaarithm/src/cuda/
Dreduce.cu81 case cv::REDUCE_MAX: in reduceToRowImpl()
107 case cv::REDUCE_MAX: in reduceToColumnImpl_()
135 …CV_Assert( reduceOp == REDUCE_SUM || reduceOp == REDUCE_AVG || reduceOp == REDUCE_MAX || reduceOp … in reduce()
/external/opencv3/modules/cudev/test/
Dtest_reduction.cu214 cv::reduce(src, dst_gold, 0, REDUCE_MAX); in TEST()
287 cv::reduce(src, dst_gold, 1, REDUCE_MAX); 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 …ReduceCode(cv::REDUCE_SUM), ReduceCode(cv::REDUCE_AVG), ReduceCode(cv::REDUCE_MAX), ReduceCode(cv:… in CV_ENUM()
851 if (reduceOp == cv::REDUCE_MAX || reduceOp == cv::REDUCE_MIN) 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.hpp226REDUCE_MAX = 2, //!< the output is the maximum (column/row-wise) of all rows/columns of the matrix. enumerator
/external/opencv3/modules/java/src/
Dcore+Core.java52 REDUCE_MAX = 2, field in Core