Searched refs:image1 (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/rendering/style/
H A DStyleImage.h69 static bool imagesEquivalent(StyleImage* image1, StyleImage* image2) argument
71 if (image1 != image2) {
72 if (!image1 || !image2)
74 return *image1 == *image2;
/external/webkit/Tools/DumpRenderTree/chromium/
H A DImageDiff.cpp290 bool createImageDiff(const Image& image1, const Image& image2, Image* out) argument
292 int w = min(image1.width(), image2.width());
293 int h = min(image1.height(), image2.height());
294 *out = Image(image1);
295 bool same = (image1.width() == image2.width()) && (image1.height() == image2.height());
300 uint32_t basePixel = image1.pixelAt(x, y);
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
H A Dtst_qgraphicswebview.cpp501 bool compareImagesFuzzyPixelCount(const QImage& image1, const QImage& image2, qreal tolerance = 0.05) argument
503 if (image1.size() != image2.size())
507 for (int row = 0; row < image1.size().width(); ++row) {
508 for (int column = 0; column < image1.size().height(); ++column)
509 if (image1.pixel(row, column) != image2.pixel(row, column))
513 if (diffPixelCount > (image1.size().width() * image1.size().height()) * tolerance)
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dtestoutput_unittest.py135 def same_image(self, image1, image2):
/external/opencv/cvaux/src/
H A Dcvcorrimages.cpp176 /* For given points1 (with pntStatus) on image1 finds corresponding points2 on image2 and set pntStatus2 for them */
178 int icvFindCorrForGivenPoints( IplImage *image1,/* Image 1 */ argument
206 if( image1 == 0 || image2 == 0 ||
215 w = image1->width;
216 h = image1->height;
220 CV_ERROR( CV_StsOutOfRange, "Size of image1 must be > 0" );
267 /* Compute number of visible points on image1 */
308 cvCvtColor(image1,grayImage1,CV_BGR2GRAY);
312 grayImage1.CopyOf(image1,0);
/external/webkit/Source/WebKit/qt/tests/qwebelement/
H A Dtst_qwebelement.cpp981 QImage image1(resource.width(), resource.height(), QImage::Format_ARGB32);
982 QPainter painter1(&image1);
987 QVERIFY(image1 == testImage);
/external/opencv/cv/include/
H A Dcv.h562 CVAPI(void) cvMultiplyAcc( const CvArr* image1, const CvArr* image2, CvArr* acc,

Completed in 162 milliseconds