Home
last modified time | relevance | path

Searched refs:polarToCart (Results 1 – 14 of 14) sorted by relevance

/external/opencv3/modules/cudaarithm/src/cuda/
Dpolar_cart.cu180 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/
Dtest_arithm.cpp538 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/
Dcudaarithm.hpp421 CV_EXPORTS void polarToCart(InputArray magnitude, InputArray angle, OutputArray x, OutputArray y, b…
/external/opencv3/modules/cudaarithm/perf/
Dperf_element_operations.cpp1444 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/
Delement_operations.cpp86 void cv::cuda::polarToCart(InputArray, InputArray, OutputArray, OutputArray, bool, Stream&) { throw… in polarToCart() function in cv::cuda
/external/opencv3/modules/core/include/opencv2/
Dcore.hpp1422 CV_EXPORTS_W void polarToCart(InputArray magnitude, InputArray angle,
/external/opencv3/modules/java/src/
Dcore+Core.java1482 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
Dcore.cpp2720 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/
DCoreTest.java1494 Core.polarToCart(magnitude, angle, xCoordinate, yCoordinate); in testPolarToCartMatMatMatMat()
1524 Core.polarToCart(magnitude, angle, xCoordinate, yCoordinate, true); in testPolarToCartMatMatMatMatBoolean()
/external/opencv3/modules/core/src/
Dmathfuncs.cpp621 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/
Dperf_arithm.cpp262 OCL_TEST_CYCLE() cv::polarToCart(src1, src2, dst1, dst2); in OCL_PERF_TEST_P()
/external/opencv3/doc/tutorials/introduction/documenting_opencv/
Ddocumentation_tutorial.markdown135 @sa log , cartToPolar , polarToCart , phase , pow , sqrt , magnitude
/external/opencv3/modules/cudaarithm/test/
Dtest_element_operations.cpp2779 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/
Dtest_arithm.cpp1078 cv::polarToCart(mag, angle, x, y, angleInDegrees); in op()