HomeSort by relevance Sort by last modified time
    Searched defs:imgA (Results 1 - 3 of 3) sorted by null

  /external/skia/tests/
image-bitmap.cpp 26 auto imgA = SkImage::MakeFromBitmap(a);
29 REPORTER_ASSERT(r, img->uniqueID() != imgA->uniqueID());
31 REPORTER_ASSERT(r, imgA->uniqueID() != imgB->uniqueID());
32 REPORTER_ASSERT(r, imgA->uniqueID() != a.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());
20 int w = imgA->width(), h = imgA->height();
26 canvas->drawImage(imgA, 0, 0, &paint);
35 if (!imgA->readPixels(pmapA, 0, 0) || !imgB->readPixels(pmapB, 0, 0)) {
173 auto imgA = surface->makeImageSnapshot();
183 draw_diff(canvas, imgA.get(), imgB.get());
  /external/opencv/cv/src/
cvlkpyramid.cpp 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 )
    [all...]

Completed in 123 milliseconds