added 'cmath' include
This commit is contained in:
parent
37ea872204
commit
438a599288
@ -41,6 +41,7 @@
|
||||
//M*/
|
||||
|
||||
#include "precomp.hpp"
|
||||
#include <cmath>
|
||||
#include "opencv2/calib3d/calib3d_c.h"
|
||||
|
||||
using namespace cv;
|
||||
@ -252,8 +253,8 @@ bool BundleAdjusterBase::estimate(const std::vector<ImageFeatures> &features,
|
||||
bool ok = true;
|
||||
for (int i = 0; i < cam_params_.rows; ++i)
|
||||
{
|
||||
if (isnan(cam_params_.at<double>(i,0)) ||
|
||||
isinf(cam_params_.at<double>(i,0)))
|
||||
if (std::isnan(cam_params_.at<double>(i,0)) ||
|
||||
std::isinf(cam_params_.at<double>(i,0)))
|
||||
{
|
||||
ok = false;
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user