📄 affprojnr.h
字号:
/* affprojNR.h - fitting affine and projective transforms using singular * value decomposition (SVD) routines from numerical recipes in C for solving * a set of linear equations. Some care is taken to generate a well-conditioned * set of equations. See affprojsvd.c * */void svdfitproj(int numpts, float *U, float *V, float *X, float *Y, float *p, int debug);void svdfitaff(int numpts, float *U, float *V, float *X, float *Y, float *p, int debug);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -