Subversion Repositories seema-scanner

Rev

Rev 35 | Rev 48 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35 Rev 42
1
#ifndef CVTOOLS_H
1
#ifndef CVTOOLS_H
2
#define CVTOOLS_H
2
#define CVTOOLS_H
3
 
3
 
4
#include <opencv2/opencv.hpp>
4
#include <opencv2/opencv.hpp>
5
 
5
 
6
namespace cvtools{
6
namespace cvtools{
-
 
7
    void matToPoints3f(const cv::Mat &mat, std::vector<cv::Point3f> &points);
-
 
8
    void convertMatFromHomogeneous(cv::Mat &src, cv::Mat &dst);
7
    void handEyeCalibrationTsai(const std::vector<cv::Matx33f> R, const std::vector<cv::Vec3f> t, const std::vector<cv::Matx33f> R_mark, const std::vector<cv::Vec3f> t_mark, cv::Matx33f &Omega, cv::Vec3f &tau);
9
    void handEyeCalibrationTsai(const std::vector<cv::Matx33f> R, const std::vector<cv::Vec3f> t, const std::vector<cv::Matx33f> R_mark, const std::vector<cv::Vec3f> t_mark, cv::Matx33f &Omega, cv::Vec3f &tau);
8
    void fitSixDofData(const std::vector<cv::Matx33f> R, const std::vector<cv::Vec3f> t, const std::vector<cv::Matx33f> R_mark, const std::vector<cv::Vec3f> t_mark, cv::Matx33f &Omega, cv::Vec3f &tau);
10
    void fitSixDofData(const std::vector<cv::Matx33f> R, const std::vector<cv::Vec3f> t, const std::vector<cv::Matx33f> R_mark, const std::vector<cv::Vec3f> t_mark, cv::Matx33f &Omega, cv::Vec3f &tau);
9
    void initDistortMap(const cv::Matx33f cameraMatrix, const cv::Vec<float, 5> distCoeffs, const cv::Size size, cv::Mat &map1, cv::Mat &map2);
11
    void initDistortMap(const cv::Matx33f cameraMatrix, const cv::Vec<float, 5> distCoeffs, const cv::Size size, cv::Mat &map1, cv::Mat &map2);
10
    cv::Mat diamondDownsample(cv::Mat &pattern);
12
    cv::Mat diamondDownsample(cv::Mat &pattern);
11
    void imshow(const char *windowName, cv::Mat im, unsigned int x, unsigned int y);
13
    void imshow(const char *windowName, cv::Mat im, unsigned int x, unsigned int y);
12
    void imagesc(const char* windowName, cv::Mat im);
14
    void imagesc(const char* windowName, cv::Mat im);
13
    cv::Mat histimage(cv::Mat histogram);
15
    cv::Mat histimage(cv::Mat histogram);
14
    void hist(const char *windowName, cv::Mat im, unsigned int x, unsigned int y);
16
    void hist(const char *windowName, cv::Mat im, unsigned int x, unsigned int y);
15
    void writeMat( cv::Mat const& mat, const char* filename, const char* varName = "A", bool bgr2rgb = true);
17
    void writeMat( cv::Mat const& mat, const char* filename, const char* varName = "A", bool bgr2rgb = true);
16
}
18
}
17
 
19
 
18
#endif // CVTOOLS_H
20
#endif // CVTOOLS_H
19
 
21