mirror of
https://github.com/opencv/opencv.git
synced 2025-01-23 10:03:11 +08:00
7f90f04df2
* feature: Extend VideoWriter to accept vector of parameters - Add additional constructor and `open` method for `VideoWriter` those accept a vector of parameters - Move actual implementation of the `VideoWriter::open` to general method which accepts vector of parameters - Propagate parsed parameters map up to actual video backend construction * fix: Change VideoWriter constructor description to suppress doc warning * refactor: Rollback newlines changes * feature: Changed VideoWriter parameters workflow * feature: Log unused parameters in VideoWriter open * doc: Fix VideoWriter `isColor` parameter description * fix: int to bool VC++ conversion warning * doc: Remove information about `isColor` flag usage.
47 lines
1.7 KiB
C++
47 lines
1.7 KiB
C++
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
|
|
#ifndef BACKEND_HPP_DEFINED
|
|
#define BACKEND_HPP_DEFINED
|
|
|
|
#include "cap_interface.hpp"
|
|
#include "opencv2/videoio/registry.hpp"
|
|
|
|
namespace cv {
|
|
|
|
// TODO: move to public interface
|
|
// TODO: allow runtime backend registration
|
|
class IBackend
|
|
{
|
|
public:
|
|
virtual ~IBackend() {}
|
|
virtual Ptr<IVideoCapture> createCapture(int camera) const = 0;
|
|
virtual Ptr<IVideoCapture> createCapture(const std::string &filename) const = 0;
|
|
virtual Ptr<IVideoWriter> createWriter(const std::string& filename, int fourcc, double fps, const cv::Size& sz,
|
|
const VideoWriterParameters& params) const = 0;
|
|
};
|
|
|
|
class IBackendFactory
|
|
{
|
|
public:
|
|
virtual ~IBackendFactory() {}
|
|
virtual Ptr<IBackend> getBackend() const = 0;
|
|
};
|
|
|
|
//=============================================================================
|
|
|
|
typedef Ptr<IVideoCapture> (*FN_createCaptureFile)(const std::string & filename);
|
|
typedef Ptr<IVideoCapture> (*FN_createCaptureCamera)(int camera);
|
|
typedef Ptr<IVideoWriter> (*FN_createWriter)(const std::string& filename, int fourcc, double fps, const Size& sz,
|
|
const VideoWriterParameters& params);
|
|
Ptr<IBackendFactory> createBackendFactory(FN_createCaptureFile createCaptureFile,
|
|
FN_createCaptureCamera createCaptureCamera,
|
|
FN_createWriter createWriter);
|
|
|
|
Ptr<IBackendFactory> createPluginBackendFactory(VideoCaptureAPIs id, const char* baseName);
|
|
|
|
} // namespace cv::
|
|
|
|
#endif // BACKEND_HPP_DEFINED
|