-
Notifications
You must be signed in to change notification settings - Fork 286
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
Satisfy Misra C++ quality rules #1362
Conversation
Fix build issues when x11 unavailable
@@ -930,7 +930,7 @@ static double computePSNR(const vpImage<vpRGBa> &I_RGBA_8U, const vpImage<vpRGBa | |||
return 10 * std::log10(255 * 255 / mse); | |||
} | |||
|
|||
static bool readBinaryFile(const std::string &filename, std::vector<uint16_t> &buffer) | |||
static bool reaBinaryFile(const std::string &filename, std::vector<uint16_t> &buffer) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo here and below?
@@ -440,22 +458,22 @@ bool vpPose::poseRansac(vpHomogeneousMatrix &cMo, bool (*func)(const vpHomogeneo | |||
|
|||
if (foundSolution) { | |||
unsigned int nbMinRandom = 4; | |||
// std::cout << "Nombre d'inliers " << nbInliers << std::endl ; | |||
// std::cout << "Nombre d'inliers " << nbInliers << std::endl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// std::cout << "Nombre d'inliers " << nbInliers << std::endl | |
// std::cout << "Nombre d'inliers " << nbInliers << std::endl; |
Semicolon changes can be reverted here and below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
No description provided.