Hello,
I'm trying to use opencv library in my application, and meet the troubles. In the attached file 3 functions with following prototypes:
void cvSetErrStatus(long status);
CvMat* cvCreateMat( int rows, int cols, int type );
void cvFindHomography( const CvMat* src_points, const CvMat* dst_points, CvMat* homography );
As long as LV can't pass structures as out parameter of CLFN (CvMat is a structure), I use pointer to numeric value for structure passing from one function to another. The first two functions work properly, but the last one returns error. Any suggestions?