minimizing.h
来自「中科院张的摄像机内外参数标定的源码和例子」· C头文件 代码 · 共 23 行
H
23 行
#ifndef _MINIMIZING_H
#define _MINIMIZING_H
/**
* @file minimizing.h
* nonlinear minimization
*/
#ifdef __cplusplus
extern "C" {
#endif
void lmHomography( double *photoPoints,double *modelPoints,double *initial,int numPoints,double *lm);
void lmARt( double *photoPoints,double *modelPoints,double *Ai,double *Alm,double *Ri,double *Rlm,
double *ti,double *tlm,int numPoints);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?