Searched refs:_coeffs (Results 1 – 4 of 4) sorted by relevance
/external/opencv3/modules/imgproc/src/ |
D | color.cpp | 1256 RGB2Gray(int _srccn, int blueIdx, const float* _coeffs) : srccn(_srccn) in RGB2Gray() 1259 memcpy( coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0]) ); in RGB2Gray() 1312 RGB2Gray(int _srccn, int blueIdx, const int* _coeffs) : in RGB2Gray() 1316 memcpy(coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0])); in RGB2Gray() 1403 RGB2Gray(int _srccn, int blueIdx, const float* _coeffs) : srccn(_srccn) in RGB2Gray() 1406 memcpy( coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0]) ); in RGB2Gray() 1473 RGB2Gray(int _srccn, int blueIdx, const int* _coeffs) : in RGB2Gray() 1477 memcpy(coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0])); in RGB2Gray() 1587 RGB2Gray(int _srccn, int blueIdx, const float* _coeffs) : srccn(_srccn) in RGB2Gray() 1590 memcpy( coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0]) ); in RGB2Gray() [all …]
|
D | filter.cpp | 3856 uchar* _coeffs = &coeffs[0]; in preprocess2DKernel() local 3869 _coeffs[k++] = val; in preprocess2DKernel() 3877 ((int*)_coeffs)[k++] = val; in preprocess2DKernel() 3885 ((float*)_coeffs)[k++] = val; in preprocess2DKernel() 3893 ((double*)_coeffs)[k++] = val; in preprocess2DKernel()
|
D | imgwarp.cpp | 5409 …IPPWarpAffineInvoker(Mat &_src, Mat &_dst, double (&_coeffs)[2][3], int &_interpolation, int _bord… in IPPWarpAffineInvoker() 5411 ParallelLoopBody(), src(_src), dst(_dst), mode(_interpolation), coeffs(_coeffs), in IPPWarpAffineInvoker() 6038 IPPWarpPerspectiveInvoker(Mat &_src, Mat &_dst, double (&_coeffs)[3][3], int &_interpolation, in IPPWarpPerspectiveInvoker() 6040 ParallelLoopBody(), src(_src), dst(_dst), mode(_interpolation), coeffs(_coeffs), in IPPWarpPerspectiveInvoker()
|
/external/opencv3/modules/core/src/ |
D | mathfuncs.cpp | 1908 int cv::solveCubic( InputArray _coeffs, OutputArray _roots ) in solveCubic() argument 1911 Mat coeffs = _coeffs.getMat(); in solveCubic() 2120 cv::Mat _coeffs = cv::cvarrToMat(coeffs), _roots = cv::cvarrToMat(roots), _roots0 = _roots; in cvSolveCubic() local 2121 int nroots = cv::solveCubic(_coeffs, _roots); in cvSolveCubic()
|