Subversion Repositories OpenCV2-Cookbook

Rev

Rev 3 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3 Rev 5
Line 16... Line 16...
16
\*------------------------------------------------------------------------------------------*/
16
\*------------------------------------------------------------------------------------------*/
17
17
18
#include <iostream>
18
#include <iostream>
19
using namespace std;
19
using namespace std;
20
20
21
#include <opencv2\core\core.hpp>
21
#include <opencv2/core/core.hpp>
22
#include <opencv2\highgui\highgui.hpp>
22
#include <opencv2/highgui/highgui.hpp>
23
23
24
#include "imageComparator.h"
24
#include "imageComparator.h"
25
25
26
int main()
26
int main()
27
{
27
{
Line 69... Line 69...
69
        input= cv::imread("../fundy.jpg");
69
        input= cv::imread("../fundy.jpg");
70
        cout << "waves vs fundy: " << c.compare(input) << endl;
70
        cout << "waves vs fundy: " << c.compare(input) << endl;
71
71
72
        cv::waitKey();
72
        cv::waitKey();
73
        return 0;
73
        return 0;
74
}
-
 
75
74
}
-
 
75