HomeSort by relevance Sort by last modified time
    Searched refs:CV_32S (Results 1 - 25 of 186) sorted by null

1 2 3 4 5 6 7 8

  /external/opencv3/modules/core/perf/
perf_reduce.cpp 28 if( CV_MAT_DEPTH(matType) < CV_32S && (reduceOp == CV_REDUCE_SUM || reduceOp == CV_REDUCE_AVG) )
29 ddepth = CV_32S;
56 if( CV_MAT_DEPTH(matType)< CV_32S && (reduceOp == CV_REDUCE_SUM || reduceOp == CV_REDUCE_AVG) )
57 ddepth = CV_32S;
perf_convertTo.cpp 16 testing::Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F),
17 testing::Values(CV_8U, CV_8S, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F),
perf_addWeighted.cpp 26 if (CV_MAT_DEPTH(type) == CV_32S)
perf_merge.cpp 16 testing::Values(CV_8U, CV_16S, CV_32S, CV_32F, CV_64F),
perf_arithm.cpp 83 if (CV_MAT_DEPTH(type) == CV_32S)
105 if (CV_MAT_DEPTH(type) == CV_32S)
128 if (CV_MAT_DEPTH(type) == CV_32S)
150 if (CV_MAT_DEPTH(type) == CV_32S)
172 if (CV_MAT_DEPTH(type) == CV_32S)
194 if (CV_MAT_DEPTH(type) == CV_32S)
213 if (CV_MAT_DEPTH(type) == CV_32S)
234 if (CV_MAT_DEPTH(type) == CV_32S)
  /external/opencv3/modules/cudaarithm/src/cuda/
bitwise_scalar.cu 139 {BitScalar<uint, bitScalarOp<bit_and, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiAndC_32s_C3R>::call, NppBitwiseC<CV_32S, 4, nppiAndC_32s_C4R>::call},
140 {BitScalar<uint, bitScalarOp<bit_and, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiAndC_32s_C3R>::call, NppBitwiseC<CV_32S, 4, nppiAndC_32s_C4R>::call}
147 {BitScalar<uint, bitScalarOp<bit_or, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiOrC_32s_C3R>::call, NppBitwiseC<CV_32S, 4, nppiOrC_32s_C4R>::call},
148 {BitScalar<uint, bitScalarOp<bit_or, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiOrC_32s_C3R>::call, NppBitwiseC<CV_32S, 4, nppiOrC_32s_C4R>::call}
155 {BitScalar<uint, bitScalarOp<bit_xor, uint> >::call , 0, NppBitwiseC<CV_32S, 3, nppiXorC_32s_C3R>::call, NppBitwiseC<CV_32S, 4, nppiXorC_32s_C4R>::call}
    [all...]
  /external/opencv3/modules/imgproc/perf/
perf_pyramids.cpp 17 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5;
18 perf::ERROR_TYPE error_type = CV_MAT_DEPTH(matType) <= CV_32S ? ERROR_ABSOLUTE : ERROR_RELATIVE;
38 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5;
39 perf::ERROR_TYPE error_type = CV_MAT_DEPTH(matType) <= CV_32S ? ERROR_ABSOLUTE : ERROR_RELATIVE;
60 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5;
61 perf::ERROR_TYPE error_type = CV_MAT_DEPTH(matType) <= CV_32S ? ERROR_ABSOLUTE : ERROR_RELATIVE;
perf_integral.cpp 16 testing::Values(CV_32S, CV_32F, CV_64F)
38 testing::Values(CV_32S, CV_32F)
63 testing::Values( CV_32S, CV_32F )
83 SANITY_CHECK(tilted, 1e-6, tilted.depth() > CV_32S ? ERROR_RELATIVE : ERROR_ABSOLUTE);
  /external/opencv3/modules/core/misc/java/src/java/
core+CvType.java 9 CV_32S = 4,
55 return makeType(CV_32S, ch);
86 case CV_32S:
112 case CV_32S:
113 s = "CV_32S";
  /external/opencv3/modules/cudaarithm/test/
test_stream.cpp 113 src.createMatHeader().convertTo(dst_gold, CV_32S);
123 d_src.convertTo(d_dst, CV_32S, stream);
140 d_src.convertTo(d_dst, CV_32S, stream);
146 src.createMatHeader().convertTo(dst_gold, CV_32S);
  /external/opencv3/modules/imgproc/test/ocl/
test_boxfilter.cpp 112 Near(depth <= CV_32S ? 1 : 3e-3);
124 int ddepth = depth == CV_8U ? CV_32S : CV_64F;
129 Near(depth <= CV_32S ? 1 : 7e-2);
135 Values(CV_8U, CV_16U, CV_16S, CV_32S, CV_32F),
  /external/opencv3/modules/cudaarithm/src/
core.cpp 76 template<> struct NppTypeTraits<CV_32S> { typedef Npp32s npp_t; };
118 {NppMirror<CV_32S, nppiMirror_32s_C1R>::call, 0, NppMirror<CV_32S, nppiMirror_32s_C3R>::call, NppMirror<CV_32S, nppiMirror_32s_C4R>::call},
124 CV_Assert(src.depth() == CV_8U || src.depth() == CV_16U || src.depth() == CV_32S || src.depth() == CV_32F);
  /external/opencv3/modules/imgproc/perf/opencl/
perf_pyramid.cpp 66 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5;
90 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5;
113 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-5;
perf_blend.cpp 64 const double eps = CV_MAT_DEPTH(srcType) <= CV_32S ? 1.0 : 0.2;
perf_imgwarp.cpp 75 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : interpolation == INTER_CUBIC ? 2e-3 : 1e-4;
107 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4;
134 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4;
158 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4;
183 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : 1e-4;
  /external/opencv3/modules/ts/src/
ocl_perf.cpp 75 else if (dst.depth() == CV_16S || dst.depth() == CV_32S)
  /external/opencv3/modules/core/include/opencv2/core/
cvdef.h 105 #define CV_32S 4
140 #define CV_32SC1 CV_MAKETYPE(CV_32S,1)
141 #define CV_32SC2 CV_MAKETYPE(CV_32S,2)
142 #define CV_32SC3 CV_MAKETYPE(CV_32S,3)
143 #define CV_32SC4 CV_MAKETYPE(CV_32S,4)
144 #define CV_32SC(n) CV_MAKETYPE(CV_32S,(n))
traits.hpp 219 depth = CV_32S,
304 template<> class TypeDepth<CV_32S>
306 enum { depth = CV_32S };
ippasync.hpp 75 depth == CV_32S ? HPP_DATA_TYPE_32S :
88 hppType == HPP_DATA_TYPE_32S ? CV_32S :
98 input matrix. Supports CV_8U, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F.
135 Supports CV_8U, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F.
156 Supports CV_8U, CV_16U, CV_16S, CV_32S, CV_32F, CV_64F.
  /external/opencv3/modules/cudawarping/src/
warp.cpp 258 {NppWarp<CV_32S, nppiWarpAffine_32s_C1R>::call, 0, NppWarp<CV_32S, nppiWarpAffine_32s_C3R>::call, NppWarp<CV_32S, nppiWarpAffine_32s_C4R>::call},
266 {NppWarp<CV_32S, nppiWarpAffineBack_32s_C1R>::call, 0, NppWarp<CV_32S, nppiWarpAffineBack_32s_C3R>::call, NppWarp<CV_32S, nppiWarpAffineBack_32s_C4R>::call},
397 {NppWarp<CV_32S, nppiWarpPerspective_32s_C1R>::call, 0, NppWarp<CV_32S, nppiWarpPerspective_32s_C3R>::call, NppWarp<CV_32S, nppiWarpPerspective_32s_C4R>::call},
405 {NppWarp<CV_32S, nppiWarpPerspectiveBack_32s_C1R>::call, 0, NppWarp<CV_32S, nppiWarpPerspectiveBack_32s_C3R>::call (…)
    [all...]
  /external/opencv3/modules/ml/test/
test_lr.cpp 71 _p_labels.convertTo(_p_labels_temp, CV_32S);
72 _o_labels.convertTo(_o_labels_temp, CV_32S);
198 comp_learnt_mats.convertTo(comp_learnt_mats, CV_32S);
test_svmtrainauto.cpp 61 cv::Mat responses = cv::Mat::zeros( datasize, 1, CV_32S );
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_opencl.hpp 70 ocl::typeToStr(CV_32SC(hn)), ocl::convertTypeStr(depth, CV_32S, hn, buf),
114 depth == CV_8U ? ocl::convertTypeStr(CV_32S, CV_32S, hn, buf[0]) :
118 depth == CV_8U ? ocl::convertTypeStr(depth, CV_32S, cn, buf[1]) :
122 ocl::convertTypeStr(depth, CV_32S, cn, buf[2]), cn,
124 ocl::convertTypeStr(CV_32S, depth, cn, buf[3]),
  /external/opencv3/modules/ts/include/opencv2/ts/
cuda_test.hpp 220 #define ALL_DEPTH testing::Values(MatDepth(CV_8U), MatDepth(CV_8S), MatDepth(CV_16U), MatDepth(CV_16S), MatDepth(CV_32S), MatDepth(CV_32F), MatDepth(CV_64F))
225 std::make_pair(MatDepth(CV_8U), MatDepth(CV_32S)), \
230 std::make_pair(MatDepth(CV_16U), MatDepth(CV_32S)), \
235 std::make_pair(MatDepth(CV_16S), MatDepth(CV_32S)), \
239 std::make_pair(MatDepth(CV_32S), MatDepth(CV_32S)), \
240 std::make_pair(MatDepth(CV_32S), MatDepth(CV_32F)), \
241 std::make_pair(MatDepth(CV_32S), MatDepth(CV_64F)), \
  /external/opencv3/modules/imgproc/test/
test_connectedcomponents.cpp 75 int nLabels = connectedComponents(bw, labelImage, 8, CV_32S);

Completed in 582 milliseconds

1 2 3 4 5 6 7 8