32 #include <opencv2/imgproc/imgproc.hpp>
44 const std::filesystem::path& filePath)
46 this->startPlayback(filePath);
57 return this->videoCapture.isOpened();
69 return this->frameCount;
75 return this->frameHeight;
81 return this->frameWidth;
88 <<
"Desired frame number to set is above the number of frames in total";
89 if (frame != currentFrame)
91 this->videoCapture.set(cv::CAP_PROP_POS_FRAMES,
static_cast<double>(frame));
92 this->currentFrame = frame;
99 return this->currentFrame;
105 return this->currentFrame < this->frameCount;
111 this->filePath = std::filesystem::canonical(file_path);
112 this->videoCapture.open(this->filePath.string());
115 <<
"Could not open the output video file '" + this->filePath.string() +
"' for writing";
117 this->fps =
static_cast<unsigned int>(this->videoCapture.get(cv::CAP_PROP_FPS));
119 static_cast<unsigned int>(this->videoCapture.get(cv::CAP_PROP_FRAME_HEIGHT));
120 this->frameWidth =
static_cast<unsigned int>(this->videoCapture.get(cv::CAP_PROP_FRAME_WIDTH));
121 this->frameCount =
static_cast<unsigned int>(this->videoCapture.get(cv::CAP_PROP_FRAME_COUNT));
122 this->currentFrame = 0;
129 <<
"Could not open the output video file '" + this->filePath.string() +
"' for writing";
132 const bool success = this->videoCapture.read(frame);
133 ++this->currentFrame;
138 cv::cvtColor(frame, frame, cv::COLOR_BGR2RGB);
141 this->frameHeight * this->frameWidth *
142 static_cast<unsigned int>(frame.channels()));
152 const bool success = this->getNextFrame(buffer.pixels);
153 ++this->currentFrame;
161 <<
"Could not open the output video file '" + this->filePath.string() +
"' for writing";
163 return this->videoCapture.read(buffer);
169 if (this->videoCapture.isOpened())
171 this->videoCapture.release();