OpenCV Matrix Operations
Since OpenCV is the most widely used image processing library, the matrix operation and basic linear algebra is inevidable.
1. Initialization
Remeber that you have to initialize a Mat from a array.
1 |
|
2. Point
1 | typedef Point_<int> Point2i; |
From the above we can see that Point
, Point2i
, Point_<int>
are exactly the same.