Home | History | Annotate | Download | only in src

Lines Matching defs:imgA

74 icvInitPyramidalAlgorithm( const CvMat* imgA, const CvMat* imgB,
128 imgSize = cvGetSize(imgA);
129 elem_size = CV_ELEM_SIZE(imgA->type);
157 imgI[0][0] = imgA->data.ptr;
159 step[0][0] = imgA->step;
285 CvMat stubA, *imgA = (CvMat*)arrA;
311 CV_CALL( imgA = cvGetMat( imgA, &stubA ));
314 if( CV_MAT_TYPE( imgA->type ) != CV_8UC1 )
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" );
326 imgSize = cvGetMatSize( imgA );
369 CV_CALL( icvInitPyramidalAlgorithm( imgA, imgB, pyrA, pyrB,
674 CvMat stubA, *imgA = (CvMat*)arrA;
706 CV_CALL( imgA = cvGetMat( imgA, &stubA ));
709 if( CV_MAT_TYPE( imgA->type ) != CV_8UC1 )
712 if( !CV_ARE_TYPES_EQ( imgA, imgB ))
715 if( !CV_ARE_SIZES_EQ( imgA, imgB ))
718 if( imgA->step != imgB->step )
719 CV_ERROR( CV_StsUnmatchedSizes, "imgA and imgB must have equal steps" );
724 imgSize = cvGetMatSize( imgA );
765 CV_CALL( icvInitPyramidalAlgorithm( imgA, imgB,