Add the 4th input argument for calling PinholeCamera<Calibration>::project which does not take default arguments anymore.
parent
dd255eb24c
commit
aebe40d19f
|
|
@ -249,7 +249,7 @@ public:
|
||||||
Matrix Ei(ZDim, 3);
|
Matrix Ei(ZDim, 3);
|
||||||
for (size_t i = 0; i < this->measured_.size(); i++) {
|
for (size_t i = 0; i < this->measured_.size(); i++) {
|
||||||
try {
|
try {
|
||||||
cameras[i].project(point, boost::none, Ei);
|
cameras[i].project(point, boost::none, Ei, boost::none);
|
||||||
} catch (CheiralityException& e) {
|
} catch (CheiralityException& e) {
|
||||||
std::cout << "Cheirality exception " << std::endl;
|
std::cout << "Cheirality exception " << std::endl;
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue