We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9be5a6 commit 3223102Copy full SHA for 3223102
example_04-02.cpp
@@ -1,3 +1,4 @@
1
+// Example 4-2. Summation of two arrays using the N-ary operator
2
#include <opencv2/opencv.hpp>
3
#include <iostream>
4
@@ -7,6 +8,10 @@ using namespace std;
7
8
//
9
int main( int argc, char** argv ) {
10
11
+ cout << "\nExample 4-2. Summation of two arrays using the N-ary operator"
12
+ << "\nCall:\n"
13
+ << argv[0] << endl;
14
+
15
const int n_mat_size = 5;
16
const int n_mat_sz[] = { n_mat_size, n_mat_size, n_mat_size };
17
0 commit comments