Update and expand erosion / dilation tutorial

- Add python explanation for erosion and dilation
- Add java explanation for erosion and dilation
- Restructure and reword specific sections
This commit is contained in:
Christos Malliaridis
2020-07-14 18:44:12 +02:00
parent 301c078d19
commit 3c25fd1ba5
4 changed files with 250 additions and 77 deletions
@@ -25,6 +25,7 @@ int const max_kernel_size = 21;
void Erosion( int, void* );
void Dilation( int, void* );
//![main]
/**
* @function main
*/
@@ -70,6 +71,7 @@ int main( int argc, char** argv )
waitKey(0);
return 0;
}
//![main]
//![erosion]
/**