We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello.
First for all, thanks for sharing great code.
I have found some memory crashing case.
When i put the same zero control point , some code makes crashing.
// 2 zero points qsrc.push_back(cv::Point_<int>(0, 0)); qsrc.push_back(cv::Point_<int>(0, 0)); // 2 zero points qdst.push_back(cv::Point_<int>(0, 0)); qdst.push_back(cv::Point_<int>(0, 0));
In imgwarp_mls_rigid.cpp
tmpP *= w[k] / miu_r;
Above code makes dividing by zero without handling.
The text was updated successfully, but these errors were encountered:
It seems to happen when i put control points which have the same values.
Sorry, something went wrong.
No branches or pull requests
Hello.
First for all, thanks for sharing great code.
I have found some memory crashing case.
When i put the same zero control point , some code makes crashing.
In imgwarp_mls_rigid.cpp
Above code makes dividing by zero without handling.
The text was updated successfully, but these errors were encountered: