Skip to content

Commit 3223102

Browse files
authored
added description and output
1 parent b9be5a6 commit 3223102

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

example_04-02.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Example 4-2. Summation of two arrays using the N-ary operator
12
#include <opencv2/opencv.hpp>
23
#include <iostream>
34

@@ -7,6 +8,10 @@ using namespace std;
78
//
89
int main( int argc, char** argv ) {
910

11+
cout << "\nExample 4-2. Summation of two arrays using the N-ary operator"
12+
<< "\nCall:\n"
13+
<< argv[0] << endl;
14+
1015
const int n_mat_size = 5;
1116
const int n_mat_sz[] = { n_mat_size, n_mat_size, n_mat_size };
1217

0 commit comments

Comments
 (0)