This post lists those classic movies (in my opition) that are worth watching for multiple times.
fwrite/fread for different data types
We use fwrite
to write formated data to disk and use fread
to later read them back from disk. Different data types are very different in using fwrite/fread
. The following shows how to do for vector
(simple), Mat
, vector<Mat>
, struct
(simple), struct
(complex).
MATLAB/C++ Mixed Programming: distribute MATLAB code into independent C++ shared library
There are two ways in VC++ to call MATLAB:
- distribute MATLAB code into MATLAB independent C++ shared library.
- call MATLAB directly in VC++. Refer to the this blog for details.
This blog will focus on the first approach.
DOS sumup
Conversion between image and world coordinates
Conversion between Image Coordinates and World Coordinates are fundamental to all image formation problems. Always confused to me. Sumup here for further references.