Searched defs:dstmat (Results 1 - 3 of 3) sorted by relevance
/external/opencv/cv/src/ |
H A D | cvhistogram.cpp | 2152 CvMat dststub, *dstmat; local 2182 CV_CALL( dstmat = cvGetMat( dst, &dststub, 0, 0 )); 2183 if( CV_MAT_TYPE( dstmat->type ) != CV_32FC1 ) 2186 if( dstmat->cols != img[0]->width - patch_size.width + 1 || 2187 dstmat->rows != img[0]->height - patch_size.height + 1 ) 2192 size = cvGetMatSize(dstmat); 2210 CV_MAT_ELEM( *dstmat, float, y, x ) = (float)result;
|
/external/opencv3/modules/imgproc/src/ |
H A D | demosaicing.cpp | 509 ParallelLoopBody(), srcmat(_srcmat), dstmat(_dstmat), Start_with_green(_start_with_green), 522 T* dst0 = (T*)dstmat.data; 523 int dst_step = (int)(dstmat.step/sizeof(T)); 602 Mat dstmat; member in class:cv::Bayer2Gray_Invoker 610 static void Bayer2Gray_( const Mat& srcmat, Mat& dstmat, int code ) argument 631 Bayer2Gray_Invoker<T, SIMDInterpolator> invoker(srcmat, dstmat, 633 parallel_for_(range, invoker, dstmat.total()/static_cast<double>(1<<16)); 636 size = dstmat.size(); 637 T* dst0 = dstmat.ptr<T>(); 638 int dst_step = (int)(dstmat 872 Mat dstmat; member in class:cv::Bayer2RGB_Invoker 878 Bayer2RGB_( const Mat& srcmat, Mat& dstmat, int code ) argument 913 Bayer2RGB_VNG_8u( const Mat& srcmat, Mat& dstmat, int code ) argument [all...] |
/external/opencv3/modules/core/src/ |
H A D | matmul.cpp | 2582 MulTransposedR( const Mat& srcmat, Mat& dstmat, const Mat& deltamat, double scale ) argument 2586 dT* dst = dstmat.ptr<dT>(); 2589 size_t dststep = dstmat.step/sizeof(dst[0]); 2701 MulTransposedL( const Mat& srcmat, Mat& dstmat, const Mat& deltamat, double scale ) argument 2705 dT* dst = dstmat.ptr<dT>(); 2708 size_t dststep = dstmat.step/sizeof(dst[0]);
|
Completed in 436 milliseconds