Searched refs:CV_16S (Results 1 - 25 of 124) sorted by relevance

12345

/external/opencv3/modules/python/test/
H A Dfindstereocorrespondence.py10 disparity_left = cv.CreateMat(r, c, cv.CV_16S)
11 disparity_right = cv.CreateMat(r, c, cv.CV_16S)
/external/opencv3/modules/cudev/test/
H A Dtest_deriv.cu64 cv::Sobel(src, dx_gold, CV_16S, 1, 0, 3, 1, 0, BORDER_REPLICATE);
65 cv::Sobel(src, dy_gold, CV_16S, 0, 1, 3, 1, 0, BORDER_REPLICATE);
84 cv::Scharr(src, dx_gold, CV_16S, 1, 0, 1, 0, BORDER_REPLICATE);
85 cv::Scharr(src, dy_gold, CV_16S, 0, 1, 1, 0, BORDER_REPLICATE);
104 cv::Laplacian(src, dst1_gold, CV_16S, 1, 1, 0, BORDER_REPLICATE);
105 cv::Laplacian(src, dst3_gold, CV_16S, 3, 1, 0, BORDER_REPLICATE);
/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+CvType.java8 CV_16U = 2, CV_16S = 3, field in class:CvType
51 return makeType(CV_16S, ch);
84 case CV_16S:
109 case CV_16S:
110 s = "CV_16S";
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
H A DLaplace_Demo.cpp25 int ddepth = CV_16S;
H A DSobel_Demo.cpp26 int ddepth = CV_16S;
/external/opencv3/modules/core/perf/
H A 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),
H A Dperf_merge.cpp16 testing::Values(CV_8U, CV_16S, CV_32S, CV_32F, CV_64F),
H A Dperf_split.cpp16 testing::Values(CV_8U, CV_16S, CV_32F, CV_64F),
/external/opencv3/modules/imgproc/test/
H A Dtest_thresh.cpp80 depth = depth == 0 ? CV_8U : depth == 1 ? CV_16S : CV_32F;
92 else if( depth == CV_16S )
136 else if( depth == CV_16S )
147 assert( depth == CV_8U || depth == CV_16S || depth == CV_32F );
161 else if( depth == CV_16S )
187 else if( depth == CV_16S )
216 else if( depth == CV_16S )
251 else if( depth == CV_16S )
286 else if( depth == CV_16S )
/external/opencv3/modules/imgproc/perf/
H A Dperf_moments.cpp23 testing::Values(CV_16U, CV_16S, CV_32F, CV_64F),
H A 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/ts/src/
H A Docl_perf.cpp75 else if (dst.depth() == CV_16S || dst.depth() == CV_32S)
/external/opencv3/modules/stitching/test/
H A Dtest_blenders.cpp54 image1.convertTo(image1s, CV_16S);
55 image2.convertTo(image2s, CV_16S);
/external/opencv3/modules/core/include/opencv2/core/
H A 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))
H A Dtraits.hpp204 depth = CV_16S,
298 template<> class TypeDepth<CV_16S>
300 enum { depth = CV_16S };
H A Dippasync.hpp74 depth == CV_16S ? HPP_DATA_TYPE_16S :
87 hppType == HPP_DATA_TYPE_16S ? CV_16S :
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/cudastereo/src/
H A Dutil.cpp78 CV_Assert( disp.type() == CV_8U || disp.type() == CV_16S );
118 CV_Assert( src.type() == CV_8U || src.type() == CV_16S );
/external/opencv3/modules/imgproc/test/ocl/
H A 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),
H A 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),
H A Dtest_medianfilter.cpp104 Values(CV_8U, CV_16U, CV_16S, CV_32F),
/external/opencv3/modules/core/misc/java/test/
H A DCvTypeTest.java50 assertTrue(CvType.isInteger(CvType.CV_16S));
/external/opencv3/samples/cpp/
H A Dlaplace.cpp76 Laplacian(smoothed, laplace, CV_16S, 5);
/external/opencv3/samples/cpp/tutorial_code/calib3d/stereoBM/
H A DSBM_Sample.cpp33 Mat imgDisparity16S = Mat( imgLeft.rows, imgLeft.cols, CV_16S );
/external/opencv3/modules/ts/include/opencv2/ts/
H A Dcuda_test.hpp220 #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))
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/imgcodecs/src/
H A Dgrfmt_gdal.cpp186 if( gdalType == GDT_Byte && (cvDepth == CV_16U || cvDepth == CV_16S)){
202 ( cvDepth == CV_16U || cvDepth == CV_16S )){
230 else if( image.depth() == CV_16S ){ image.at<short>(row,col) = newValue; }
241 else if( image.depth() == CV_16S ){ image.at<Vec3s>(row,col) = Vec3s(newValue,newValue,newValue); }
264 else if( image.depth() == CV_16S ){ image.at<Vec3s>(row,col)[channel] = newValue; }
276 else if( image.depth() == CV_16S && channel < 4 ){ image.at<Vec3s>(row,col)[channel] = newValue; }

Completed in 791 milliseconds

12345