fix: remove opencv highgui again

This commit is contained in:
MistEO
2025-09-08 21:57:09 +08:00
parent 0f29aa369e
commit 546d4b860a
3 changed files with 0 additions and 49 deletions

View File

@@ -158,17 +158,3 @@ cv::Mat VisionHelper::draw_roi(const cv::Rect& roi, const cv::Mat& base) const
return image_draw;
}
/*
void VisionHelper::handle_draw(const cv::Mat& draw) const
{
if (show_draw_) {
const std::string kWinName = "Draw";
cv::imshow(kWinName, draw);
cv::waitKey(0);
cv::destroyWindow(kWinName);
}
}
*/