Add interactive calibration app

This commit is contained in:
Vladislav Sovrasov
2016-04-08 16:30:56 +03:00
parent ec63343f34
commit 5a0c04409b
25 changed files with 3422 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef LINALG_HPP
#define LINALG_HPP
#include <opencv2/core.hpp>
namespace cvfork {
double invert( cv::InputArray _src, cv::OutputArray _dst, int method );
bool solve(cv::InputArray _src, cv::InputArray _src2arg, cv::OutputArray _dst, int method );
}
#endif