Home
last modified time | relevance | path

Searched refs:CV_32SC (Results 1 – 8 of 8) sorted by relevance

/external/opencv3/modules/core/misc/java/src/java/
Dcore+CvType.java20 … CV_32SC1 = CV_32SC(1), CV_32SC2 = CV_32SC(2), CV_32SC3 = CV_32SC(3), CV_32SC4 = CV_32SC(4),
54 public static final int CV_32SC(int ch) { in CV_32SC() method in CvType
/external/opencv3/modules/photo/src/
Dfast_nlmeans_denoising_opencl.hpp63 almostDist2Weight.create(1, almostMaxDist, CV_32SC(hn == 3 ? 4 : hn)); in ocl_calcAlmostDist2Weight()
70 ocl::typeToStr(CV_32SC(hn)), ocl::convertTypeStr(depth, CV_32S, hn, buf), in ocl_calcAlmostDist2Weight()
110 ocl::typeToStr(type), ocl::typeToStr(CV_32SC(cn)), in ocl_fastNlMeansDenoising()
111 ocl::typeToStr(CV_32SC(hn)), in ocl_fastNlMeansDenoising()
112 depth == CV_8U ? ocl::typeToStr(CV_32SC(hn)) : in ocl_fastNlMeansDenoising()
116 depth == CV_8U ? ocl::typeToStr(CV_32SC(cn)) : in ocl_fastNlMeansDenoising()
168 UMat buffer(upColSumSize + colSumSize, CV_32SC(cn)); in ocl_fastNlMeansDenoising()
/external/opencv3/modules/core/misc/java/test/
DCvTypeTest.java29 assertEquals(CvType.CV_32SC4, CvType.CV_32SC(4)); in testCV_32SC()
/external/opencv3/modules/core/include/opencv2/core/
Dcvdef.h144 #define CV_32SC(n) CV_MAKETYPE(CV_32S,(n)) macro
/external/opencv/cv/src/
Dcvstereogc.cpp888 state->ptrLeft = cvCreateMat( size.height, size.width, CV_32SC(pcn) ); in cvFindStereoCorrespondenceGC()
889 state->ptrRight = cvCreateMat( size.height, size.width, CV_32SC(pcn) ); in cvFindStereoCorrespondenceGC()
890 state->vtxBuf = cvCreateMat( 1, size.height*size.width*2, CV_32SC(vcn) ); in cvFindStereoCorrespondenceGC()
891 state->edgeBuf = cvCreateMat( 1, size.height*size.width*12 + 16, CV_32SC(ecn) ); in cvFindStereoCorrespondenceGC()
/external/opencv/cxcore/include/
Dcxtypes.h508 #define CV_32SC(n) CV_MAKETYPE(CV_32S,(n)) macro
/external/opencv3/modules/imgproc/src/
Dsmooth.cpp3033 radius, maxk, cn, ocl::typeToStr(CV_32SC(cn)), cnstr.c_str(), in ocl_bilateralFilter_8u()
/external/opencv3/modules/core/src/
Dmatrix.cpp3655 temp.create(dst.rows, dst.cols, CV_32SC(cn)); in reduce()