Function declared without variable name in examples
Hello, I'm looking at some example provided by OpenCV and I see a recurrent typo that I don't fully understand. For instance, the erosion function in "Eroding and Dilating" example is declared:
void Erosion( int, void* );
Why do they use int and void* without variable name? And to what variable does it refer?
Thank you in advance
Explanation