Searched defs:image1 (Results 1 - 4 of 4) sorted by relevance
/external/webkit/Source/WebCore/rendering/style/ |
H A D | StyleImage.h | 69 static bool imagesEquivalent(StyleImage* image1, StyleImage* image2) argument 71 if (image1 != image2) { 72 if (!image1 || !image2) 74 return *image1 == *image2;
|
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/ |
H A D | tst_qgraphicswebview.cpp | 501 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/DumpRenderTree/chromium/ |
H A D | ImageDiff.cpp | 290 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/opencv/cvaux/src/ |
H A D | cvcorrimages.cpp | 176 /* 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);
|
Completed in 152 milliseconds