Home
last modified time | relevance | path

Searched refs:CV_16S (Results 1 – 25 of 129) sorted by relevance

123456

/external/opencv3/modules/cudev/test/
Dtest_deriv.cu64 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/
Dtest_thresh.cpp80 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()
Dtest_moments.cpp96 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/
Dcvdef.h104 #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))
Dtraits.hpp204 depth = CV_16S,
298 template<> class TypeDepth<CV_16S>
300 enum { depth = CV_16S };
Dippasync.hpp74 depth == CV_16S ? HPP_DATA_TYPE_16S : in toHppType()
87 hppType == HPP_DATA_TYPE_16S ? CV_16S : in toCvType()
/external/opencv3/modules/imgproc/perf/
Dperf_sepfilters.cpp35 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/
Dcore+CvType.java8 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/
Dcuda_test.hpp220 …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/
Dfindstereocorrespondence.py10 disparity_left = cv.CreateMat(r, c, cv.CV_16S)
11 disparity_right = cv.CreateMat(r, c, cv.CV_16S)
/external/opencv3/modules/imgcodecs/src/
Dgrfmt_gdal.cpp186 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/
Dcanny.cpp76 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/
Dperf_convertTo.cpp16 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/
Dtest_blenders.cpp54 image1.convertTo(image1s, CV_16S); in TEST()
55 image2.convertTo(image2s, CV_16S); in TEST()
/external/opencv3/modules/imgproc/test/ocl/
Dtest_pyramids.cpp111 Values(CV_8U, CV_16U, CV_16S, CV_32F, CV_64F),
138 Values(CV_8U, CV_16U, CV_16S, CV_32F, CV_64F),
Dtest_boxfilter.cpp135 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/
Dutil.cpp78 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/
Dcvmat.cpp60 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/
Dblenders.cpp212 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/
Dtest_countnonzero.cpp96 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/
Dcxtables.cpp52 -1, -1, CV_8U, CV_8S, CV_16U, CV_16S, -1, -1,
/external/opencv3/modules/cudaimgproc/perf/
Dperf_histogram.cpp54 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/
Dtest_stereo.cpp109 …<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/
Dperf_stereo.cpp197 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/
DLaplace_Demo.cpp25 int ddepth = CV_16S; in main()

123456