-
Notifications
You must be signed in to change notification settings - Fork 901
/
example_10-01.cpp
50 lines (39 loc) · 1.23 KB
/
example_10-01.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
//Example 10-1. Using cv::threshold() to sum three channels of an image
#include <opencv2/opencv.hpp>
#include <iostream>
using namespace std;
void sum_rgb( const cv::Mat& src, cv::Mat& dst ) {
// Split image onto the color planes.
//
vector< cv::Mat> planes;
cv::split(src, planes);
cv::Mat b = planes[0], g = planes[1], r = planes[2], s;
// Add equally weighted rgb values.
//
cv::addWeighted( r, 1./3., g, 1./3., 0.0, s );
cv::addWeighted( s, 1., b, 1./3., 0.0, s );
// Truncate values above 100.
//
cv::threshold( s, dst, 100, 100, cv::THRESH_TRUNC );
}
void help(char ** argv) {
cout << "\nExample 10-1. Using cv::threshold() to sum three channels of an image\n" << endl;
cout << "Call:\n" << argv[0] << " ../faces.jpg" << endl;
}
int main(int argc, char** argv) {
help(argv);
if(argc < 2) { cout << "\nSpecify input image" << endl; return -1; }
// Load the image from the given file name.
//
cv::Mat src = cv::imread( argv[1] ), dst;
if( src.empty() ) { cout << "can not load " << argv[1] << endl; return -1; }
sum_rgb( src, dst);
// Create a named window with the name of the file and
// show the image in the window
//
cv::imshow( argv[1], dst );
// Idle until the user hits any key.
//
cv::waitKey(0);
return 0;
}