|
|
@ -59,7 +59,7 @@ using namespace std; |
|
|
|
#define MESSAGE_ERROR_DIFF_1 "Accuracy of eigen values computing less than required." |
|
|
|
#define MESSAGE_ERROR_DIFF_1 "Accuracy of eigen values computing less than required." |
|
|
|
#define MESSAGE_ERROR_DIFF_2 "Accuracy of eigen vectors computing less than required." |
|
|
|
#define MESSAGE_ERROR_DIFF_2 "Accuracy of eigen vectors computing less than required." |
|
|
|
#define MESSAGE_ERROR_ORTHO "Matrix of eigen vectors is not orthogonal." |
|
|
|
#define MESSAGE_ERROR_ORTHO "Matrix of eigen vectors is not orthogonal." |
|
|
|
#define MESSAGE_ERROR_ORDER "Eigen values are not sorted in ascending order." |
|
|
|
#define MESSAGE_ERROR_ORDER "Eigen values are not sorted in descending order." |
|
|
|
|
|
|
|
|
|
|
|
const int COUNT_NORM_TYPES = 3; |
|
|
|
const int COUNT_NORM_TYPES = 3; |
|
|
|
const int NORM_TYPE[COUNT_NORM_TYPES] = {cv::NORM_L1, cv::NORM_L2, cv::NORM_INF}; |
|
|
|
const int NORM_TYPE[COUNT_NORM_TYPES] = {cv::NORM_L1, cv::NORM_L2, cv::NORM_INF}; |
|
|
@ -257,7 +257,7 @@ bool Core_EigenTest::check_pairs_order(const cv::Mat& eigen_values) |
|
|
|
if (!(eigen_values.at<float>(i, 0) > eigen_values.at<float>(i+1, 0))) |
|
|
|
if (!(eigen_values.at<float>(i, 0) > eigen_values.at<float>(i+1, 0))) |
|
|
|
{ |
|
|
|
{ |
|
|
|
std::cout << endl; std::cout << "Checking order of eigen values vector " << eigen_values << "..." << endl; |
|
|
|
std::cout << endl; std::cout << "Checking order of eigen values vector " << eigen_values << "..." << endl; |
|
|
|
std::cout << "Pair of indexes with non ascending of eigen values: (" << i << ", " << i+1 << ")." << endl; |
|
|
|
std::cout << "Pair of indexes with non descending of eigen values: (" << i << ", " << i+1 << ")." << endl; |
|
|
|
std::cout << endl; |
|
|
|
std::cout << endl; |
|
|
|
CV_Error(CORE_EIGEN_ERROR_ORDER, MESSAGE_ERROR_ORDER); |
|
|
|
CV_Error(CORE_EIGEN_ERROR_ORDER, MESSAGE_ERROR_ORDER); |
|
|
|
return false; |
|
|
|
return false; |
|
|
@ -272,9 +272,9 @@ bool Core_EigenTest::check_pairs_order(const cv::Mat& eigen_values) |
|
|
|
if (!(eigen_values.at<double>(i, 0) > eigen_values.at<double>(i+1, 0))) |
|
|
|
if (!(eigen_values.at<double>(i, 0) > eigen_values.at<double>(i+1, 0))) |
|
|
|
{ |
|
|
|
{ |
|
|
|
std::cout << endl; std::cout << "Checking order of eigen values vector " << eigen_values << "..." << endl; |
|
|
|
std::cout << endl; std::cout << "Checking order of eigen values vector " << eigen_values << "..." << endl; |
|
|
|
std::cout << "Pair of indexes with non ascending of eigen values: (" << i << ", " << i+1 << ")." << endl; |
|
|
|
std::cout << "Pair of indexes with non descending of eigen values: (" << i << ", " << i+1 << ")." << endl; |
|
|
|
std::cout << endl; |
|
|
|
std::cout << endl; |
|
|
|
CV_Error(CORE_EIGEN_ERROR_ORDER, "Eigen values are not sorted in ascending order."); |
|
|
|
CV_Error(CORE_EIGEN_ERROR_ORDER, "Eigen values are not sorted in descending order."); |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|