函数名作参数,提示缺少参数列表
下面是一个计算变换矩阵的函数,其中第四个参数是指针类型的:
CvMat* ransac_xform( struct feature* features, int n, int mtype, ransac_xform_fn xform_fn, int m, double p_badxform, ransac_err_fn err_fn, double err_tol,struct feature*** inliers, int* n_in ){...}
CvMat* H; H = ransac_xform( feat1, n1, FEATURE_FWD_MATCH, lsq_homog, 4, 0.01, homog_xfer_err, 3.0, NULL, NULL );
如需要阅读该回复,请登录或注册CSDN!
如需要阅读该回复,请登录或注册CSDN!