affprojnr.h
来自「学习跟踪的好程序」· C头文件 代码 · 共 15 行
H
15 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?