getRotationMatrix2D 2113 modules/imgproc/include/opencv2/imgproc.hpp CV_EXPORTS_W Mat getRotationMatrix2D( Point2f center, double angle, double scale );
getRotationMatrix2D  989 modules/imgproc/misc/java/test/ImgprocTest.java         dst = Imgproc.getRotationMatrix2D(center, 0, 1);
getRotationMatrix2D   41 modules/imgproc/perf/perf_warp.cpp     Mat warpMat = getRotationMatrix2D(Point2f(src.cols/2.f, src.rows/2.f), 30., 2.2);
getRotationMatrix2D   71 modules/imgproc/perf/perf_warp.cpp     Mat rotMat = getRotationMatrix2D(Point2f(src.cols/2.f, src.rows/2.f), 30., 2.2);
getRotationMatrix2D 6406 modules/imgproc/src/imgwarp.cpp     cv::Mat M0 = cv::cvarrToMat(matrix), M = cv::getRotationMatrix2D(center, angle, scale);
getRotationMatrix2D  127 modules/imgproc/test/ocl/test_warp.cpp         Mat M = getRotationMatrix2D(Point2f(src_roi.cols / 2.0f, src_roi.rows / 2.0f),
getRotationMatrix2D  526 modules/imgproc/test/test_imgwarp.cpp     getRotationMatrix2D(center, angle, scale).convertTo(mat, mat.depth());
getRotationMatrix2D 1647 modules/imgproc/test/test_imgwarp.cpp         Mat rot = getRotationMatrix2D(Point2f(0.f, 0.f), 1, 1);
getRotationMatrix2D 1019 modules/imgproc/test/test_imgwarp_strict.cpp     M = getRotationMatrix2D(Point2f(src.cols / 2.f, src.rows / 2.f),
getRotationMatrix2D  147 modules/video/test/test_estimaterigid.cpp     Mat aff = cv::getRotationMatrix2D(Point(img.cols/2, img.rows/2), 1, 0.99);
getRotationMatrix2D   62 samples/cpp/tutorial_code/ImgTrans/Geometric_Transforms_Demo.cpp   rot_mat = getRotationMatrix2D( center, angle, scale );