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
openCV version 4.9.0-dev Ubuntu 22.04.4 LTS
The Radon Transform provided by openCV changes its src contrary to its documentation. I fixed that behavior locally by changing:
Mat _srcMat = src.getMat() ---> Mat _srcMat = src.getMat().clone();
in the "radon_transform.cc" file.
After the call
double thetastep = 1.0 double startAngle = -20; double endAngle = 20; cv::ximgproc::RadonTransform(matRef, radMatRef, thetaStep, startAngle, endAngle, true);
the cv::Mat matRef seess to be chagen. More detailed: I was using the Radon Transform within a loop when i recognized the behavior.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
System Information
openCV version 4.9.0-dev
Ubuntu 22.04.4 LTS
Detailed description
The Radon Transform provided by openCV changes its src contrary to its documentation. I fixed that behavior locally by changing:
Mat _srcMat = src.getMat() ---> Mat _srcMat = src.getMat().clone();
in the "radon_transform.cc" file.
Steps to reproduce
After the call
the cv::Mat matRef seess to be chagen. More detailed: I was using the Radon Transform within a loop when i recognized the behavior.
Issue submission checklist
The text was updated successfully, but these errors were encountered: