/external/opencv3/doc/tutorials/imgproc/pyramids/ |
D | pyramids.markdown | 9 - Use the OpenCV functions @ref cv::pyrUp and @ref cv::pyrDown to downsample or upsample a given 60 OpenCV functions @ref cv::pyrUp and @ref cv::pyrDown , as we will see in an example with the 113 { pyrUp( tmp, dst, Size( tmp.cols*2, tmp.rows*2 ) ); 129 pyrUp( tmp, dst, Size( tmp.cols*2, tmp.rows*2 ) 131 We use the function @ref cv::pyrUp with 03 arguments: 137 @ref cv::pyrUp expects a size double than the input image (in this case *tmp*). 142 Similarly as with @ref cv::pyrUp , we use the function @ref cv::pyrDown with 03 172 of the image. This is evident after we apply @ref cv::pyrUp twice (by pressing 'u'). Our output
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_pyramids/ |
D | py_pyramids.markdown | 10 - We will see these functions: **cv2.pyrUp()**, **cv2.pyrDown()** 31 **cv2.pyrDown()** and **cv2.pyrUp()** functions. 40 Now you can go down the image pyramid with **cv2.pyrUp()** function. 42 higher_reso2 = cv2.pyrUp(lower_reso) 105 GE = cv2.pyrUp(gpA[i]) 112 GE = cv2.pyrUp(gpB[i]) 126 ls_ = cv2.pyrUp(ls_)
|
/external/opencv3/samples/python2/ |
D | lappyr.py | 25 img1 = cv2.pyrUp(next_img, dstsize=getsize(img)) 34 img = cv2.pyrUp(img, dstsize=getsize(lev_img))
|
D | turing.py | 39 d = a_lods[lod] - cv2.pyrUp(a_lods[lod+1]) 41 d = cv2.pyrUp(d)
|
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/ |
D | pyr_up.hpp | 61 …__global__ void pyrUp(const SrcPtr src, GlobPtr<DstType> dst, const int src_rows, const int src_co… in pyrUp() function 157 …__host__ void pyrUp(const SrcPtr& src, const GlobPtr<DstType>& dst, int src_rows, int src_cols, in… in pyrUp() function 162 pyrUp<<<grid, block, 0, stream>>>(src, dst, src_rows, src_cols, dst_rows, dst_cols); in pyrUp()
|
/external/opencv3/modules/imgproc/test/ocl/ |
D | test_pyramids.cpp | 130 OCL_OFF(pyrUp(src_roi, dst_roi, dst_roiSize, borderType)); in OCL_TEST_P() 131 OCL_ON(pyrUp(usrc_roi, udst_roi, dst_roiSize, borderType)); in OCL_TEST_P()
|
/external/opencv3/modules/cudawarping/test/ |
D | test_pyramids.cpp | 115 cv::cuda::pyrUp(loadMat(src, useRoi), dst); in CUDA_TEST_P() 118 cv::pyrUp(src, dst_gold); in CUDA_TEST_P()
|
/external/opencv3/modules/cudawarping/src/ |
D | pyramids.cpp | 51 void cv::cuda::pyrUp(InputArray, OutputArray, Stream&) { throw_no_cuda(); } in pyrUp() function in cv::cuda 106 void cv::cuda::pyrUp(InputArray _src, OutputArray _dst, Stream& stream) in pyrUp() function in cv::cuda
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_pyramids.cpp | 30 PERF_TEST_P(Size_MatType, pyrUp, testing::Combine( in PERF_TEST_P() argument 46 TEST_CYCLE() pyrUp(src, dst); in PERF_TEST_P()
|
/external/opencv3/modules/stitching/src/ |
D | blenders.cpp | 579 pyrUp(downNext, lvl_up, current.size()); in createLaplacePyr() 588 pyrUp(downNext, lvl_up, current.size()); in createLaplacePyr() 602 pyrUp(pyr[i + 1], tmp, pyr[i].size()); in createLaplacePyr() 622 cuda::pyrUp(gpu_pyr[i + 1], tmp); in createLaplacePyrGpu() 644 pyrUp(pyr[i], tmp, pyr[i - 1].size()); in restoreImageFromLaplacePyr() 663 cuda::pyrUp(gpu_pyr[i], tmp); in restoreImageFromLaplacePyrGpu()
|
/external/opencv3/samples/cpp/tutorial_code/ImgProc/ |
D | Pyramids.cpp | 56 { pyrUp( tmp, dst, Size( tmp.cols*2, tmp.rows*2 ) ); in main()
|
/external/opencv3/modules/cudawarping/src/cuda/ |
D | pyr_up.cu | 55 template <typename T> __global__ void pyrUp(const PtrStepSz<T> src, PtrStepSz<T> dst) in pyrUp() function 152 pyrUp<<<grid, block, 0, stream>>>(src, dst); in pyrUp_caller()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/grid/ |
D | pyramids.hpp | 86 …pyramids_detail::pyrUp(shrinkPtr(src), shrinkPtr(dst), rows, cols, dst.rows, dst.cols, StreamAcces… in gridPyrUp()
|
/external/opencv3/modules/cudawarping/include/opencv2/ |
D | cudawarping.hpp | 210 CV_EXPORTS void pyrUp(InputArray src, OutputArray dst, Stream& stream = Stream::Null());
|
/external/opencv3/modules/imgproc/perf/opencl/ |
D | perf_pyramid.cpp | 98 OCL_TEST_CYCLE() cv::pyrUp(src, dst); in OCL_PERF_TEST_P()
|
/external/opencv3/samples/cpp/ |
D | squares.cpp | 56 pyrUp(pyr, timg, image.size()); in findSquares()
|
/external/opencv3/modules/photo/src/ |
D | merge.cpp | 228 pyrUp(img_pyr[lvl + 1], up, img_pyr[lvl].size()); in process() 247 pyrUp(res_pyr[lvl], up, res_pyr[lvl - 1].size()); in process()
|
/external/opencv3/samples/gpu/performance/ |
D | tests.cpp | 1008 TEST(pyrUp) in TEST() argument 1018 pyrUp(src, dst); in TEST() 1021 pyrUp(src, dst); in TEST() 1027 cuda::pyrUp(d_src, d_dst); in TEST() 1030 cuda::pyrUp(d_src, d_dst); in TEST()
|
/external/opencv3/modules/cudawarping/perf/ |
D | perf_warping.cpp | 422 TEST_CYCLE() cv::cuda::pyrUp(d_src, dst); in PERF_TEST_P() 430 TEST_CYCLE() cv::pyrUp(src, dst); in PERF_TEST_P()
|
/external/opencv3/samples/tapi/ |
D | squares.cpp | 42 pyrUp(pyr, timg, image.size()); in findSquares()
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | pyr_up.cl | 75 __kernel void pyrUp(__global const uchar * src, int src_step, int src_offset, int src_rows, int src…
|
/external/opencv3/modules/imgproc/src/ |
D | segmentation.cpp | 422 cv::pyrUp( dst_pyramid[level+1], dst_pyramid[level], dst_pyramid[level].size() ); in pyrMeanShiftFiltering()
|
D | pyramids.cpp | 1246 void cv::pyrUp( InputArray _src, OutputArray _dst, const Size& _dsz, int borderType ) in pyrUp() function in cv 1260 if(borderType == BORDER_DEFAULT && tegra::useTegra() && tegra::pyrUp(src, dst)) in pyrUp() 1452 cv::pyrUp( src, dst, dst.size() ); in cvPyrUp()
|
/external/opencv3/modules/java/src/ |
D | imgproc+Imgproc.java | 1694 public static void pyrUp(Mat src, Mat dst, Size dstsize, int borderType) in pyrUp() method in Imgproc 1703 public static void pyrUp(Mat src, Mat dst, Size dstsize) in pyrUp() method in Imgproc 1712 public static void pyrUp(Mat src, Mat dst) in pyrUp() method in Imgproc
|
/external/opencv3/modules/imgproc/include/opencv2/ |
D | imgproc.hpp | 2527 CV_EXPORTS_W void pyrUp( InputArray src, OutputArray dst,
|