/external/opencv3/modules/cudev/test/ |
D | test_deriv.cu | 64 cv::Sobel(src, dx_gold, CV_16S, 1, 0, 3, 1, 0, BORDER_REPLICATE); in TEST() 65 cv::Sobel(src, dy_gold, CV_16S, 0, 1, 3, 1, 0, BORDER_REPLICATE); in TEST() 84 cv::Scharr(src, dx_gold, CV_16S, 1, 0, 1, 0, BORDER_REPLICATE); in TEST() 85 cv::Scharr(src, dy_gold, CV_16S, 0, 1, 1, 0, BORDER_REPLICATE); in TEST() 104 cv::Laplacian(src, dst1_gold, CV_16S, 1, 1, 0, BORDER_REPLICATE); in TEST() 105 cv::Laplacian(src, dst3_gold, CV_16S, 3, 1, 0, BORDER_REPLICATE); in TEST()
|
/external/opencv3/modules/imgproc/test/ |
D | test_thresh.cpp | 80 depth = depth == 0 ? CV_8U : depth == 1 ? CV_16S : CV_32F; in get_test_array_types_and_sizes() 92 else if( depth == CV_16S ) in get_test_array_types_and_sizes() 136 else if( depth == CV_16S ) in test_threshold() 147 assert( depth == CV_8U || depth == CV_16S || depth == CV_32F ); in test_threshold() 161 else if( depth == CV_16S ) in test_threshold() 187 else if( depth == CV_16S ) in test_threshold() 216 else if( depth == CV_16S ) in test_threshold() 251 else if( depth == CV_16S ) in test_threshold() 286 else if( depth == CV_16S ) in test_threshold()
|
D | test_moments.cpp | 96 else if( depth == CV_16S ) in get_minmax_bounds() 115 depth = depth == 0 ? CV_8U : depth == 1 ? CV_16U : depth == 2 ? CV_16S : CV_32F; in get_test_array_types_and_sizes() 226 else if( depth == CV_16S ) in prepare_to_validation() 272 else if( depth == CV_16S ) in prepare_to_validation()
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | cvdef.h | 104 #define CV_16S 3 macro 134 #define CV_16SC1 CV_MAKETYPE(CV_16S,1) 135 #define CV_16SC2 CV_MAKETYPE(CV_16S,2) 136 #define CV_16SC3 CV_MAKETYPE(CV_16S,3) 137 #define CV_16SC4 CV_MAKETYPE(CV_16S,4) 138 #define CV_16SC(n) CV_MAKETYPE(CV_16S,(n))
|
D | traits.hpp | 204 depth = CV_16S, 298 template<> class TypeDepth<CV_16S> 300 enum { depth = CV_16S };
|
D | ippasync.hpp | 74 depth == CV_16S ? HPP_DATA_TYPE_16S : in toHppType() 87 hppType == HPP_DATA_TYPE_16S ? CV_16S : in toCvType()
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_sepfilters.cpp | 35 testing::Values(CV_16S, CV_32F), 60 testing::Values(CV_16S, CV_32F), 88 testing::Values(CV_16S, CV_32F), 113 testing::Values(CV_16S, CV_32F), 143 testing::Values(CV_16S, CV_32F), 168 testing::Values(CV_16S, CV_32F), 196 testing::Values(CV_16S, CV_32F), 221 testing::Values(CV_16S, CV_32F),
|
/external/opencv3/modules/core/misc/java/src/java/ |
D | core+CvType.java | 8 CV_16U = 2, CV_16S = 3, field in CvType 51 return makeType(CV_16S, ch); in CV_16SC() 84 case CV_16S: in ELEM_SIZE() 109 case CV_16S: in typeToString()
|
/external/opencv3/modules/ts/include/opencv2/ts/ |
D | cuda_test.hpp | 220 …ing::Values(MatDepth(CV_8U), MatDepth(CV_8S), MatDepth(CV_16U), MatDepth(CV_16S), MatDepth(CV_32S)… 224 std::make_pair(MatDepth(CV_8U), MatDepth(CV_16S)), \ 234 std::make_pair(MatDepth(CV_16S), MatDepth(CV_16S)), \ 235 std::make_pair(MatDepth(CV_16S), MatDepth(CV_32S)), \ 236 std::make_pair(MatDepth(CV_16S), MatDepth(CV_32F)), \ 237 std::make_pair(MatDepth(CV_16S), MatDepth(CV_64F)), \
|
/external/opencv3/modules/python/test/ |
D | findstereocorrespondence.py | 10 disparity_left = cv.CreateMat(r, c, cv.CV_16S) 11 disparity_right = cv.CreateMat(r, c, cv.CV_16S)
|
/external/opencv3/modules/imgcodecs/src/ |
D | grfmt_gdal.cpp | 186 if( gdalType == GDT_Byte && (cvDepth == CV_16U || cvDepth == CV_16S)){ in range_cast() 202 ( cvDepth == CV_16U || cvDepth == CV_16S )){ in range_cast() 230 else if( image.depth() == CV_16S ){ image.at<short>(row,col) = newValue; } in write_pixel() 241 …else if( image.depth() == CV_16S ){ image.at<Vec3s>(row,col) = Vec3s(newValue,newValue,newValue);… in write_pixel() 264 else if( image.depth() == CV_16S ){ image.at<Vec3s>(row,col)[channel] = newValue; } in write_pixel() 276 …else if( image.depth() == CV_16S && channel < 4 ){ image.at<Vec3s>(row,col)[channel] = newValue; … in write_pixel()
|
/external/opencv3/modules/imgproc/src/ |
D | canny.cpp | 76 Mat _dx(_src.rows, _src.cols, CV_16S); in ippCanny() 82 Mat _dy(_src.rows, _src.cols, CV_16S); in ippCanny() 172 Sobel(_src, dx, CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE); in ocl_Canny() 173 Sobel(_src, dy, CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE); in ocl_Canny() 278 …Sobel(src, tempdx.rowRange(1, tempdx.rows - 1), CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICAT… in operator ()() 279 …Sobel(src, tempdy.rowRange(1, tempdy.rows - 1), CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICAT… in operator ()() 293 CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE); in operator ()() 295 CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE); in operator ()() 309 CV_16S, 1, 0, aperture_size, 1, 0, BORDER_REPLICATE); in operator ()() 311 CV_16S, 0, 1, aperture_size, 1, 0, BORDER_REPLICATE); in operator ()() [all …]
|
/external/opencv3/modules/core/perf/ |
D | 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),
|
/external/opencv3/modules/stitching/test/ |
D | test_blenders.cpp | 54 image1.convertTo(image1s, CV_16S); in TEST() 55 image2.convertTo(image2s, CV_16S); in TEST()
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_pyramids.cpp | 111 Values(CV_8U, CV_16U, CV_16S, CV_32F, CV_64F), 138 Values(CV_8U, CV_16U, CV_16S, CV_32F, CV_64F),
|
D | test_boxfilter.cpp | 135 Values(CV_8U, CV_16U, CV_16S, CV_32S, CV_32F), 148 Values(CV_8U, CV_16U, CV_16S, CV_32F, CV_64F),
|
/external/opencv3/modules/cudastereo/src/ |
D | util.cpp | 78 CV_Assert( disp.type() == CV_8U || disp.type() == CV_16S ); in reprojectImageTo3D() 118 CV_Assert( src.type() == CV_8U || src.type() == CV_16S ); in drawColorDisp()
|
/external/opencv/cvaux/src/ |
D | cvmat.cpp | 60 case CV_16S: 92 case CV_16S: 122 case CV_16S: 156 case CV_16S: 198 case CV_16S: 849 case CV_16S: if( !fmt )
|
/external/opencv3/modules/stitching/src/ |
D | blenders.cpp | 212 CV_Assert(weight_type == CV_32F || weight_type == CV_16S); in MultiBandBlender() 325 if (can_use_gpu_ && img_with_border.depth() == CV_16S) in feed() 345 mask.getUMat().convertTo(weight_map, CV_16S); in feed() 565 img.getUMat().convertTo(pyr[0], CV_16S); in createLaplacePyr() 580 subtract(current, lvl_up, pyr[i-1], noArray(), CV_16S); in createLaplacePyr() 589 subtract(current, lvl_up, pyr[num_levels-1], noArray(), CV_16S); in createLaplacePyr() 591 downNext.convertTo(pyr[num_levels], CV_16S); in createLaplacePyr()
|
/external/opencv3/modules/core/test/ |
D | test_countnonzero.cpp | 96 case CV_16S: { src.at<short>(i, j) = cv::randu<short>(); break; } in generate_src_data() 119 …case CV_16S: { if (!src.at<short>(i, j)) {src.at<short>(i, j) = cv::randu<short>(); n += abs(sign(… in generate_src_data() 155 else if (current_type == CV_16S) result += abs(sign(src.at<short>(i, j))); in get_count_non_zero()
|
/external/opencv/cxcore/src/ |
D | cxtables.cpp | 52 -1, -1, CV_8U, CV_8S, CV_16U, CV_16S, -1, -1,
|
/external/opencv3/modules/cudaimgproc/perf/ |
D | perf_histogram.cpp | 54 Values(CV_8U, CV_16U, CV_16S))) in PERF_TEST_P() argument 92 Values(CV_8U, CV_16U, CV_16S))) in PERF_TEST_P() argument
|
/external/opencv3/modules/cudastereo/test/ |
D | test_stereo.cpp | 109 …<cv::cuda::StereoBeliefPropagation> bp = cv::cuda::createStereoBeliefPropagation(64, 8, 2, CV_16S); in CUDA_TEST_P() 209 testing::Values(MatDepth(CV_8U), MatDepth(CV_16S)),
|
/external/opencv3/modules/cudastereo/perf/ |
D | perf_stereo.cpp | 197 Values(CV_8U, CV_16S))) in PERF_TEST_P() argument 232 Values(CV_8U, CV_16S))) in PERF_TEST_P() argument
|
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/ |
D | Laplace_Demo.cpp | 25 int ddepth = CV_16S; in main()
|