Patterns
There are a few basic rules that may help you when using OpenCV:
- If it's a structure, it'll begin with a big C. (e.g. CvMat, CvArr). The obvious exception is the IplImage structure.
- If it's a method, it'll begin with a little c. (e.g. cvTransform, cvCopy).
- All structures can be found under 'CxCore', along with any of the methods that work at the core level. This means things like array operations, statistics, drawing functions, low-level data operations, error handling, etc.
