/external/opencv3/modules/core/test/ocl/ |
test_channels.cpp | 69 std::vector<UMat> usrc_roi; local 108 src_roi.clear(); usrc_roi.clear(); // for test_loop_times > 1 109 src_roi.push_back(src1_roi), usrc_roi.push_back(usrc1_roi); 111 src_roi.push_back(src2_roi), usrc_roi.push_back(usrc2_roi); 113 src_roi.push_back(src3_roi), usrc_roi.push_back(usrc3_roi); 115 src_roi.push_back(src4_roi), usrc_roi.push_back(usrc4_roi); 140 OCL_ON(cv::merge(usrc_roi, udst_roi)); 218 OCL_ON(cv::split(usrc_roi, udst_roi)); 245 std::vector<UMat> usrc_roi, udst_roi, udst; local 266 usrc_roi.clear() [all...] |
test_matrix_operation.cpp | 97 OCL_ON(usrc_roi.convertTo(udst_roi, dstType, alpha, beta)); 164 OCL_ON(usrc_roi.copyTo(udst_roi, umask_roi)); 169 OCL_ON(usrc_roi.copyTo(udst_roi));
|
test_arithm.cpp | 108 OCL_ON(cv::LUT(usrc_roi, ulut_roi, udst_roi)); [all...] |
/external/opencv3/modules/imgproc/test/ocl/ |
test_accumulate.cpp | 113 OCL_ON(cv::accumulate(usrc_roi, udst_roi)); 126 OCL_ON(cv::accumulate(usrc_roi, udst_roi, umask_roi)); 143 OCL_ON(cv::accumulateSquare(usrc_roi, udst_roi)); 156 OCL_ON(cv::accumulateSquare(usrc_roi, udst_roi, umask_roi)); 173 OCL_ON(cv::accumulateProduct(usrc_roi, usrc2_roi, udst_roi)); 186 OCL_ON(cv::accumulateProduct(usrc_roi, usrc2_roi, udst_roi, umask_roi)); 203 OCL_ON(cv::accumulateWeighted(usrc_roi, udst_roi, alpha)); 216 OCL_ON(cv::accumulateWeighted(usrc_roi, udst_roi, alpha));
|
test_imgproc.cpp | 168 OCL_ON(cv::copyMakeBorder(usrc_roi, udst_roi, border.top, border.bot, border.lef, border.rig, borderType, val)); 185 OCL_ON(cv::equalizeHist(usrc_roi, udst_roi)); 236 OCL_ON(cv::cornerMinEigenVal(usrc_roi, udst_roi, blockSize, apertureSize, borderType)); 256 OCL_ON(cv::cornerHarris(usrc_roi, udst_roi, blockSize, apertureSize, k, borderType)); 275 OCL_ON(cv::preCornerDetect(usrc_roi, udst_roi, apertureSize, borderType)); 334 OCL_ON(cv::integral(usrc_roi, udst_roi, sdepth)); 347 OCL_ON(cv::integral(usrc_roi, udst_roi, udst2_roi, sdepth, sqdepth)); 379 OCL_ON(cv::threshold(usrc_roi, udst_roi, thresh, maxVal, thresholdType)); 431 OCL_ON(clahe->apply(usrc_roi, udst_roi));
|
test_filters.cpp | 142 OCL_ON(cv::bilateralFilter(usrc_roi, udst_roi, ksize, sigmacolor, sigmaspace, borderType)); 162 OCL_ON(cv::Laplacian(usrc_roi, udst_roi, -1, ksize, scale, 10, borderType)); 184 OCL_ON(cv::Sobel(usrc_roi, udst_roi, -1, dx, dy, ksize, scale, /* delta */0, borderType)); 205 OCL_ON(cv::Scharr(usrc_roi, udst_roi, -1, dx, dy, scale, /* delta */ 0, borderType)); 226 OCL_ON(cv::GaussianBlur(usrc_roi, udst_roi, Size(ksize, ksize), sigma1, sigma2, borderType)); 248 OCL_ON(cv::erode(usrc_roi, udst_roi, kernel, Point(-1, -1), iterations) ); 270 OCL_ON(cv::dilate(usrc_roi, udst_roi, kernel, Point(-1, -1), iterations) ); 347 OCL_ON(cv::morphologyEx(usrc_roi, udst_roi, op, kernel, Point(-1, -1), iterations) );
|
test_pyramids.cpp | 104 OCL_ON(pyrDown(usrc_roi, udst_roi, dst_roiSize, borderType)); 131 OCL_ON(pyrUp(usrc_roi, udst_roi, dst_roiSize, borderType));
|
test_gftt.cpp | 107 OCL_ON(cv::goodFeaturesToTrack(usrc_roi, upoints, maxCorners, qualityLevel, minDistance)); 132 usrc_roi.setTo(Scalar::all(0)); 134 OCL_ON(cv::goodFeaturesToTrack(usrc_roi, upoints, maxCorners, qualityLevel, minDistance));
|
test_warp.cpp | 131 OCL_ON(cv::warpAffine(usrc_roi, udst_roi, M, dsize, interpolation)); 158 OCL_ON(cv::warpPerspective(usrc_roi, udst_roi, M, dsize, interpolation)); 230 OCL_ON(cv::resize(usrc_roi, udst_roi, Size(), fx, fy, interpolation)); 308 OCL_ON(cv::remap(usrc_roi, udst_roi, umap1_roi, umap2_roi, INTER_NEAREST, borderType, val)); 330 OCL_ON(cv::remap(usrc_roi, udst_roi, umap1_roi, umap2_roi, INTER_LINEAR, borderType, val));
|
test_boxfilter.cpp | 110 OCL_ON(cv::boxFilter(usrc_roi, udst_roi, -1, ksize, anchor, normalize, borderType)); 127 OCL_ON(cv::sqrBoxFilter(usrc_roi, udst_roi, ddepth, ksize, anchor, normalize, borderType));
|
test_canny.cpp | 109 OCL_ON(cv::Canny(usrc_roi, udst_roi, low_thresh, high_thresh, apperture_size, useL2gradient));
|
test_filter2d.cpp | 118 OCL_ON(cv::filter2D(usrc_roi, udst_roi, -1, kernel, anchor, delta, borderType));
|
test_medianfilter.cpp | 97 OCL_ON(cv::medianBlur(usrc_roi, udst_roi, ksize));
|
test_sepfilter2D.cpp | 116 OCL_ON(cv::sepFilter2D(usrc_roi, udst_roi, -1, kernelX, kernelY, anchor, delta, borderType));
|
test_histogram.cpp | 264 OCL_ON(cv::calcHist(std::vector<UMat>(1, usrc_roi), channels, noArray(), uhist_roi, histSize, ranges, false));
|
test_color.cpp | 99 OCL_ON(cv::cvtColor(usrc_roi, udst_roi, code, channelsOut));
|
/external/opencv3/modules/photo/test/ocl/ |
test_denoising.cpp | 86 OCL_ON(cv::fastNlMeansDenoising(usrc_roi, udst_roi, std::vector<float>(1, h[0]), templateWindowSize, searchWindowSize, normType)); 101 OCL_ON(cv::fastNlMeansDenoising(usrc_roi, udst_roi, h, templateWindowSize, searchWindowSize, normType)); 116 OCL_ON(cv::fastNlMeansDenoisingColored(usrc_roi, udst_roi, h[0], h[0], templateWindowSize, searchWindowSize));
|