Merge pull request #23618 from LaurentBerger:unused_var

remove unused var
pull/23647/head
Alexander Smorkalov 2 years ago committed by GitHub
commit 4e27fc93f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/interactive-calibration/frameProcessor.cpp

@ -75,7 +75,7 @@ bool CalibProcessor::detectAndParseChAruco(const cv::Mat &frame)
{
cv::Ptr<cv::aruco::Board> board = mCharucoBoard.staticCast<cv::aruco::Board>();
std::vector<std::vector<cv::Point2f> > corners, rejected;
std::vector<std::vector<cv::Point2f> > corners;
std::vector<int> ids;
cv::Mat currentCharucoCorners, currentCharucoIds;
detector->detectBoard(frame, currentCharucoCorners, currentCharucoIds, corners, ids);

Loading…
Cancel
Save