Skip to content

Commit b9be5a6

Browse files
authored
added description and calling info output
1 parent c7b8595 commit b9be5a6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

example_04-01.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Example 4-1. Summation of a multidimensional array, done plane by plane
12
#include <opencv2/opencv.hpp>
23
#include <iostream>
34

@@ -6,6 +7,10 @@ using namespace std;
67
// Summation of a multidimensional array, done plane by plane
78
//
89
int main( int argc, char** argv ) {
10+
11+
cout << "\nExample 4-1. Summation of a multidimensional array, done plane by plane"
12+
<< "\nCall:\n"
13+
<< argv[0] << endl;
914

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

0 commit comments

Comments
 (0)