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

  /external/opencv3/samples/cpp/
stitching.cpp 53 vector<Mat> imgs; variable
66 Stitcher::Status status = stitcher.stitch(imgs, pano);
133 imgs.push_back(img);
  /external/opencv3/modules/stitching/perf/opencl/
perf_stitch.cpp 36 vector<UMat> imgs = ToUMat(_imgs); local
57 stitcher.stitch(imgs, pano);
71 vector<Mat> imgs; local
72 imgs.push_back( imread( getDataPath("stitching/b1.png") ) );
73 imgs.push_back( imread( getDataPath("stitching/b2.png") ) );
94 stitcher.stitch(imgs, pano);
115 vector<UMat> imgs = ToUMat(_imgs); local
136 stitcher.stitch(imgs, pano);
  /external/opencv3/samples/python2/
video.py 185 imgs = [] variable
188 imgs.append(img)
194 for i, img in enumerate(imgs):
  /external/opencv3/modules/stitching/perf/
perf_stich.cpp 31 vector<Mat> imgs; local
32 imgs.push_back( imread( getDataPath("stitching/a1.png") ) );
33 imgs.push_back( imread( getDataPath("stitching/a2.png") ) );
34 imgs.push_back( imread( getDataPath("stitching/a3.png") ) );
55 stitcher.stitch(imgs, pano);
69 vector<Mat> imgs; local
70 imgs.push_back( imread( getDataPath("stitching/b1.png") ) );
71 imgs.push_back( imread( getDataPath("stitching/b2.png") ) );
92 stitcher.stitch(imgs, pano);
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/drawable/
IconTest.java 218 ArrayList<Icon> imgs = new ArrayList<>(); local
220 imgs.add(file1);
222 imgs.add(bit1);
224 imgs.add(data1);
226 imgs.add(res1);
231 parcel.writeInt(imgs.size());
232 for (Icon img : imgs) {
  /external/opencv3/modules/stitching/src/
stitcher.cpp 123 std::vector<UMat> imgs; local
124 images.getUMatVector(imgs);
125 if (!imgs.empty())
127 CV_Assert(imgs.size() == imgs_.size());
130 seam_est_imgs_.resize(imgs.size());
132 for (size_t i = 0; i < imgs.size(); ++i)
134 imgs_[i] = imgs[i];
135 resize(imgs[i], img, Size(), seam_scale_, seam_scale_);
  /external/skia/src/core/
SkPictureData.cpp 79 const SkTDArray<const SkImage*>& imgs = record.getImageRefs(); local
80 fImageCount = imgs.count();
84 fImageRefs[i] = SkRef(imgs[i]);
  /external/opencv3/modules/features2d/test/
test_descriptors_regression.cpp 354 vector<Mat> imgs, descriptors; local
363 imgs.push_back(img);
366 orb->detect(imgs, keypoints);
367 orb->compute(imgs, keypoints, descriptors);
  /external/opencv3/modules/imgcodecs/test/
test_grfmt.cpp 832 std::vector<cv::Mat> imgs; local
833 cv::split(img, imgs);
834 imgs.push_back(cv::Mat(imgs[0]));
835 imgs[imgs.size() - 1] = cv::Scalar::all(128);
836 cv::merge(imgs, img);

Completed in 457 milliseconds