Home
last modified time | relevance | path

Searched refs:coeffs0 (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/core/src/
Dmathfuncs.cpp2043 Mat coeffs0 = _coeffs0.getMat(); in solvePoly() local
2048 CV_Assert( coeffs0.rows == 1 || coeffs0.cols == 1 ); in solvePoly()
2050 int n0 = coeffs0.cols + coeffs0.rows - 2, n = n0; in solvePoly()
2057 …Mat coeffs1(coeffs0.size(), CV_MAKETYPE(CV_64F, coeffs0.channels()), coeffs0.channels() == 2 ? coe… in solvePoly()
2058 coeffs0.convertTo(coeffs1, coeffs1.type()); in solvePoly()
2059 if( coeffs0.channels() == 1 ) in solvePoly()
2101 if( coeffs0.channels() == 1 ) in solvePoly()
/external/opencv3/modules/imgproc/src/
Dcolor.cpp1258 static const float coeffs0[] = { 0.299f, 0.587f, 0.114f }; in RGB2Gray() local
1259 memcpy( coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0]) ); in RGB2Gray()
1281 const int coeffs0[] = { R2Y, G2Y, B2Y }; in RGB2Gray() local
1282 if(!coeffs) coeffs = coeffs0; in RGB2Gray()
1315 static const int coeffs0[] = { R2Y, G2Y, B2Y }; in RGB2Gray() local
1316 memcpy(coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0])); in RGB2Gray()
1405 static const float coeffs0[] = { 0.299f, 0.587f, 0.114f }; in RGB2Gray() local
1406 memcpy( coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0]) ); in RGB2Gray()
1476 static const int coeffs0[] = { R2Y, G2Y, B2Y }; in RGB2Gray() local
1477 memcpy(coeffs, _coeffs ? _coeffs : coeffs0, 3*sizeof(coeffs[0])); in RGB2Gray()
[all …]