15 lines
273 B
C
15 lines
273 B
C
|
|
#ifndef TRANSFORM_TABLE_H_
|
||
|
|
#define TRANSFORM_TABLE_H_
|
||
|
|
|
||
|
|
#include "zf_common_headfile.h"
|
||
|
|
|
||
|
|
|
||
|
|
extern const float UndistInverseMapH[90][140] ;
|
||
|
|
extern const float UndistInverseMapW[90][140] ;
|
||
|
|
void transform(float X, float Y, int* x, int* y);
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* TRANSFORM_TABLE_H_ */
|
||
|
|
|
||
|
|
|