Doxygen tutorials: some fixes in RST-docs

This commit is contained in:
Maksim Shabunin
2014-11-27 13:23:24 +03:00
parent 03e213ccae
commit 220f671655
45 changed files with 92 additions and 87 deletions

View File

@@ -42,7 +42,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
/// Function header
void thresh_callback(int, void* );
/** @function main */
/* @function main */
int main( int argc, char** argv )
{
/// Load source image and convert it to gray
@@ -64,7 +64,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
return(0);
}
/** @function thresh_callback */
/* @function thresh_callback */
void thresh_callback(int, void* )
{
Mat threshold_output;

View File

@@ -42,7 +42,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
/// Function header
void thresh_callback(int, void* );
/** @function main */
/* @function main */
int main( int argc, char** argv )
{
/// Load source image and convert it to gray
@@ -64,7 +64,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
return(0);
}
/** @function thresh_callback */
/* @function thresh_callback */
void thresh_callback(int, void* )
{
Mat threshold_output;

View File

@@ -40,7 +40,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
/// Function header
void thresh_callback(int, void* );
/** @function main */
/* @function main */
int main( int argc, char** argv )
{
/// Load source image and convert it to gray
@@ -62,7 +62,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
return(0);
}
/** @function thresh_callback */
/* @function thresh_callback */
void thresh_callback(int, void* )
{
Mat canny_output;

View File

@@ -40,7 +40,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
/// Function header
void thresh_callback(int, void* );
/** @function main */
/* @function main */
int main( int argc, char** argv )
{
/// Load source image and convert it to gray
@@ -62,7 +62,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
return(0);
}
/** @function thresh_callback */
/* @function thresh_callback */
void thresh_callback(int, void* )
{
Mat src_copy = src.clone();

View File

@@ -42,7 +42,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
/// Function header
void thresh_callback(int, void* );
/** @function main */
/* @function main */
int main( int argc, char** argv )
{
/// Load source image and convert it to gray
@@ -64,7 +64,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
return(0);
}
/** @function thresh_callback */
/* @function thresh_callback */
void thresh_callback(int, void* )
{
Mat canny_output;

View File

@@ -32,7 +32,7 @@ This tutorial code's is shown lines below. You can also download it from `here <
using namespace cv;
using namespace std;
/** @function main */
/* @function main */
int main( int argc, char** argv )
{
/// Create an image