Ask Your Question
0

camera calibration memory error

asked 2015-09-23 09:40:44 -0600

The calibrateCamera function gives the following error when I try to calibrate my webcam with a 8x4 checkerboard: "Unhandled exception at 0x75854598 in calibrationtest2.exe: Microsoft C++ exception: cv::Exception at memory location 0x0058E4A0." Anyone knows what's happening?

edit retag flag offensive close merge delete

Comments

1

can you debug it, and find out, where it happens ?

berak gravatar imageberak ( 2015-09-23 09:42:33 -0600 )edit

1 answer

Sort by ยป oldest newest most voted
0

answered 2015-09-23 10:13:52 -0600

It errors on the calibrateCamera function itself, when i step into the function in debug mode, the last code it executes before giving the error is: template<typename _tp=""> inline void Mat::push_back(const Mat_<_Tp>& m) { push_back((const Mat&)m); }

inline Mat::MSize::MSize(int* _p) : p(_p) {} inline Size Mat::MSize::operator()() const { CV_DbgAssert(p[-1] <= 2); return Size(p[1], p[0]); }

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2015-09-23 09:40:44 -0600

Seen: 531 times

Last updated: Sep 23 '15