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

  /external/skia/tests/
image-bitmap.cpp 27 auto imgB = SkImage::MakeFromBitmap(b);
30 REPORTER_ASSERT(r, img->uniqueID() != imgB->uniqueID());
31 REPORTER_ASSERT(r, imgA->uniqueID() != imgB->uniqueID());
33 REPORTER_ASSERT(r, imgB->uniqueID() != b.getGenerationID());
  /external/skia/gm/
shapes_as_paths.cpp 17 static void draw_diff(SkCanvas* canvas, SkImage* imgA, SkImage* imgB) {
18 SkASSERT(imgA->dimensions() == imgB->dimensions());
27 canvas->drawImage(imgB, 0, 0, &paint);
35 if (!imgA->readPixels(pmapA, 0, 0) || !imgB->readPixels(pmapB, 0, 0)) {
181 auto imgB = surface->makeImageSnapshot();
183 draw_diff(canvas, imgA.get(), imgB.get());
  /external/opencv/cv/src/
cvoptflowbm.cpp 87 // imgB, // pointer to second frame ROI
104 icvCalcOpticalFlowBM_8u32fR( uchar * imgA, uchar * imgB,
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,
cvlkpyramid.cpp 74 icvInitPyramidalAlgorithm( const CvMat* imgA, const CvMat* imgB,
158 imgJ[0][0] = imgB->data.ptr;
286 CvMat stubB, *imgB = (CvMat*)arrB;
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, pyrA, pyrB
    [all...]
cvoptflowhs.cpp 62 // 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]);
cvoptflowlk.cpp 61 // 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]);
  /external/opencv/cv/include/
cvcompat.h 354 #define cvNormMask(imgA,imgB,mask,normType) cvNorm(imgA,imgB,normType,mask)
    [all...]
  /external/opencv/cxcore/src/
cxnorm.cpp     [all...]

Completed in 258 milliseconds