Friday, May 29, 2020
How to get paths defined in the system environment
char path[_MAX_PATH];
const char* varName = "[system environment variable name]";
size_t len;
getenv_s(&len, path, 80, varName);
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
lidar (laser scanner) georeferencingf (sensor model)
Reduced normal matrix for solving fast photogrammetric bundle adjustment
Reduced normatrix for photogrammetric bundle adjustment based on the collinearity equations Note: There are $m_1$ photos and $m_2$ obje...
Photogrammetric Intersection
Linear Intersection for a Stereo Pair There are two images. Object point vs. image point, in the first image: $$ \begin{pmatrix} X \\...
Print out a (decimal) number as a hexadecimal number
int decNum = 123456; char hexNum[16]; // decimal number to hexadecimal number sprintf_s(hexNum, 16, "%X", decNum); printf("%d...
No comments:
Post a Comment