Searched defs:imgB (Results 1 - 5 of 5) sorted by relevance

/external/opencv/cv/src/
H A Dcvoptflowbm.cpp87 // imgB, // pointer to second frame ROI
104 icvCalcOpticalFlowBM_8u32fR( uchar * imgA, uchar * imgB, argument
163 if( imgB == NULL )
389 icvCopyBM_8u_C1R( imgB + (Y1 + offY)*imgStep + (X1 + offX),
401 icvCopyBM_8u_C1R( imgB + (Y1 + offY) * imgStep + (X1 + offX), imgStep,
459 icvCopyBM_8u_C1R( imgB + Y2 * imgStep + X2,
467 icvCopyBM_8u_C1R( imgB + Y1 * imgStep + X1, imgStep,
H A Dcvoptflowhs.cpp62 // imgB - pointer to second frame ROI
87 uchar* imgB,
138 if( imgB == NULL )
258 GradT = (float) (imgB[Line2] - imgA[Line2]);
281 GradT = (float) (imgB[Line2 + j] - imgA[Line2 + j]);
305 GradT = (float) (imgB[Line2 + imageWidth - 1] - imgA[Line2 + imageWidth - 1]);
86 icvCalcOpticalFlowHS_8u32fR( uchar* imgA, uchar* imgB, int imgStep, CvSize imgSize, int usePrevious, float* velocityX, float* velocityY, int velStep, float lambda, CvTermCriteria criteria ) argument
H A Dcvoptflowlk.cpp61 // imgB, // pointer to second frame ROI
84 uchar * imgB,
153 if( imgB == NULL )
314 GradT = (float) (imgB[Line2] - imgA[Line2]);
334 GradT = (float) (imgB[Line2 + j] - imgA[Line2 + j]);
357 GradT = (float) (imgB[Line2 + imageWidth - 1] - imgA[Line2 + imageWidth - 1]);
83 icvCalcOpticalFlowLK_8u32fR( uchar * imgA, uchar * imgB, int imgStep, CvSize imgSize, CvSize winSize, float *velocityX, float *velocityY, int velStep ) argument
H A Dcvlkpyramid.cpp74 icvInitPyramidalAlgorithm( const CvMat* imgA, const CvMat* imgB, argument
158 imgJ[0][0] = imgB->data.ptr;
286 CvMat stubB, *imgB = (CvMat*)arrB; local
312 CV_CALL( imgB = cvGetMat( imgB, &stubB ));
317 if( !CV_ARE_TYPES_EQ( imgA, imgB ))
320 if( !CV_ARE_SIZES_EQ( imgA, imgB ))
323 if( imgA->step != imgB->step )
324 CV_ERROR( CV_StsUnmatchedSizes, "imgA and imgB must have equal steps" );
369 CV_CALL( icvInitPyramidalAlgorithm( imgA, imgB, pyr
675 CvMat stubB, *imgB = (CvMat*)arrB; local
[all...]
/external/opencv/cxcore/src/
H A Dcxnorm.cpp965 cvNorm( const void* imgA, const void* imgB, int normType, const void* mask ) argument
979 CvMat stub1, *mat1 = (CvMat*)imgB;

Completed in 148 milliseconds