aboutsummaryrefslogtreecommitdiff
path: root/samples/ObjectDetection/include/CvWindowOutput.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'samples/ObjectDetection/include/CvWindowOutput.hpp')
-rw-r--r--samples/ObjectDetection/include/CvWindowOutput.hpp53
1 files changed, 0 insertions, 53 deletions
diff --git a/samples/ObjectDetection/include/CvWindowOutput.hpp b/samples/ObjectDetection/include/CvWindowOutput.hpp
deleted file mode 100644
index 317327ba62..0000000000
--- a/samples/ObjectDetection/include/CvWindowOutput.hpp
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#pragma once
-
-#include "IFrameOutput.hpp"
-#include <opencv2/opencv.hpp>
-
-namespace od
-{
-
-class CvWindowOutput : public IFrameOutput<cv::Mat> {
-public:
-
- CvWindowOutput() = default;
-
- ~CvWindowOutput() override = default;
-
- /**
- * @brief Creates a named window.
- *
- * Uses opencv to create a window with given name.
- *
- * @param windowName opencv window name.
- *
- */
- void Init(const std::string& windowName);
-
- /**
- * Writes frame to the window.
- *
- * @param frame data to write.
- */
- void WriteFrame(std::shared_ptr<cv::Mat>& frame) override;
-
- /**
- * Releases all windows.
- */
- void Close() override;
-
- /**
- * Always true.
- * @return true.
- */
- bool IsReady() const override;
-
-private:
- std::string m_windowName;
-
-};
-}// namespace od \ No newline at end of file