HomeSort by relevance Sort by last modified time
    Searched refs:UMat (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /external/opencv3/modules/superres/src/
input_array_utility.hpp 54 CV_EXPORTS UMat arrGetUMat(InputArray arr, UMat& buf);
60 CV_EXPORTS UMat convertToType(const UMat& src, int type, UMat& buf0, UMat& buf1);
  /external/opencv3/modules/stitching/include/opencv2/stitching/detail/
exposure_compensate.hpp 70 void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
71 const std::vector<UMat> &masks);
73 virtual void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
74 const std::vector<std::pair<UMat,uchar> > &masks) = 0;
90 void feed(const std::vector<Point> &/*corners*/, const std::vector<UMat> &/*images*/,
91 const std::vector<std::pair<UMat,uchar> > &/*masks*/) { }
101 void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
102 const std::vector<std::pair<UMat,uchar> > &masks);
118 void feed(const std::vector<Point> &corners, const std::vector<UMat> &images,
119 const std::vector<std::pair<UMat,uchar> > &masks)
    [all...]
blenders.hpp 89 UMat dst_, dst_mask_;
109 Rect createWeightMaps(const std::vector<UMat> &masks, const std::vector<Point> &corners,
110 std::vector<UMat> &weight_maps);
114 UMat weight_map_;
115 UMat dst_weight_map_;
136 std::vector<UMat> dst_pyr_laplace_;
137 std::vector<UMat> dst_band_weights_;
151 void CV_EXPORTS createLaplacePyr(InputArray img, int num_levels, std::vector<UMat>& pyr);
152 void CV_EXPORTS createLaplacePyrGpu(InputArray img, int num_levels, std::vector<UMat>& pyr);
155 void CV_EXPORTS restoreImageFromLaplacePyr(std::vector<UMat>& pyr)
    [all...]
timelapsers.hpp 69 virtual const UMat& getDst() {return dst_;}
75 UMat dst_;
seam_finders.hpp 68 virtual void find(const std::vector<UMat> &src, const std::vector<Point> &corners,
69 std::vector<UMat> &masks) = 0;
77 void find(const std::vector<UMat>&, const std::vector<Point>&, std::vector<UMat>&) {}
85 virtual void find(const std::vector<UMat> &src, const std::vector<Point> &corners,
86 std::vector<UMat> &masks);
98 std::vector<UMat> images_;
101 std::vector<UMat> masks_;
109 virtual void find(const std::vector<UMat> &src, const std::vector<Point> &corners,
110 std::vector<UMat> &masks)
    [all...]
matchers.hpp 67 UMat descriptors;
200 const cv::UMat &mask = cv::UMat());
263 const cv::UMat &mask = cv::UMat());
  /external/opencv3/modules/core/test/ocl/
test_matrix_expr.cpp 16 //////////////////////////////// UMat Expressions /////////////////////////////////////////////////
34 //////////////////////////////// UMat::eye /////////////////////////////////////////////////
43 UMat um = UMat::eye(size, type);
49 //////////////////////////////// UMat::zeros /////////////////////////////////////////////////
58 UMat um = UMat::zeros(size, type);
64 //////////////////////////////// UMat::ones /////////////////////////////////////////////////
73 UMat um = UMat::ones(size, type)
    [all...]
test_image2d.cpp 20 UMat um;
31 UMat um;
48 UMat um(128, 128, CV_8UC1);
75 UMat um(128, 128, CV_8UC1);
  /external/opencv3/modules/core/perf/opencl/
perf_usage_flags.cpp 22 UMat src(sz, CV_8UC1, Scalar::all(128));
26 UMat dst(allocHostMem ? USAGE_ALLOCATE_HOST_MEMORY : USAGE_DEFAULT);
33 UMat final;
perf_bufferpool.cpp 60 UMat u(sz, CV_8UC1);
77 UMat u(sz, CV_8UC1);
100 UMat src(sz, CV_8UC1);
101 UMat dst;
120 UMat src(sz, CV_32FC1);
121 UMat dst;
perf_channels.cpp 69 UMat dst(srcSize, dtype);
70 vector<UMat> src(cn);
71 for (vector<UMat>::iterator i = src.begin(), end = src.end(); i != end; ++i)
99 UMat src(srcSize, type);
100 std::vector<UMat> dst(cn, UMat(srcSize, CV_MAKE_TYPE(depth, 1)));
112 UMat & dst0 = dst[0], & dst1 = dst[1];
118 UMat & dst0 = dst[0], & dst1 = dst[1], & dst2 = dst[2];
140 std::vector<UMat> src(n), dst(n);
143 src[i] = UMat(srcSize, type)
    [all...]
  /external/opencv3/modules/core/src/
umatrix.cpp 45 ///////////////////////////////// UMat implementation ///////////////////////////////
88 MatAllocator* UMat::getStdAllocator()
97 void swap( UMat& a, UMat& b )
126 static inline void setSize( UMat& m, int _dims, const int* _sz,
179 static void updateContinuityFlag(UMat& m)
196 m.flags |= UMat::CONTINUOUS_FLAG;
198 m.flags &= ~UMat::CONTINUOUS_FLAG;
202 static void finalizeHdr(UMat& m)
210 UMat Mat::getUMat(int accessFlags, UMatUsageFlags usageFlags) cons
    [all...]
  /external/opencv3/modules/imgproc/perf/opencl/
perf_3vs4.cpp 38 UMat src(srcSize, type), dst(srcSize, type);
47 std::vector<UMat> srcs(3), dsts(3);
51 dsts[i] = UMat(srcSize, depth);
52 srcs[i] = UMat(srcSize, depth);
68 UMat src4(srcSize, type4), dst4(srcSize, type4);
92 UMat src(srcSize, type), dst(srcSize, type);
101 std::vector<UMat> srcs(3), dsts(3);
105 dsts[i] = UMat(srcSize, depth);
106 srcs[i] = UMat(srcSize, depth);
122 UMat src4(srcSize, type4), dst4(srcSize, type4)
    [all...]
perf_matchTemplate.cpp 29 UMat img(imgSz, type), tmpl(tmplSz, type);
30 UMat result(imgSz - tmplSz + Size(1, 1), CV_32F);
58 UMat src(srcSize, type), templ(templSize, type);
60 UMat dst(dstSize, CV_32F);
76 UMat src(srcSize, CV_8UC1), templ(templSize, CV_8UC1);
78 UMat dst(dstSize, CV_8UC1);
perf_blend.cpp 68 UMat src1(srcSize, srcType), src2(srcSize, srcType), dst(srcSize, srcType);
69 UMat weights1(srcSize, CV_32FC1), weights2(srcSize, CV_32FC1);
perf_imgproc.cpp 66 UMat src(srcSize, CV_8UC1), dst(srcSize, CV_8UC1);
90 UMat src(srcSize, CV_8UC1), hist(256, 1, CV_32FC1);
93 OCL_TEST_CYCLE() cv::calcHist(std::vector<UMat>(1, src), channels, noArray(), hist, histSize, ranges, false);
114 UMat src(srcSize, CV_8UC1), hist(256, 1, CV_32FC1), dst(srcSize, CV_8UC1);
117 cv::calcHist(std::vector<UMat>(1, src), channels, noArray(), hist, histSize, ranges, false);
120 OCL_TEST_CYCLE() cv::calcBackProject(std::vector<UMat>(1,src), channels, hist, dst, ranges, 1);
142 UMat src(srcSize, type), dst;
166 UMat src(srcSize, type), dst(srcSize, CV_32FC1);
187 UMat src(srcSize, type), dst(srcSize, CV_32FC1);
208 UMat src(srcSize, type), dst(srcSize, CV_32FC1)
    [all...]
perf_pyramid.cpp 71 UMat src(srcSize, type), dst(dstSize, type);
95 UMat src(srcSize, type), dst(dstSize, type);
117 std::vector<UMat> dst(maxLevel);
118 UMat src(srcSize, type);
123 UMat dst0 = dst[0], dst1 = dst[1], dst2 = dst[2], dst3 = dst[3], dst4 = dst[4];
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_opencl.hpp 32 static bool ocl_calcAlmostDist2Weight(UMat & almostDist2Weight,
131 UMat almostDist2Weight;
145 UMat srcex;
149 UMat src(srcex, Rect(borderSize, borderSize, size.width, size.height));
151 mixChannels(std::vector<UMat>(1, _src.getUMat()), std::vector<UMat>(1, src), from_to, 3);
159 UMat dst;
168 UMat buffer(upColSumSize + colSumSize, CV_32SC(cn));
180 mixChannels(std::vector<UMat>(1, dst), std::vector<UMat>(1, _dst.getUMat()), from_to, 3)
    [all...]
  /external/opencv3/modules/core/test/
test_umat.cpp 60 UMat ua;
89 ua = UMat(ua, roi);
118 UMat ub;
122 ua = UMat(ua,roi);
123 ub = UMat(ub,roi);
125 UMat uc = ua, ud = ub;
141 ua = UMat(ua,roi);
143 UMat ub = ua.clone();
172 ub = UMat(dims, sz, new_type);
178 UMat roi_ua
    [all...]
  /external/opencv3/samples/tapi/
squares.cpp 35 static void findSquares( const UMat& image, vector<vector<Point> >& squares )
38 UMat pyr, timg, gray0(image.size(), CV_8U), gray;
63 dilate(gray, gray, UMat(), Point(-1,-1));
116 static void drawSquares( UMat& _image, const vector<vector<Point> >& squares )
129 static UMat drawSquaresBoth( const UMat& image,
132 UMat imgToShow(Size(image.cols, image.rows), image.type());
171 UMat image;
199 UMat result = drawSquaresBoth(image, squares);
  /external/opencv3/modules/photo/perf/opencl/
perf_denoising.cpp 21 UMat result(_original.size(), _original.type()), original;
37 UMat result(_original.size(), _original.type()), original;
52 vector<UMat> original(imgs_count);
62 UMat result(tmp.size(), tmp.type());
75 vector<UMat> original(imgs_count);
86 UMat result(tmp.size(), tmp.type());
  /external/opencv3/modules/video/perf/opencl/
perf_motempl.cpp 25 UMat silhouette(size, CV_8UC1), mhi(size, CV_32FC1);
perf_optflow_dualTVL1.cpp 84 UMat uFrame0; frame0.copyTo(uFrame0);
85 UMat uFrame1; frame1.copyTo(uFrame1);
86 UMat uFlow(srcSize, CV_32FC2);
perf_optflow_pyrlk.cpp 73 UMat uFrame0; frame0.copyTo(uFrame0);
74 UMat uFrame1; frame1.copyTo(uFrame1);
91 UMat uNextPts, uStatus, uErr;
  /external/opencv3/modules/features2d/perf/opencl/
perf_orb.cpp 21 UMat frame, mask;
42 UMat mask, frame;
52 UMat descriptors;
73 UMat mask, frame;
80 UMat descriptors;

Completed in 516 milliseconds

1 2 3 4 5 6