Reasons for using smallCamelCase for function names - cocoa-xu/evision GitHub Wiki
smallCamelCase will be used for all functions.
The reasons why I chose smallCamelCase are that
- It transforms much fewer function names as many of them in OpenCV are already starting with a lowercase letter.
- Avoid converting abbreviations to lowercase spellings, which can be quite tricky sometimes.
- Make the APIs similar to their corresponding ones in C++/Python.
- This could also help when the user wants to search for existing examples/usage online.