/external/opencv3/modules/cudawarping/perf/ |
perf_warping.cpp | 98 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)), 150 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)), 237 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)), 287 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)), 337 Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))))
|
/external/opencv3/modules/cudawarping/src/ |
remap.cpp | 83 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC );
|
resize.cpp | 73 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC || interpolation == INTER_AREA );
|
warp.cpp | 193 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC ); 332 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC ); 524 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC );
|
/external/opencv3/modules/imgproc/perf/ |
perf_remap.cpp | 10 CV_ENUM(InterType, INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_LANCZOS4)
|
/external/opencv3/modules/ts/include/opencv2/ts/ |
cuda_perf.hpp | 59 CV_ENUM(Interpolation, INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_AREA)
|
cuda_test.hpp | 320 CV_ENUM(Interpolation, INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_AREA) 325 CV_FLAGS(WarpFlags, INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, WARP_INVERSE_MAP)
|
ocl_test.hpp | 359 CV_ENUM(Interpolation, INTER_NEAREST, INTER_LINEAR, INTER_CUBIC, INTER_AREA)
|
/external/opencv3/modules/imgproc/perf/opencl/ |
perf_imgwarp.cpp | 57 CV_ENUM(InterType, INTER_NEAREST, INTER_LINEAR, INTER_CUBIC) 75 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : interpolation == INTER_CUBIC ? 2e-3 : 1e-4;
|
/external/opencv3/samples/python2/ |
deconvolution.py | 55 kern = cv2.warpAffine(kern, A, (sz, sz), flags=cv2.INTER_CUBIC)
|
/external/opencv3/modules/cudawarping/test/ |
test_warp_affine.cpp | 230 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)), 278 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))));
|
test_warp_perspective.cpp | 233 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)), 281 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC))));
|
test_remap.cpp | 176 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
|
test_resize.cpp | 160 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)),
|
/external/opencv3/modules/imgproc/test/ocl/ |
test_warp.cpp | 340 Values((Interpolation)INTER_NEAREST, (Interpolation)INTER_LINEAR, (Interpolation)INTER_CUBIC), 346 Values((Interpolation)INTER_NEAREST, (Interpolation)INTER_LINEAR, (Interpolation)INTER_CUBIC),
|
/external/opencv3/modules/imgproc/test/ |
test_imgwarp_strict.cpp | 124 else if (inter == INTER_CUBIC) 125 str = "INTER_CUBIC"; 246 if (interpolation == INTER_CUBIC) 511 // for interpolation type : INTER_LINEAR, INTER_LINEAR, INTER_CUBIC, INTER_LANCZOS4 531 else if (interpolation == INTER_LINEAR || interpolation == INTER_CUBIC || interpolation == INTER_LANCZOS4) 537 if (interpolation == INTER_CUBIC) 879 if (interpolation == INTER_CUBIC) [all...] |
/external/opencv3/modules/videoio/test/ |
test_video_io.cpp | 358 resize(image, image, Size(968, 757), 0.0, 0.0, INTER_CUBIC); 472 resize(img, img, frame_size, 0.0, 0.0, INTER_CUBIC);
|
/external/opencv3/samples/cpp/ |
stereo_match.cpp | 176 int method = scale < 1 ? INTER_AREA : INTER_CUBIC;
|
/external/opencv3/modules/superres/src/ |
btv_l1_cuda.cpp | 124 cuda::resize(lowResMotions[i].first, highResMotions[i].first, Size(), scale, scale, INTER_CUBIC); 125 cuda::resize(lowResMotions[i].second, highResMotions[i].second, Size(), scale, scale, INTER_CUBIC); 345 cuda::resize(src[baseIdx], highRes_, highResSize, 0, 0, INTER_CUBIC);
|
btv_l1.cpp | 161 resize(lowResMotions[i], highResMotions[i], Size(), scale, scale, INTER_CUBIC); 708 resize(src[baseIdx], highRes_, highResSize, 0, 0, INTER_CUBIC); [all...] |
/external/opencv3/modules/imgproc/src/opencl/ |
warp_perspective.cl | 169 #elif defined INTER_CUBIC
|
warp_affine.cl | 236 #elif defined INTER_CUBIC
|
/external/opencv3/modules/imgproc/src/ |
imgwarp.cpp | 200 else if( method == INTER_CUBIC ) 223 else if( method == INTER_CUBIC ) 296 initInterTab2D( INTER_CUBIC, false ) && 297 initInterTab2D( INTER_CUBIC, true ) && [all...] |
/external/opencv3/modules/video/src/ |
tvl1flow.cpp | [all...] |
/external/opencv3/modules/imgproc/include/opencv2/ |
imgproc.hpp | 253 INTER_CUBIC = 2, [all...] |