aboutsummaryrefslogtreecommitdiff
path: root/samples/ObjectDetection/src/CvVideoFileWriter.cpp
diff options
context:
space:
mode:
authorÉanna Ó Catháin <eanna.ocathain@arm.com>2021-04-07 14:35:25 +0100
committerJim Flynn <jim.flynn@arm.com>2021-05-07 09:11:52 +0000
commitc6ab02a626e15b4a12fc09ecd844eb8b95380c3c (patch)
tree9912ed9cdb89cdb24483b22d6621ae30049ae321 /samples/ObjectDetection/src/CvVideoFileWriter.cpp
parente813d67f86df41a238ff79b5c554ef5027f56576 (diff)
downloadarmnn-c6ab02a626e15b4a12fc09ecd844eb8b95380c3c.tar.gz
MLECO-1252 ASR sample application using the public ArmNN C++ API.
Change-Id: I98cd505b8772a8c8fa88308121bc94135bb45068 Signed-off-by: Éanna Ó Catháin <eanna.ocathain@arm.com>
Diffstat (limited to 'samples/ObjectDetection/src/CvVideoFileWriter.cpp')
-rw-r--r--samples/ObjectDetection/src/CvVideoFileWriter.cpp38
1 files changed, 0 insertions, 38 deletions
diff --git a/samples/ObjectDetection/src/CvVideoFileWriter.cpp b/samples/ObjectDetection/src/CvVideoFileWriter.cpp
deleted file mode 100644
index ab80b95d49..0000000000
--- a/samples/ObjectDetection/src/CvVideoFileWriter.cpp
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include "CvVideoFileWriter.hpp"
-
-namespace od
-{
-
-void CvVideoFileWriter::Init(const std::string& outputVideo, int encoding, double fps, int width, int height)
-{
- m_ready = m_cvWriter.open(outputVideo, cv::CAP_FFMPEG,
- encoding,
- fps,
- cv::Size(width, height), true);
-}
-
-
-void CvVideoFileWriter::WriteFrame(std::shared_ptr<cv::Mat>& frame)
-{
- if(m_cvWriter.isOpened())
- {
- cv::cvtColor(*frame, *frame, cv::COLOR_RGB2BGR);
- m_cvWriter.write(*frame);
- }
-}
-
-bool CvVideoFileWriter::IsReady() const
-{
- return m_ready;
-}
-
-void CvVideoFileWriter::Close()
-{
- m_cvWriter.release();
-}
-}// namespace od