stdafx.h

来自「用于系统跟踪的程序」· C头文件 代码 · 共 35 行

H
35
字号
// stdafx.h : 标准系统包含文件的包含文件,
// 或是常用但不常更改的项目特定的包含文件
//

#pragma once
#define NOTVALUE -9999

#include <iostream>
#include <tchar.h>

#pragma comment( lib , "lib\\RT.lib")
extern "C" _declspec(dllimport) void  RT1(double temp_K[],double temp_C[], double temp_A[],int NumOfPoint,double result[12]);
extern "C" _declspec(dllimport) void  RT2(double temp_K[],double temp_C[], double temp_A[],int NumOfPoint,double result[12]);
extern "C" _declspec(dllimport) void  RT3(double temp_K[],double temp_C[], double temp_A[],int NumOfPoint,double result[12]);
extern "C" _declspec(dllimport) void  RT4(double temp_K[],double temp_C[], double temp_A[],int NumOfPoint,double result[12]);
extern "C" _declspec(dllimport) void  RT5(double temp_K[],double temp_C[], double temp_A[],int NumOfPoint,double result[12]);


#pragma comment( lib , "lib\\POSIT.lib")
extern "C" _declspec(dllimport) int PositAlgolrithm(double fLength,double imageCenterX,double imageCenterY,double temp_C[],double temp_A[],int numOfPoint,double result[12]);

#pragma comment( lib , "lib\\RT6.lib")
//RT6
extern "C" _declspec(dllimport)	  void  RT6(double temp_K[],double temp_C[], double temp_A[],int NumOfPoint,double result[12]);
extern "C" __declspec(dllimport)  void  GetInverse(double src[12],double inverse[12]);
extern "C" __declspec(dllimport)  void  getEulerAngleFromRMatrix(double R[9],double& alpha,double& beta,double& gama);
extern "C" __declspec(dllimport)  void  Ceiling_to_Wall(double Ceiling_Coordinate[],double Wall_Coordinate[],int NumOfPoint,double result[12]);

#pragma comment( lib , "lib\\LeftMultiply.lib")
extern "C" _declspec(dllimport) void  LeftMultiply(double Matrix1[12],double Matrix2[12],double result[12]);



// TODO: 在此处引用程序要求的附加头文件
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?