Skip to content

Commit

Permalink
Fix: change mesh color to green [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Petingo committed Jun 20, 2023
1 parent ac30d31 commit aec410a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/tslam_monocular.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ void drawMesh(cv::Mat img, vector<pair<cv::Vec3f, cv::Vec3f>> linesToDraw, cv::M
int count = 0;
for(auto &ptsToDraw:linesToDraw) {
auto ptsScreen = projectToScreen(img.cols, img.rows, ptsToDraw, projectionMatrix, cameraPose);
cv::line(img, ptsScreen.first, ptsScreen.second, cv::Scalar(0, 0, 255), 2);
cv::line(img, ptsScreen.first, ptsScreen.second, cv::Scalar(70,192,22), 2);
}
}

Expand Down

0 comments on commit aec410a

Please sign in to comment.