Searched refs:image2 (Results 1 - 25 of 33) sorted by relevance

12

/external/webrtc/webrtc/modules/desktop_capture/
H A Ddiffer_block_sse2.h23 const uint8_t* image2,
28 const uint8_t* image2,
H A Ddiffer_block.cc22 const uint8_t* image2,
27 if (memcmp(image1, image2, width_bytes) != 0)
30 image2 += stride;
36 const uint8_t* image2,
58 return diff_proc(image1, image2, stride);
21 BlockDifference_C(const uint8_t* image1, const uint8_t* image2, int stride) argument
35 BlockDifference(const uint8_t* image1, const uint8_t* image2, int stride) argument
H A Ddiffer_block.h28 const uint8_t* image2,
H A Ddiffer_block_sse2.cc25 const uint8_t* image2,
33 const __m128i* i2 = reinterpret_cast<const __m128i*>(image2);
59 image2 += stride;
65 const uint8_t* image2,
73 const __m128i* i2 = reinterpret_cast<const __m128i*>(image2);
115 image2 += stride;
24 BlockDifference_SSE2_W16(const uint8_t* image1, const uint8_t* image2, int stride) argument
64 BlockDifference_SSE2_W32(const uint8_t* image1, const uint8_t* image2, int stride) argument
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
H A DImageScaleTest.java41 Image image2 = new Image(texture);
42 image2.setScaling(Scaling.fit);
44 image2.setOrigin(200, 100);
45 image2.setScale(0.5f);
46 stage.addActor(image2);
H A DImageTest.java34 TextureRegion image2; field in class:ImageTest
39 image2 = new TextureRegion(new Texture(Gdx.files.internal("data/badlogic.jpg")));
48 Image image = new Image(image2);
50 root.add(image).width(image2.getRegionWidth()).height(image2.getRegionHeight());
57 image2.getTexture().dispose();
/external/opencv3/modules/features2d/test/
H A Dtest_brisk.cpp63 Mat image2 = imread(string(ts->get_data_path()) + "cameracalibration/chess9.png"); local
65 if (image1.empty() || image2.empty())
73 cvtColor(image2, gray2, COLOR_BGR2GRAY);
80 detector->detect(image2, keypoints2);
H A Dtest_agast.cpp64 Mat image2 = imread(string(ts->get_data_path()) + "cameracalibration/chess9.png"); local
67 if (image1.empty() || image2.empty())
75 cvtColor(image2, gray2, COLOR_BGR2GRAY);
91 cv::circle(image2, kp.pt, cvRound(kp.size/2), Scalar(255, 0, 0));
130 cv::namedWindow("Img2"); cv::imshow("Img2", image2);
H A Dtest_fast.cpp64 Mat image2 = imread(string(ts->get_data_path()) + "cameracalibration/chess9.png"); local
67 if (image1.empty() || image2.empty())
75 cvtColor(image2, gray2, COLOR_BGR2GRAY);
91 cv::circle(image2, kp.pt, cvRound(kp.size/2), Scalar(255, 0, 0));
130 cv::namedWindow("Img2"); cv::imshow("Img2", image2);
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
H A Dimage_util_numpy_impl.py75 def _SimpleDiff(image1, image2):
77 return cv2.absdiff(image1, image2)
79 amax = np.maximum(image1, image2)
80 amin = np.minimum(image1, image2)
83 def AreEqual(image1, image2, tolerance, likely_equal):
84 if image1.shape != image2.shape:
87 other_image = image2
90 return np.amax(_SimpleDiff(image1, image2)) <= tolerance
93 if np.amax(_SimpleDiff(image1[row], image2[row])) > tolerance:
105 def Diff(image1, image2)
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/util/
H A Dimage_util.py84 def AreEqual(image1, image2, tolerance=0, likely_equal=True):
89 return impl.AreEqual(image1, image2, tolerance, likely_equal)
91 def Diff(image1, image2):
94 return impl.Diff(image1, image2)
/external/opencv3/modules/stitching/test/
H A Dtest_blenders.cpp50 Mat image2 = imread(string(cvtest::TS::ptr()->get_data_path()) + "cv/shared/lena.png"); local
51 ASSERT_EQ(image1.rows, image2.rows); ASSERT_EQ(image1.cols, image2.cols);
55 image2.convertTo(image2s, CV_16S);
/external/ImageMagick/coders/
H A Dmat.c480 Image *image2;
569 if( (image2 = AcquireImage(clone_info,exception))==NULL ) goto EraseFile;
570 status = OpenBlob(clone_info,image2,ReadBinaryBlobMode,exception);
573 DeleteImageFromList(&image2);
582 return image2;
804 Image *image, *image2=NULL,
857 image2=ReadMATImageV4(image_info,image,exception);
858 if (image2 == NULL)
860 image=image2;
905 image2
478 Image *image2; local
801 Image *image, *image2=NULL, local
[all...]
H A Dwpg.c758 *image2;
798 image2=ReadImage(clone_info,exception);
800 if (!image2)
807 (void) CopyMagickString(image2->filename,image->filename,MagickPathExtent);
808 (void) CopyMagickString(image2->magick_filename,image->magick_filename,MagickPathExtent);
809 (void) CopyMagickString(image2->magick,image->magick,MagickPathExtent);
810 image2->depth=image->depth;
811 DestroyBlob(image2);
812 image2->blob=ReferenceBlob(image->blob);
817 AppendImageToList(&image,image2);
754 *image2; local
[all...]
/external/opencv3/modules/shape/include/opencv2/shape/
H A Dshape_distance.hpp150 @param image2 Image corresponding to the shape defined by contours2.
152 CV_WRAP virtual void setImages(InputArray image1, InputArray image2) = 0;
153 CV_WRAP virtual void getImages(OutputArray image1, OutputArray image2) const = 0;
/external/skia/tests/
H A DTextureStorageAllocator.cpp83 SkAutoTUnref<SkImage> image2(surface->newImageSnapshot());
84 REPORTER_ASSERT(reporter, image2->isTextureBacked());
87 REPORTER_ASSERT(reporter, image2->readPixels(imageInfo, &dest, 4 * kWidth, 0, 0));
H A DSurfaceTest.cpp353 SkAutoTUnref<SkImage> image2(surface->newImageSnapshot(kB, SkSurface::kYes_ForceUnique));
354 REPORTER_ASSERT(reporter, !same_image_surf(image2, surface, ibs, sbs));
355 REPORTER_ASSERT(reporter, !same_image(image1, image2, ibs));
356 REPORTER_ASSERT(reporter, image2->unique());
360 SkAutoTUnref<SkImage> image2(surface->newImageSnapshot(kB, SkSurface::kYes_ForceUnique));
369 REPORTER_ASSERT(reporter, !same_image(image1, image2, ibs) &&
370 !same_image(image3, image2, ibs) &&
371 !same_image(image4, image2, ibs));
372 REPORTER_ASSERT(reporter, image2->unique());
373 REPORTER_ASSERT(reporter, !same_image_surf(image2, surfac
757 SkImage* image2 = surface->newImageSnapshot(); local
[all...]
/external/pdfium/samples/
H A Dimage_diff.cc253 bool CreateImageDiff(const Image& image1, const Image& image2, Image* out) { argument
254 int w = std::min(image1.w(), image2.w());
255 int h = std::min(image1.h(), image2.h());
257 bool same = (image1.w() == image2.w()) && (image1.h() == image2.h());
264 if (base_pixel != image2.pixel_at(x, y)) {
/external/opencv3/samples/cpp/
H A Ddrawing.cpp164 Mat image2; local
167 image2 = image - Scalar::all(i);
168 putText(image2, "OpenCV forever!", org, FONT_HERSHEY_COMPLEX, 3,
171 imshow(wndname, image2);
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
H A Dseam_finders.hpp179 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2);
186 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2);
188 void computeGradients(const Mat &image1, const Mat &image2);
197 const Mat &image1, const Mat &image2, Point tl1, Point tl2,
201 const Mat &image1, const Mat &image2, Point tl1, Point tl2, int comp,
/external/skia/gm/
H A Dsurface.cpp152 SkAutoTUnref<SkImage> image2(surf2->newImageSnapshot());
153 canvas->drawImage(image2, 10 + SkIntToScalar(image->width()) + 10, 10, nullptr);
/external/ImageMagick/MagickCore/
H A Dlayer.c157 % const Image *image2,RectangleInfo bounds,ExceptionInfo *exception)
169 const Image *image2,RectangleInfo *bounds,ExceptionInfo *exception)
186 q=GetVirtualPixels(image2,bounds->x,bounds->y+y,bounds->width,1,exception);
192 (GetPixelAlpha(image2,q) < (Quantum) (QuantumRange/2)))
195 q+=GetPixelChannels(image2);
584 % const Image *image1, const Image *image2, ExceptionInfo *exception)
591 % o image1, image2: the two images to compare.
598 const Image *image2,const LayerMethod method,ExceptionInfo *exception)
621 GetPixelInfo(image2,&pixel2);
625 q=GetVirtualPixels(image2,
165 IsBoundsCleared(const Image *image1, const Image *image2,RectangleInfo *bounds,ExceptionInfo *exception) argument
590 CompareImagesBounds(const Image *image1, const Image *image2,const LayerMethod method,ExceptionInfo *exception) argument
[all...]
/external/opencv3/samples/cpp/tutorial_code/core/Matrix/
H A DDrawing_2.cpp312 Mat image2; local
316 image2 = image - Scalar::all(i);
317 putText( image2, "OpenCV forever!", org, FONT_HERSHEY_COMPLEX, 3,
320 imshow( window_name, image2 );
/external/opencv3/modules/shape/src/
H A Dsc_dis.cpp121 image2=image2_;
126 CV_Assert((!image1.empty()) && (!image2.empty()));
128 _image2.create(image2.size(), image2.type());
130 _image2.getMat()=image2;
147 << "img_2" << image2
180 Mat image2; member in class:cv::ShapeContextDistanceExtractorImpl
206 CV_Assert((!image1.empty()) && (!image2.empty()));
258 image2.copyTo(warpedImage);
281 resize(warpedImage, warpedImage, image2
[all...]
/external/opencv3/modules/stitching/src/
H A Dseam_finders.cpp203 const Mat &image1, const Mat &image2, Point tl1, Point tl2,
207 CV_Assert(image2.size() == mask2.size());
211 Point intersectBr(std::min(tl1.x + image1.cols, tl2.x + image2.cols),
212 std::min(tl1.y + image1.rows, tl2.y + image2.rows));
219 unionBr_ = Point(std::max(tl1.x + image1.cols, tl2.x + image2.cols),
220 std::max(tl1.y + image1.rows, tl2.y + image2.rows));
262 resolveConflicts(image1, image2, tl1, tl2, mask1, mask2);
400 const Mat &image1, const Mat &image2, Point tl1, Point tl2, Mat &mask1, Mat &mask2)
403 computeGradients(image1, image2);
450 if (estimateSeam(image1, image2, tl
[all...]

Completed in 919 milliseconds

12