1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

added cv::cartToPolar to T-API

This commit is contained in:
Ilya Lavrenov
2013-11-30 20:05:54 +04:00
parent 435028ccee
commit ba850f0b64
4 changed files with 80 additions and 7 deletions
+1 -1
View File
@@ -2647,7 +2647,7 @@ void cv::transpose( InputArray _src, OutputArray _dst )
{
TransposeInplaceFunc func = transposeInplaceTab[esz];
CV_Assert( func != 0 );
// CV_Assert( dst.cols == dst.rows );
CV_Assert( dst.cols == dst.rows );
func( dst.data, dst.step, dst.rows );
}
else