Searched defs:rotations (Results 1 - 7 of 7) sorted by relevance

/external/opencv3/modules/calib3d/test/
H A Dtest_homography_decomp.cpp64 vector<Mat> rotations; local
68 decomposeHomographyMat(_H, _K, rotations, translations, normals);
71 ASSERT_GT(static_cast<int>(rotations.size()), 0);
75 ASSERT_EQ(rotations.size(), normals.size());
78 ASSERT_TRUE(containsValidMotion(rotations, translations, normals));
80 decomposeHomographyMat(_H, _K, rotations, noArray(), noArray());
81 ASSERT_GT(static_cast<int>(rotations.size()), 0);
106 bool containsValidMotion(std::vector<Mat>& rotations, argument
113 vector<Mat>::iterator riter = rotations.begin();
118 riter != rotations
[all...]
/external/ImageMagick/MagickCore/
H A Dshear.c705 % Image *IntegralRotateImage(const Image *image,size_t rotations,
712 % o rotations: Specifies the number of 90 degree rotations.
715 MagickExport Image *IntegralRotateImage(const Image *image,size_t rotations,
741 rotations%=4;
742 if (rotations == 0)
744 if ((rotations == 1) || (rotations == 3))
759 switch (rotations)
1745 rotations,
711 IntegralRotateImage(const Image *image,size_t rotations, ExceptionInfo *exception) argument
1737 rotations, local
[all...]
H A Ddistort.c2817 rotations;
2831 for (rotations=0; angle > 45.0; rotations++)
2833 rotations%=4;
2837 return(IntegralRotateImage(image,rotations,exception));
2810 rotations; local
H A Dxwindow.c646 rotations;
665 for (rotations=0; normalized_degrees > 45.0; rotations++)
667 switch (rotations % 4)
2561 rotations;
2580 for (rotations=0; normalized_degrees > 45.0; rotations++)
2582 switch (rotations % 4)
640 rotations; local
2538 rotations; local
H A Ddisplay.c12107 rotations,
12435 for (rotations=0; normalized_degrees > 45.0; rotations++)
12462 switch (rotations % 4)
12519 if (((rotations % 4) == 1) || ((rotations % 4) == 3))
12075 rotations, local
/external/opencv3/modules/java/src/
H A Dcalib3d+Calib3d.java1118 // C++: int decomposeHomographyMat(Mat H, Mat K, vector_Mat& rotations, vector_Mat& translations, vector_Mat& normals)
1121 //javadoc: decomposeHomographyMat(H, K, rotations, translations, normals)
1122 public static int decomposeHomographyMat(Mat H, Mat K, List<Mat> rotations, List<Mat> translations, List<Mat> normals) argument
1128 Converters.Mat_to_vector_Mat(rotations_mat, rotations);
1309 // C++: int decomposeHomographyMat(Mat H, Mat K, vector_Mat& rotations, vector_Mat& translations, vector_Mat& normals)
H A Dcalib3d.cpp3636 // int decomposeHomographyMat(Mat H, Mat K, vector_Mat& rotations, vector_Mat& translations, vector_Mat& normals)
3647 std::vector<Mat> rotations; local
3655 int _retval_ = cv::decomposeHomographyMat( H, K, rotations, translations, normals );
3656 vector_Mat_to_Mat( rotations, rotations_mat ); vector_Mat_to_Mat( translations, translations_mat ); vector_Mat_to_Mat( normals, normals_mat );

Completed in 749 milliseconds