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 c7b8595 commit b9be5a6Copy full SHA for b9be5a6
example_04-01.cpp
@@ -1,3 +1,4 @@
1
+// Example 4-1. Summation of a multidimensional array, done plane by plane
2
#include <opencv2/opencv.hpp>
3
#include <iostream>
4
@@ -6,6 +7,10 @@ using namespace std;
6
7
// Summation of a multidimensional array, done plane by plane
8
//
9
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;
14
15
const int n_mat_size = 5;
16
const int n_mat_sz[] = { n_mat_size, n_mat_size, n_mat_size };
0 commit comments