-
Notifications
You must be signed in to change notification settings - Fork 903
/
Exercises_8_1.cpp
95 lines (87 loc) · 3.02 KB
/
Exercises_8_1.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
//Exercises_8_1.cpp Exercises at end of Chapter 8
//1
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace cv;
using namespace std;
void help(const char **argv) {
cout << "\n\n"
<< "This program solves the Exercise 1 at the end of Chapter 8 \n"
<< "Call:\n"
<< argv[0] << " <path/video_name>\n\n"
<< "For example: ./" << argv[0] << " ../tree.avi\n"
<< endl;
}
int main( int argc, const char** argv )
{
help(argv);
if(argc < 2) {
cout << "\nERROR: You had too few parameters.\n" << endl;
return -1;
}
/************************************************************************/
/* 1. Create a program that
(1) reads frames from a video,
(2) turns the result to gray‐scale, and
(3) performs Canny edge detection on the image.
Display all three stages of processing in three different windows, with each window appropriately
named for its function.
a. Display all three stages of processing in one image. (Hint: create another
image of the same height but three times the width as the video frame. Copy
the images into this, either by using pointers or (more cleverly) by creating
three new image headers that point to the beginning of and to one-third and
two-thirds of the way into the imageData. Then use Mat::copyTo().)
b. Write appropriate text labels describing the processing in each of the three
slots.*/
/************************************************************************/
VideoCapture capture;
if(!capture.open(argv[1])){
cout << "Could not open " << argv[1] << endl;
return 1;
}
double rate=capture.get(CV_CAP_PROP_FPS);
Mat MatFrame;
Mat MatGray;
Mat MatCanny;
int delay=1000/rate;
cout << "rate = " << rate << ", delay = " << delay << endl;
cout << "\nEsq to exit, or let it run out, then any key to release capture and exit.\n" << endl;
int frame_count = 0;
while(1)
{
capture >> MatFrame;
if( !MatFrame.data ) {
cout << "Done with capture" << endl;
break;
}
//(1)
imshow("Raw Video",MatFrame);
//(2)
cvtColor(MatFrame,MatGray,COLOR_BGR2GRAY);
imshow("Gray Video",MatGray);
//(3)
Canny(MatGray,MatCanny,100,255);
imshow("Canny Video",MatCanny);
//question a
Mat MatAll(MatFrame.rows,3* MatFrame.cols ,CV_8UC3,Scalar::all(0));
cvtColor(MatGray,MatGray,COLOR_GRAY2BGR);
cvtColor(MatCanny,MatCanny,COLOR_GRAY2BGR);
Mat MatSub = MatAll.colRange(0, MatFrame.cols);
MatFrame.copyTo(MatSub);
MatSub = MatAll.colRange( MatFrame.cols,2*MatFrame.cols);
MatGray.copyTo(MatSub);
MatSub = MatAll.colRange(2*MatFrame.cols,3*MatFrame.cols);
MatCanny.copyTo(MatSub);
//question b
Scalar color = CV_RGB(255,0,0);
putText(MatAll,"raw video",Point(50,30),CV_FONT_HERSHEY_DUPLEX,1.0f,color);
putText(MatAll,"gray video",Point(50+MatFrame.cols,30),CV_FONT_HERSHEY_DUPLEX,1.0f,color);
putText(MatAll,"canny video",Point(50+2*MatFrame.cols,30),CV_FONT_HERSHEY_DUPLEX,1.0f,color);
imshow("all Video",MatAll);
if ((cv::waitKey(delay) & 255) == 27)
break;
}
waitKey();
capture.release();
return 0;
}