/external/opencv3/modules/cudaarithm/src/cuda/ |
D | polar_cart.cu | 180 void cv::cuda::polarToCart(InputArray _mag, InputArray _angle, OutputArray _x, OutputArray _y, bool… in polarToCart() function in cv::cuda
|
/external/opencv3/modules/core/test/ocl/ |
D | test_arithm.cpp | 538 OCL_OFF(cv::polarToCart(src1_roi, src2_roi, dst1_roi, dst2_roi, true)); in OCL_TEST_P() 539 OCL_ON(cv::polarToCart(usrc1_roi, usrc2_roi, udst1_roi, udst2_roi, true)); in OCL_TEST_P() 552 OCL_OFF(cv::polarToCart(src1_roi, src2_roi, dst1_roi, dst2_roi)); in OCL_TEST_P() 553 OCL_ON(cv::polarToCart(usrc1_roi, usrc2_roi, udst1_roi, udst2_roi)); in OCL_TEST_P()
|
/external/opencv3/modules/cudaarithm/include/opencv2/ |
D | cudaarithm.hpp | 421 CV_EXPORTS void polarToCart(InputArray magnitude, InputArray angle, OutputArray x, OutputArray y, b…
|
/external/opencv3/modules/cudaarithm/perf/ |
D | perf_element_operations.cpp | 1444 TEST_CYCLE() cv::cuda::polarToCart(d_magnitude, d_angle, x, y, angleInDegrees); in PERF_TEST_P() 1454 TEST_CYCLE() cv::polarToCart(magnitude, angle, x, y, angleInDegrees); in PERF_TEST_P()
|
/external/opencv3/modules/cudaarithm/src/ |
D | element_operations.cpp | 86 void cv::cuda::polarToCart(InputArray, InputArray, OutputArray, OutputArray, bool, Stream&) { throw… in polarToCart() function in cv::cuda
|
/external/opencv3/modules/core/include/opencv2/ |
D | core.hpp | 1422 CV_EXPORTS_W void polarToCart(InputArray magnitude, InputArray angle,
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 1482 public static void polarToCart(Mat magnitude, Mat angle, Mat x, Mat y, boolean angleInDegrees) in polarToCart() method in Core 1491 public static void polarToCart(Mat magnitude, Mat angle, Mat x, Mat y) in polarToCart() method in Core
|
D | core.cpp | 2720 cv::polarToCart( magnitude, angle, x, y, (bool)angleInDegrees ); in Java_org_opencv_core_Core_polarToCart_10() 2744 cv::polarToCart( magnitude, angle, x, y ); in Java_org_opencv_core_Core_polarToCart_11()
|
/external/opencv3/modules/core/misc/java/test/ |
D | CoreTest.java | 1494 Core.polarToCart(magnitude, angle, xCoordinate, yCoordinate); in testPolarToCartMatMatMatMat() 1524 Core.polarToCart(magnitude, angle, xCoordinate, yCoordinate, true); in testPolarToCartMatMatMatMatBoolean()
|
/external/opencv3/modules/core/src/ |
D | mathfuncs.cpp | 621 void polarToCart( InputArray src1, InputArray src2, in polarToCart() function 1851 cv::polarToCart( Mag, Angle, X, Y, angle_in_degrees != 0 ); in cvPolarToCart()
|
/external/opencv3/modules/core/perf/opencl/ |
D | perf_arithm.cpp | 262 OCL_TEST_CYCLE() cv::polarToCart(src1, src2, dst1, dst2); in OCL_PERF_TEST_P()
|
/external/opencv3/doc/tutorials/introduction/documenting_opencv/ |
D | documentation_tutorial.markdown | 135 @sa log , cartToPolar , polarToCart , phase , pow , sqrt , magnitude
|
/external/opencv3/modules/cudaarithm/test/ |
D | test_element_operations.cpp | 2779 cv::cuda::polarToCart(loadMat(magnitude, useRoi), loadMat(angle, useRoi), x, y, angleInDegrees); in CUDA_TEST_P() 2783 cv::polarToCart(magnitude, angle, x_gold, y_gold, angleInDegrees); in CUDA_TEST_P()
|
/external/opencv3/modules/core/test/ |
D | test_arithm.cpp | 1078 cv::polarToCart(mag, angle, x, y, angleInDegrees); in op()
|