Subversion Repositories seema-scanner

Rev

Rev 82 | Rev 121 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 82 Rev 120
Line 2... Line 2...
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 cv::removeIncorrectMatches(const cv::Mat F, const std::vector<cv::Poin2f> &q0, const std::vector<cv::Poin2f> &q1, const float maxD,
-
 
8
                                    std::vector<cv::Poin2f> q0Correct, std::vector<cv::Poin2f> q1Correct);
-
 
9
    void rshift(cv::Mat& I, unsigned int shift);
7
    void drawChessboardCorners(cv::InputOutputArray _image, cv::Size patternSize, cv::InputArray _corners, bool patternWasFound, int line_width=1);
10
    void drawChessboardCorners(cv::InputOutputArray _image, cv::Size patternSize, cv::InputArray _corners, bool patternWasFound, int line_width=1);
8
    void cvDrawChessboardCorners(CvArr* _image, CvSize pattern_size, CvPoint2D32f* corners, int count, int found, int line_width=1);
11
    void cvDrawChessboardCorners(CvArr* _image, CvSize pattern_size, CvPoint2D32f* corners, int count, int found, int line_width=1);
9
    cv::Mat modulo(const cv::Mat &mat, float n);
12
    cv::Mat modulo(const cv::Mat &mat, float n);
10
    void matToPoints3f(const cv::Mat &mat, std::vector<cv::Point3f> &points);
13
    void matToPoints3f(const cv::Mat &mat, std::vector<cv::Point3f> &points);
11
    void convertMatFromHomogeneous(cv::Mat &src, cv::Mat &dst);
14
    void convertMatFromHomogeneous(cv::Mat &src, cv::Mat &dst);