| 355 | cv::Mat imgLeft, imgRight; |
| 356 | |
| 357 | void PrintPointDistribution(){ |
| 358 | int left = 0, right = 0; |
| 359 | int Nlim = (Nleft != -1) ? Nleft : N; |
| 360 | for(int i = 0; i < N; i++){ |
| 361 | if(mvpMapPoints[i] && !mvbOutlier[i]){ |
| 362 | if(i < Nlim) left++; |
| 363 | else right++; |
| 364 | } |
| 365 | } |
| 366 | cout << "Point distribution in Frame: left-> " << left << " --- right-> " << right << endl; |
| 367 | } |
| 368 | |
| 369 | Sophus::SE3<double> T_test; |
| 370 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected