HomeSort by relevance Sort by last modified time
    Searched refs:coeffs (Results 1 - 22 of 22) sorted by null

  /external/opencv/cvaux/src/
cvepilines.cpp 100 CvStereoLineCoeff* coeffs,
116 partX = coeffs->Xcoef + coeffs->XcoefA *alpha +
117 coeffs->XcoefB*betta + coeffs->XcoefAB*alphabetta;
119 partY = coeffs->Ycoef + coeffs->YcoefA *alpha +
120 coeffs->YcoefB*betta + coeffs->YcoefAB*alphabetta;
122 partZ = coeffs->Zcoef + coeffs->ZcoefA *alpha
    [all...]
cveigenobjects.cpp     [all...]
cvcalibfilter.cpp 684 /* Save coeffs */
689 fprintf(f, "%15.10lf ", stereo.coeffs[i][j/3][j%3] );
739 /* Load coeffs */
744 fscanf(f, "%lf ", &(stereo.coeffs[i][j/3][j%3]) );
812 cvComputePerspectiveMap(stereo.coeffs[i], rectMap[i][0], rectMap[i][1]);
cvtrifocal.cpp 336 /* we have computed coeffs for reduced project matrix */
1570 CvMat coeffs; local
    [all...]
  /external/opencv/cxcore/src/
cxutils.cpp 266 cvSolveCubic( const CvMat* coeffs, CvMat* roots )
278 if( !CV_IS_MAT(coeffs) )
279 CV_ERROR( !coeffs ? CV_StsNullPtr : CV_StsBadArg, "Input parameter is not a valid matrix" );
284 if( (CV_MAT_TYPE(coeffs->type) != CV_32FC1 && CV_MAT_TYPE(coeffs->type) != CV_64FC1) ||
289 coeff_count = coeffs->rows + coeffs->cols - 1;
291 if( (coeffs->rows != 1 && coeffs->cols != 1) || (coeff_count != 3 && coeff_count != 4) )
300 if( CV_MAT_TYPE(coeffs->type) == CV_32FC1
    [all...]
_cxipp.h     [all...]
cxmatmul.cpp     [all...]
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_fast_quantize_b_armv6.asm 39 mov r1, #0 ; flags for quantized coeffs
75 orrne r1, r1, r2, lsr #24 ; add flag for nonzero coeffs
85 orrne r1, r1, r2, lsr #23 ; add flag for nonzero coeffs
106 cmp r1, #0 ; coeffs after quantization?
vp8_fast_fdct4x4_armv6.asm 25 ; coeffs 0-3
56 ; coeffs 4-7
81 ; coeffs 8-11
106 ; coeffs 12-15
  /external/opencv/cvaux/include/
cvaux.h 91 float* coeffs );
95 void* userData, float* coeffs, IplImage* avg,
530 double coeffs[2][3][3];/* coefficients for transformation */ member in struct:CvStereoCamera
553 CVAPI(int) icvConvertWarpCoordinates(double coeffs[3][3],
566 CvStereoLineCoeff* coeffs,
599 CVAPI(void) cvComputePerspectiveMap( const double coeffs[3][3], CvArr* rectMapX, CvArr* rectMapY );
611 CvStereoLineCoeff* coeffs,
626 CvStereoLineCoeff* coeffs);
    [all...]
  /external/webp/src/dec/
vp8i.h 158 uint8_t nz_; // non-zero AC/DC coeffs
159 uint8_t dc_nz_; // non-zero DC coeffs
224 int16_t* coeffs_; // 384 coeffs = (16+8+8) * 4*4
309 typedef void (*VP8Idct)(const int16_t* coeffs, uint8_t* dst);
310 // when doing two transforms, coeffs is actually int16_t[2][16].
311 typedef void (*VP8Idct2)(const int16_t* coeffs, uint8_t* dst, int do_two);
frame.c 439 const int16_t* coeffs = dec->coeffs_; local
474 VP8Transform(coeffs + n * 16, dst, 0);
476 VP8TransformDC(coeffs + n * 16, dst);
486 VP8Transform(coeffs + n * 16, dst, 0);
488 VP8TransformDC(coeffs + n * 16, dst);
  /external/webp/src/enc/
frame.c 32 const int16_t* coeffs; member in struct:__anon15231
115 int v = res->coeffs[n++];
206 static void SetResidualCoeffs(const int16_t* const coeffs,
211 if (coeffs[n]) {
216 res->coeffs = coeffs;
233 const int v = res->coeffs[n++];
325 const int c = res->coeffs[n++];
  /external/libvpx/vp8/common/x86/
idctllm_sse2.asm 46 ; clear coeffs
110 ; special case when 2 blocks have 0 or 1 coeffs
129 ; Clear out coeffs
373 ; special case when 2 blocks have 0 or 1 coeffs
449 ; special case when 2 blocks have 0 or 1 coeffs
467 ; Clear out coeffs
  /external/opencv/cv/src/
_cvipp.h 224 const double* coeffs, int interpolate ))
241 const double* coeffs, int interpolate ))
259 const double* coeffs, int interpolate ))
    [all...]
cvfundam.cpp 691 CvMat coeffs = cvMat( 1, 4, CV_64F, c ); local
762 n = cvSolveCubic( &coeffs, &roots );
    [all...]
cvfilter.cpp     [all...]
cvimgwarp.cpp     [all...]
  /external/libvpx/vp8/common/arm/neon/
sixtappredict16x16_neon.asm 26 ; filter coeffs to make them u8. Then, use vmlsl for negtive coeffs. After multiplication,
29 ; negtive number. To avoid that error, apply filter coeffs in the order of 0, 1, 4 ,5 ,2,
  /external/libvpx/vp8/encoder/ppc/
fdct_altivec.asm 54 ;# Do horiz xf on two rows of coeffs v8 = a0 a1 a2 a3 b0 b1 b2 b3.
  /external/opencv/cxcore/include/
cxcore.h 689 CVAPI(int) cvSolveCubic( const CvMat* coeffs, CvMat* roots );
692 CVAPI(void) cvSolvePoly(const CvMat* coeffs, CvMat *roots,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.pb_2.2.0.v20100429.jar 

Completed in 557 milliseconds