From 26da6d75305d02e17e7b011ab88f6d50dcea02f0 Mon Sep 17 00:00:00 2001 From: Justin Berger Date: Thu, 15 Mar 2018 17:04:30 -0600 Subject: Refactored the minimal ocv to be in redist --- src/epnp/opencv_shim.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/epnp/opencv_shim.h (limited to 'src/epnp/opencv_shim.h') 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 -- cgit v1.2.3