Added Smoothing tutorial in reST and links to the code in samples/cpp/tutorial_code

This commit is contained in:
Ana Huaman
2011-06-18 17:27:02 +00:00
parent 151bfb2ae2
commit 52b3391067
10 changed files with 325 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
/**
* file FilterDemo1.cpp
* file Smoothing.cpp
* brief Sample code for simple filters
* author OpenCV team
*/
@@ -19,7 +19,7 @@ int DELAY_BLUR = 100;
int MAX_KERNEL_LENGTH = 31;
Mat src; Mat dst;
char window_name[] = "Filter Demo 1";
char window_name[] = "Smoothing Demo";
/// Function headers
int display_caption( char* caption );