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