Skip to content

Commit

Permalink
added description and output
Browse files Browse the repository at this point in the history
  • Loading branch information
garybradski authored Jun 30, 2017
1 parent b9be5a6 commit 3223102
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions example_04-02.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Example 4-2. Summation of two arrays using the N-ary operator
#include <opencv2/opencv.hpp>
#include <iostream>

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

cout << "\nExample 4-2. Summation of two arrays using the N-ary operator"
<< "\nCall:\n"
<< argv[0] << endl;

const int n_mat_size = 5;
const int n_mat_sz[] = { n_mat_size, n_mat_size, n_mat_size };

Expand Down

0 comments on commit 3223102

Please sign in to comment.