cuda::polarToCart: update documentation
authorHamdi Sahloul <hamdisahloul@hotmail.com>
Fri, 21 Sep 2018 21:58:44 +0000 (06:58 +0900)
committerHamdi Sahloul <hamdisahloul@hotmail.com>
Fri, 21 Sep 2018 22:02:43 +0000 (07:02 +0900)
modules/cudaarithm/include/opencv2/cudaarithm.hpp

index a482b49..d040bb1 100644 (file)
@@ -415,10 +415,10 @@ CV_EXPORTS void cartToPolar(InputArray x, InputArray y, OutputArray magnitude, O
 
 /** @brief Converts polar coordinates into Cartesian.
 
-@param magnitude Source matrix containing magnitudes ( CV_32FC1 ).
-@param angle Source matrix containing angles ( CV_32FC1 ).
-@param x Destination matrix of real components ( CV_32FC1 ).
-@param y Destination matrix of imaginary components ( CV_32FC1 ).
+@param magnitude Source matrix containing magnitudes ( CV_32FC1 or CV_64FC1 ).
+@param angle Source matrix containing angles ( same type as magnitude ).
+@param x Destination matrix of real components ( same type as magnitude ).
+@param y Destination matrix of imaginary components ( same type as magnitude ).
 @param angleInDegrees Flag that indicates angles in degrees.
 @param stream Stream for the asynchronous version.
  */