HomeSort by relevance Sort by last modified time
    Searched full:mattype (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/opencv3/modules/imgproc/perf/
perf_pyramids.cpp 16 int matType = get<1>(GetParam());
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;
20 Mat src(sz, matType);
21 Mat dst((sz.height + 1)/2, (sz.width + 1)/2, matType);
37 int matType = get<1>(GetParam());
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;
41 Mat src(sz, matType);
42 Mat dst(sz.height*2, sz.width*2, matType);
    [all...]
perf_resize.cpp 9 typedef tr1::tuple<MatType, Size, Size> MatInfo_Size_Size_t;
20 int matType = get<0>(GetParam());
24 cv::Mat src(from, matType), dst(to, matType);
47 int matType = get<0>(GetParam());
51 cv::Mat src(from, matType), dst(to, matType);
65 typedef tr1::tuple<MatType, Size, int> MatInfo_Size_Scale_t;
76 int matType = get<0>(GetParam());
83 cv::Mat src(from, matType);
    [all...]
perf_integral.cpp 9 typedef std::tr1::tuple<Size, MatType, MatDepth> Size_MatType_OutMatDepth_t;
21 int matType = get<1>(GetParam());
24 Mat src(sz, matType);
43 int matType = get<1>(GetParam());
46 Mat src(sz, matType);
68 int matType = get<1>(GetParam());
71 Mat src(sz, matType);
  /external/eigen/bench/
benchmarkX.cpp 10 #ifndef MATTYPE
11 #define MATTYPE MatrixXLd
24 MATTYPE I = MATTYPE::Ones(MATSIZE,MATSIZE);
25 MATTYPE m(MATSIZE,MATSIZE);
  /external/opencv3/modules/cudawarping/test/
test_pyramids.cpp 52 PARAM_TEST_CASE(PyrDown, cv::cuda::DeviceInfo, cv::Size, MatType, UseRoi)
86 testing::Values(MatType(CV_8UC1), MatType(CV_8UC3), MatType(CV_8UC4), MatType(CV_16UC1), MatType(CV_16UC3), MatType(CV_16UC4), MatType(CV_32FC1), MatType(CV_32FC3), MatType(CV_32FC4))
    [all...]
test_resize.cpp 120 PARAM_TEST_CASE(Resize, cv::cuda::DeviceInfo, cv::Size, MatType, double, Interpolation, UseRoi)
158 testing::Values(MatType(CV_8UC1), MatType(CV_8UC3), MatType(CV_8UC4), MatType(CV_16UC1), MatType(CV_16UC3), MatType(CV_16UC4), MatType(CV_32FC1), MatType(CV_32FC3), MatType(CV_32FC4))
    [all...]
test_warp_affine.cpp 183 PARAM_TEST_CASE(WarpAffine, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi)
228 testing::Values(MatType(CV_8UC1), MatType(CV_8UC3), MatType(CV_8UC4), MatType(CV_16UC1), MatType(CV_16UC3), MatType(CV_16UC4), MatType(CV_32FC1), MatType(CV_32FC3), MatType(CV_32FC4))
    [all...]
test_warp_perspective.cpp 186 PARAM_TEST_CASE(WarpPerspective, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi)
231 testing::Values(MatType(CV_8UC1), MatType(CV_8UC3), MatType(CV_8UC4), MatType(CV_16UC1), MatType(CV_16UC3), MatType(CV_16UC4), MatType(CV_32FC1), MatType(CV_32FC3), MatType(CV_32FC4))
    [all...]
test_remap.cpp 115 PARAM_TEST_CASE(Remap, cv::cuda::DeviceInfo, cv::Size, MatType, Interpolation, BorderType, UseRoi)
175 testing::Values(MatType(CV_8UC1), MatType(CV_8UC3), MatType(CV_8UC4), MatType(CV_32FC1), MatType(CV_32FC3), MatType(CV_32FC4)),
  /external/opencv3/modules/core/perf/
perf_reduce.cpp 11 typedef std::tr1::tuple<Size, MatType, ROp> Size_MatType_ROp_t;
24 int matType = get<1>(GetParam());
28 if( CV_MAT_DEPTH(matType) < CV_32S && (reduceOp == CV_REDUCE_SUM || reduceOp == CV_REDUCE_AVG) )
31 Mat src(sz, matType);
32 Mat vec(1, sz.width, ddepth < 0 ? matType : ddepth);
52 int matType = get<1>(GetParam());
56 if( CV_MAT_DEPTH(matType)< CV_32S && (reduceOp == CV_REDUCE_SUM || reduceOp == CV_REDUCE_AVG) )
59 Mat src(sz, matType);
60 Mat vec(sz.height, 1, ddepth < 0 ? matType : ddepth);
perf_minmaxloc.cpp 16 int matType = get<1>(GetParam());
18 Mat src(sz, matType);
22 if (matType == CV_8U)
24 else if (matType == CV_8S)
perf_norm.cpp 11 typedef std::tr1::tuple<Size, MatType, NormType> Size_MatType_NormType_t;
23 int matType = get<1>(GetParam());
26 Mat src(sz, matType);
45 int matType = get<1>(GetParam());
48 Mat src(sz, matType);
68 int matType = get<1>(GetParam());
71 Mat src1(sz, matType);
72 Mat src2(sz, matType);
91 int matType = get<1>(GetParam());
94 Mat src1(sz, matType);
    [all...]
perf_compare.cpp 11 typedef std::tr1::tuple<Size, MatType, CmpType> Size_MatType_CmpType_t;
46 int matType = get<1>(GetParam());
49 Mat src1(sz, matType);
51 Mat dst(sz, CV_8UC(CV_MAT_CN(matType)));
perf_stat.cpp 58 int matType = get<1>(GetParam());
60 Mat src(sz, matType);
75 int matType = get<1>(GetParam());
77 Mat src(sz, matType);
93 int matType = get<1>(GetParam());
95 Mat src(sz, matType);
perf_convertTo.cpp 9 typedef std::tr1::tuple<Size, MatType, MatType, int, double> Size_DepthSrc_DepthDst_Channels_alpha_t;
perf_dot.cpp 9 typedef tr1::tuple<MatType, int> MatType_Length_t;
perf_merge.cpp 9 typedef std::tr1::tuple<Size, MatType, int> Size_SrcDepth_DstChannels_t;
perf_split.cpp 9 typedef std::tr1::tuple<Size, MatType, int> Size_Depth_Channels_t;
  /external/opencv3/modules/cudaarithm/test/
test_core.cpp 184 PARAM_TEST_CASE(Transpose, cv::cuda::DeviceInfo, cv::Size, MatType, UseRoi)
233 testing::Values(MatType(CV_8UC1),
234 MatType(CV_8UC4),
235 MatType(CV_16UC2),
236 MatType(CV_16SC2),
237 MatType(CV_32SC1),
238 MatType(CV_32SC2),
239 MatType(CV_64FC1)),
249 PARAM_TEST_CASE(Flip, cv::cuda::DeviceInfo, cv::Size, MatType, FlipCode, UseRoi)
285 testing::Values(MatType(CV_8UC1)
    [all...]
  /external/eigen/test/
special_numbers.cpp 14 typedef Matrix<Scalar, Dynamic,Dynamic> MatType;
22 MatType m1 = MatType::Random(rows,cols),
23 mnan = MatType::Random(rows,cols),
24 minf = MatType::Random(rows,cols),
25 mboth = MatType::Random(rows,cols);
  /external/opencv3/modules/imgproc/test/ocl/
test_warp.cpp 70 PARAM_TEST_CASE(WarpTestBase, MatType, Interpolation, bool, bool)
168 PARAM_TEST_CASE(Resize, MatType, double, double, Interpolation, bool, int)
239 PARAM_TEST_CASE(Remap, MatDepth, Channels, std::pair<MatType, MatType>, BorderType, bool)
359 Values((MatType)CV_8UC1, CV_8UC4, CV_32FC1, CV_32FC4),
369 Values(std::pair<MatType, MatType>((MatType)CV_32FC1, (MatType)CV_32FC1),
370 std::pair<MatType, MatType>((MatType)CV_16SC2, (MatType)CV_16UC1)
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BasicPreconditioners.h 45 template<typename MatType>
46 DiagonalPreconditioner(const MatType& mat) : m_invdiag(mat.cols())
54 template<typename MatType>
55 DiagonalPreconditioner& analyzePattern(const MatType& )
60 template<typename MatType>
61 DiagonalPreconditioner& factorize(const MatType& mat)
66 typename MatType::InnerIterator it(mat,j);
77 template<typename MatType>
78 DiagonalPreconditioner& compute(const MatType& mat)
  /external/vulkan-validation-layers/libs/glm/detail/
func_matrix.hpp 125 /// @tparam matType Floating-point matrix types.
129 template <typename T, precision P, template <typename, precision> class matType>
130 GLM_FUNC_DECL matType<T, P> matrixCompMult(matType<T, P> const & x, matType<T, P> const & y);
136 /// @tparam matType Floating-point matrix types.
141 /// @todo Clarify the declaration to specify that matType doesn't have to be provided when used.
147 /// @tparam matType Floating-point matrix types.
152 template <typename T, precision P, template <typename, precision> class matType>
153 GLM_FUNC_DECL typename matType<T, P>::transpose_type transpose(matType<T, P> const & x)
    [all...]
  /external/opencv3/modules/cudaimgproc/test/
test_bilateral_filter.cpp 52 PARAM_TEST_CASE(BilateralFilter, cv::cuda::DeviceInfo, cv::Size, MatType)
93 testing::Values(MatType(CV_8UC1), MatType(CV_8UC3), MatType(CV_32FC1), MatType(CV_32FC3))
test_blend.cpp 79 PARAM_TEST_CASE(Blend, cv::cuda::DeviceInfo, cv::Size, MatType, UseRoi)
121 testing::Values(MatType(CV_8UC1), MatType(CV_8UC3), MatType(CV_8UC4), MatType(CV_32FC1), MatType(CV_32FC3), MatType(CV_32FC4)),

Completed in 2320 milliseconds

1 2 3 4