Home
last modified time | relevance | path

Searched refs:OCL_OFF (Results 1 – 25 of 30) sorted by relevance

12

/external/opencv3/modules/core/test/ocl/
Dtest_arithm.cpp107 OCL_OFF(cv::LUT(src_roi, lut_roi, dst_roi)); in OCL_TEST_P()
202 OCL_OFF(cv::add(src1_roi, src2_roi, dst1_roi)); in OCL_TEST_P()
214 OCL_OFF(cv::add(src1_roi, src2_roi, dst1_roi, mask_roi)); in OCL_TEST_P()
226 OCL_OFF(cv::add(src1_roi, val, dst1_roi)); in OCL_TEST_P()
238 OCL_OFF(cv::add(src1_roi, val, dst1_roi, mask_roi)); in OCL_TEST_P()
254 OCL_OFF(cv::subtract(src1_roi, src2_roi, dst1_roi)); in OCL_TEST_P()
266 OCL_OFF(cv::subtract(src1_roi, src2_roi, dst1_roi, mask_roi)); in OCL_TEST_P()
278 OCL_OFF(cv::subtract(val, src1_roi, dst1_roi)); in OCL_TEST_P()
290 OCL_OFF(cv::subtract(src1_roi, val, dst1_roi, mask_roi)); in OCL_TEST_P()
306 OCL_OFF(cv::multiply(src1_roi, src2_roi, dst1_roi)); in OCL_TEST_P()
[all …]
Dtest_matrix_operation.cpp96 OCL_OFF(src_roi.convertTo(dst_roi, dstType, alpha, beta)); in OCL_TEST_P()
163 OCL_OFF(src_roi.copyTo(dst_roi, mask_roi)); in OCL_TEST_P()
168 OCL_OFF(src_roi.copyTo(dst_roi)); in OCL_TEST_P()
186 OCL_OFF(dst_roi.setTo(val, mask_roi)); in OCL_TEST_P()
191 OCL_OFF(dst_roi.setTo(val)); in OCL_TEST_P()
Dtest_channels.cpp139 OCL_OFF(cv::merge(src_roi, dst_roi)); in OCL_TEST_P()
217 OCL_OFF(cv::split(src_roi, dst_roi)); in OCL_TEST_P()
356 OCL_OFF(cv::mixChannels(src_roi, dst_roi, fromTo)); in OCL_TEST_P()
406 OCL_OFF(cv::insertChannel(src_roi, dst_roi, coi)); in OCL_TEST_P()
452 OCL_OFF(cv::extractChannel(src_roi, dst_roi, coi)); in OCL_TEST_P()
Dtest_dft.cpp112 OCL_OFF(cv::dft(src, dst, dft_flags, nonzero_rows)); in OCL_TEST_P()
169 OCL_OFF(cv::mulSpectrums(src1_roi, src2_roi, dst_roi, 0, ccorr)); in OCL_TEST_P()
/external/opencv3/modules/imgproc/test/ocl/
Dtest_accumulate.cpp112 OCL_OFF(cv::accumulate(src_roi, dst_roi)); in OCL_TEST_P()
125 OCL_OFF(cv::accumulate(src_roi, dst_roi, mask_roi)); in OCL_TEST_P()
142 OCL_OFF(cv::accumulateSquare(src_roi, dst_roi)); in OCL_TEST_P()
155 OCL_OFF(cv::accumulateSquare(src_roi, dst_roi, mask_roi)); in OCL_TEST_P()
172 OCL_OFF(cv::accumulateProduct(src_roi, src2_roi, dst_roi)); in OCL_TEST_P()
185 OCL_OFF(cv::accumulateProduct(src_roi, src2_roi, dst_roi, mask_roi)); in OCL_TEST_P()
202 OCL_OFF(cv::accumulateWeighted(src_roi, dst_roi, alpha)); in OCL_TEST_P()
215 OCL_OFF(cv::accumulateWeighted(src_roi, dst_roi, alpha)); in OCL_TEST_P()
Dtest_filters.cpp141 OCL_OFF(cv::bilateralFilter(src_roi, dst_roi, ksize, sigmacolor, sigmaspace, borderType)); in OCL_TEST_P()
161 OCL_OFF(cv::Laplacian(src_roi, dst_roi, -1, ksize, scale, 10, borderType)); in OCL_TEST_P()
183 OCL_OFF(cv::Sobel(src_roi, dst_roi, -1, dx, dy, ksize, scale, /* delta */0, borderType)); in OCL_TEST_P()
204 OCL_OFF(cv::Scharr(src_roi, dst_roi, -1, dx, dy, scale, /* delta */ 0, borderType)); in OCL_TEST_P()
225 OCL_OFF(cv::GaussianBlur(src_roi, dst_roi, Size(ksize, ksize), sigma1, sigma2, borderType)); in OCL_TEST_P()
247 OCL_OFF(cv::erode(src_roi, dst_roi, kernel, Point(-1, -1), iterations) ); in OCL_TEST_P()
269 OCL_OFF(cv::dilate(src_roi, dst_roi, kernel, Point(-1, -1), iterations) ); in OCL_TEST_P()
346 OCL_OFF(cv::morphologyEx(src_roi, dst_roi, op, kernel, Point(-1, -1), iterations) ); in OCL_TEST_P()
Dtest_imgproc.cpp167OCL_OFF(cv::copyMakeBorder(src_roi, dst_roi, border.top, border.bot, border.lef, border.rig, borde… in OCL_TEST_P()
184 OCL_OFF(cv::equalizeHist(src_roi, dst_roi)); in OCL_TEST_P()
235 OCL_OFF(cv::cornerMinEigenVal(src_roi, dst_roi, blockSize, apertureSize, borderType)); in OCL_TEST_P()
255 OCL_OFF(cv::cornerHarris(src_roi, dst_roi, blockSize, apertureSize, k, borderType)); in OCL_TEST_P()
274 OCL_OFF(cv::preCornerDetect(src_roi, dst_roi, apertureSize, borderType)); in OCL_TEST_P()
333 OCL_OFF(cv::integral(src_roi, dst_roi, sdepth)); in OCL_TEST_P()
346 OCL_OFF(cv::integral(src_roi, dst_roi, dst2_roi, sdepth, sqdepth)); in OCL_TEST_P()
378 OCL_OFF(cv::threshold(src_roi, dst_roi, thresh, maxVal, thresholdType)); in OCL_TEST_P()
430 OCL_OFF(clahe->apply(src_roi, dst_roi)); in OCL_TEST_P()
Dtest_warp.cpp130 OCL_OFF(cv::warpAffine(src_roi, dst_roi, M, dsize, interpolation)); in OCL_TEST_P()
157 OCL_OFF(cv::warpPerspective(src_roi, dst_roi, M, dsize, interpolation)); in OCL_TEST_P()
229 OCL_OFF(cv::resize(src_roi, dst_roi, Size(), fx, fy, interpolation)); in OCL_TEST_P()
307 OCL_OFF(cv::remap(src_roi, dst_roi, map1_roi, map2_roi, INTER_NEAREST, borderType, val)); in OCL_TEST_P()
329 OCL_OFF(cv::remap(src_roi, dst_roi, map1_roi, map2_roi, INTER_LINEAR, borderType, val)); in OCL_TEST_P()
Dtest_houghlines.cpp88 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold)); in OCL_TEST_P()
100 OCL_OFF(cv::HoughLines(src, dst, rhoStep, thetaStep, threshold)); in OCL_TEST_P()
168 OCL_OFF(cv::HoughLinesP(src, dst, rhoStep, thetaStep, threshold, minLineLength, maxGap)); in OCL_TEST_P()
Dtest_pyramids.cpp103 OCL_OFF(pyrDown(src_roi, dst_roi, dst_roiSize, borderType)); in OCL_TEST_P()
130 OCL_OFF(pyrUp(src_roi, dst_roi, dst_roiSize, borderType)); in OCL_TEST_P()
Dtest_histogram.cpp179 OCL_OFF(calcBackProject(&frame1, 1, 0, hist1, dst1, &ranges1, 1, true)); in PARAM_TEST_CASE()
205 OCL_OFF(cv::calcBackProject(images_roi, channels, hist_roi, dst_roi, ranges, scale)); in OCL_TEST_P()
263OCL_OFF(cv::calcHist(std::vector<Mat>(1, src_roi), channels, noArray(), hist_roi, histSize, ranges… in OCL_TEST_P()
Dtest_boxfilter.cpp109 OCL_OFF(cv::boxFilter(src_roi, dst_roi, -1, ksize, anchor, normalize, borderType)); in OCL_TEST_P()
126 OCL_OFF(cv::sqrBoxFilter(src_roi, dst_roi, ddepth, ksize, anchor, normalize, borderType)); in OCL_TEST_P()
Dtest_medianfilter.cpp96 OCL_OFF(cv::medianBlur(src_roi, dst_roi, ksize)); in OCL_TEST_P()
Dtest_canny.cpp108 OCL_OFF(cv::Canny(src_roi, dst_roi, low_thresh, high_thresh, apperture_size, useL2gradient)); in OCL_TEST_P()
Dtest_match_template.cpp120 OCL_OFF(cv::matchTemplate(image_roi, templ_roi, result_roi, method)); in OCL_TEST_P()
Dtest_blend.cpp117 OCL_OFF(cv::blendLinear(src1_roi, src2_roi, weights1_roi, weights2_roi, dst_roi)); in OCL_TEST_P()
Dtest_gftt.cpp103OCL_OFF(cv::goodFeaturesToTrack(src_roi, points, maxCorners, qualityLevel, minDistance, noArray())… in OCL_TEST_P()
Dtest_filter2d.cpp117 OCL_OFF(cv::filter2D(src_roi, dst_roi, -1, kernel, anchor, delta, borderType)); in OCL_TEST_P()
/external/opencv3/modules/stitching/test/ocl/
Dtest_warpers.cpp94 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap)); in OCL_TEST_F()
97 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst)); in OCL_TEST_F()
115 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap)); in OCL_TEST_F()
118 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst)); in OCL_TEST_F()
136 OCL_OFF(warper->buildMaps(src.size(), K, R, xmap, ymap)); in OCL_TEST_F()
139 OCL_OFF(warper->warp(src, K, R, INTER_LINEAR, BORDER_REPLICATE, dst)); in OCL_TEST_F()
/external/opencv3/modules/video/test/ocl/
Dtest_bgfg_mog2.cpp69 OCL_OFF(mog2_cpu->apply(frame, foreground)); in OCL_TEST_P()
110 OCL_OFF(mog2_cpu->apply(frame, foreground)); in OCL_TEST_P()
115 OCL_OFF(mog2_cpu->getBackgroundImage(background)); in OCL_TEST_P()
Dtest_optflow_tvl1flow.cpp101 OCL_OFF(alg->calc(frame0, frame1, flow)); in OCL_TEST_P()
Dtest_optflow_farneback.cpp101OCL_OFF(cv::calcOpticalFlowFarneback(frame0, frame1, flow, pyrScale, numLevels, winSize, numIters,… in OCL_TEST_P()
/external/opencv3/modules/photo/test/ocl/
Dtest_denoising.cpp85OCL_OFF(cv::fastNlMeansDenoising(src_roi, dst_roi, std::vector<float>(1, h[0]), templateWindowSize… in OCL_TEST_P()
100OCL_OFF(cv::fastNlMeansDenoising(src_roi, dst_roi, h, templateWindowSize, searchWindowSize, normTy… in OCL_TEST_P()
115OCL_OFF(cv::fastNlMeansDenoisingColored(src_roi, dst_roi, h[0], h[0], templateWindowSize, searchWi… in OCL_TEST_P()
/external/opencv3/modules/objdetect/test/opencl/
Dtest_hogdetector.cpp88 OCL_OFF(hog.compute(img, cpu_descriptors, hog.winSize)); in OCL_TEST_P()
110 OCL_OFF(hog.detectMultiScale(img, cpu_found, 0, Size(8, 8), Size(0, 0), 1.05, 6)); in OCL_TEST_P()
/external/opencv3/modules/calib3d/test/opencl/
Dtest_stereobm.cpp86 OCL_OFF(bm->compute(left, right, disp)); in OCL_TEST_P()

12