Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing return statement #83

Open
scturtle opened this issue Sep 29, 2018 · 1 comment
Open

missing return statement #83

scturtle opened this issue Sep 29, 2018 · 1 comment

Comments

@scturtle
Copy link

int CvEMEstimator::runKernel( const CvMat* m1, const CvMat* m2, CvMat* model )
{
run5Point(m1, m2, model);
}

@singhsonam2509
Copy link

singhsonam2509 commented Oct 4, 2018

I have the same problem. I am running CamOdocal Algorithm on Windows.
The missing return statement results in the build error. Right now, I fixed it using below code.
int CvEMEstimator::runKernel( const CvMat* m1, const CvMat* m2, CvMat* model ) { int ncounts = 0; ncounts = run5Point(m1, m2, model); return ncounts; }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants