You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a problem that has already been bothering me for a long time.
When it runs to m_camOdoCalib.calibrate(H_cam_odo), if (!m_camOdoTransformUseEstimate)
{
// m_camOdoCalib.writeMotionSegmentsToFile(filename);
Eigen::Matrix4d H_cam_odo;
m_camOdoCalib.calibrate(H_cam_odo);
m_camOdoTransform = H_cam_odo;
}
I don't quit understand when camValid is true and when it is false. If camValid is always true, it cannot go to addCamOdoCalibData, and the program cannot run down.
Is the File containing estimate for the extrinsic calibration always necessary? If the answer is yes, then what is the format of the file?
I'd be very grateful if you could give me some advice.
The text was updated successfully, but these errors were encountered:
There is a problem that has already been bothering me for a long time.
When it runs to m_camOdoCalib.calibrate(H_cam_odo),
if (!m_camOdoTransformUseEstimate)
{
// m_camOdoCalib.writeMotionSegmentsToFile(filename);
Eigen::Matrix4d H_cam_odo;
m_camOdoCalib.calibrate(H_cam_odo);
m_camOdoTransform = H_cam_odo;
}
I always get the error:
F1221 00:53:49.959568 4757 problem_impl.cc:65] Check failed: it != parameter_map.end() Parameter block not found: 0x7f2063ffd7a0
Check failure stack trace:
F1221 00:53:49.959614 4756 problem_impl.cc:65] Check failed: it != parameter_map.end() Parameter block not found: 0x7f2068bae7a0
Check failure stack trace:
@ 0x7f208d6959fd google::LogMessage::Fail()
@ 0x7f208d6959fd google::LogMessage::Fail()
@ 0x7f208d69789d google::LogMessage::SendToLog()
@ 0x7f208d69789d google::LogMessage::SendToLog()
@ 0x7f208d6955ec google::LogMessage::Flush()
@ 0x7f208d6955ec google::LogMessage::Flush()
@ 0x7f208d6981be google::LogMessageFatal::~LogMessageFatal()
@ 0x452280 ceres::internal::ProblemImpl::SetParameterization()
@ 0x7f208d6981be google::LogMessageFatal::~LogMessageFatal()
@ 0x452280 ceres::internal::ProblemImpl::SetParameterization()
@ 0x7f20901d8c1f camodocal::CamOdoCalibration::refineEstimate()
@ 0x7f20901d8c1f camodocal::CamOdoCalibration::refineEstimate()
@ 0x7f20901db84f camodocal::CamOdoCalibration::estimate()
@ 0x7f20901db84f camodocal::CamOdoCalibration::estimate()
@ 0x7f20901dc709 camodocal::CamOdoCalibration::calibrate()
@ 0x7f20901dc709 camodocal::CamOdoCalibration::calibrate()
@ 0x7f20901f231b camodocal::CamOdoThread::threadFunction()
@ 0x7f20901f231b camodocal::CamOdoThread::threadFunction()
@ 0x7f208cba0a4a (unknown)
@ 0x7f208cba0a4a (unknown)
@ 0x7f208d8c1182 start_thread
@ 0x7f208d8c1182 start_thread
@ 0x7f208cea547d (unknown)
I found that the reason seems to be in
I don't quit understand when camValid is true and when it is false. If camValid is always true, it cannot go to addCamOdoCalibData, and the program cannot run down.
Is the File containing estimate for the extrinsic calibration always necessary? If the answer is yes, then what is the format of the file?
I'd be very grateful if you could give me some advice.
The text was updated successfully, but these errors were encountered: