aboutsummaryrefslogtreecommitdiff
path: root/src/epnp/opencv_shim.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/epnp/opencv_shim.h')
-rw-r--r--src/epnp/opencv_shim.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/epnp/opencv_shim.h b/src/epnp/opencv_shim.h
deleted file mode 100644
index 5701f1d..0000000
--- a/src/epnp/opencv_shim.h
+++ /dev/null
@@ -1,31 +0,0 @@
-int cvRound(float f);
-#define CV_Error(code, msg) assert(0 && msg); // cv::error( code, msg, CV_Func, __FILE__, __LINE__ )
-
-#include "shim_types_c.h"
-
-void print_mat(const CvMat *M);
-
-CvMat *cvCreateMat(int height, int width, int type);
-double cvInvert(const CvMat *srcarr, CvMat *dstarr, int method);
-void cvGEMM(const CvMat *src1, const CvMat *src2, double alpha, const CvMat *src3, double beta, CvMat *dst, int tABC);
-int cvSolve(const CvMat *Aarr, const CvMat *Barr, CvMat *xarr, int method);
-void cvSetZero(CvMat *arr);
-void cvCopyTo(const CvMat *src, CvMat *dest);
-CvMat *cvCloneMat(const CvMat *mat);
-void cvReleaseMat(CvMat **mat);
-void cvSVD(CvMat *aarr, CvMat *warr, CvMat *uarr, CvMat *varr, int flags);
-void cvMulTransposed(const CvMat *src, CvMat *dst, int order, const CvMat *delta, double scale);
-void cvTranspose(const CvMat *M, CvMat *dst);
-void print_mat(const CvMat *M);
-
-#define CV_SVD 1
-#define CV_SVD_MODIFY_A 1
-#define CV_SVD_SYM 2
-#define CV_SVD_U_T 2
-#define CV_SVD_V_T 4
-extern const int DECOMP_SVD;
-extern const int DECOMP_LU;
-
-#define GEMM_1_T 1
-#define GEMM_2_T 2
-#define GEMM_3_T 4