-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
25 lines (21 loc) · 957 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include "inspection.h"
using namespace cv;
using namespace std;
int main(int argc, char** argv)
{
cout << " ******************************************************************" << endl;
cout << " || AUTHOR: Sarim Mehdi ||" << endl;
cout << " || CREATED ON: 9 January 2019 ||" << endl;
cout << " || PURPOSE: Visual Inspection of Blade Tools ||" << endl;
cout << " ******************************************************************" << endl;
//Load source image and convert it to gray
Mat src_gray = imread("saw_07.png", IMREAD_GRAYSCALE);
Inspector myImg(src_gray); myImg.makeTrackbar();
waitKey(0);
return(0);
}