Skip to content

Commit

Permalink
added description and calling info output
Browse files Browse the repository at this point in the history
  • Loading branch information
garybradski authored Jun 30, 2017
1 parent c7b8595 commit b9be5a6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions example_04-01.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Example 4-1. Summation of a multidimensional array, done plane by plane
#include <opencv2/opencv.hpp>
#include <iostream>

Expand All @@ -6,6 +7,10 @@ using namespace std;
// Summation of a multidimensional array, done plane by plane
//
int main( int argc, char** argv ) {

cout << "\nExample 4-1. Summation of a multidimensional array, done plane by plane"
<< "\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 b9be5a6

Please sign in to comment.