aboutsummaryrefslogtreecommitdiff
path: root/samples/ObjectDetection/src/CvWindowOutput.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samples/ObjectDetection/src/CvWindowOutput.cpp')
-rw-r--r--samples/ObjectDetection/src/CvWindowOutput.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/samples/ObjectDetection/src/CvWindowOutput.cpp b/samples/ObjectDetection/src/CvWindowOutput.cpp
deleted file mode 100644
index a32147b19a..0000000000
--- a/samples/ObjectDetection/src/CvWindowOutput.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-//
-// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include "CvWindowOutput.hpp"
-
-namespace od
-{
-
-void CvWindowOutput::Init(const std::string& windowName)
-{
- m_windowName = windowName;
- cv::namedWindow(m_windowName, cv::WINDOW_AUTOSIZE);
-}
-
-void CvWindowOutput::WriteFrame(std::shared_ptr<cv::Mat>& frame)
-{
- cv::cvtColor(*frame, *frame, cv::COLOR_RGB2BGR);
- cv::imshow( m_windowName, *frame);
- cv::waitKey(30);
-}
-
-void CvWindowOutput::Close()
-{
- cv::destroyWindow(m_windowName);
-}
-
-bool CvWindowOutput::IsReady() const
-{
- return true;
-}
-}// namespace od \ No newline at end of file