From 2c4079fa4bebb335062062189cd6af4a2252c421 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 15 May 2023 17:51:12 +0200 Subject: [PATCH] remove unused var --- apps/interactive-calibration/frameProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/interactive-calibration/frameProcessor.cpp b/apps/interactive-calibration/frameProcessor.cpp index f43ee9094a..aaeabe6fbb 100644 --- a/apps/interactive-calibration/frameProcessor.cpp +++ b/apps/interactive-calibration/frameProcessor.cpp @@ -75,7 +75,7 @@ bool CalibProcessor::detectAndParseChAruco(const cv::Mat &frame) { cv::Ptr board = mCharucoBoard.staticCast(); - std::vector > corners, rejected; + std::vector > corners; std::vector ids; cv::Mat currentCharucoCorners, currentCharucoIds; detector->detectBoard(frame, currentCharucoCorners, currentCharucoIds, corners, ids);