MCPcopy Create free account
hub / github.com/UZ-SLAMLab/ORB_SLAM3 / PrintPointDistribution

Method PrintPointDistribution

include/Frame.h:357–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected