Adding missing docs for VideoWriter::release
This commit is contained in:
parent
1df244b6f4
commit
9aaa27d46b
@ -645,7 +645,6 @@ public:
|
|||||||
|
|
||||||
The method opens video writer. Parameters are the same as in the constructor
|
The method opens video writer. Parameters are the same as in the constructor
|
||||||
VideoWriter::VideoWriter.
|
VideoWriter::VideoWriter.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
CV_WRAP virtual bool open(const String& filename, int fourcc, double fps,
|
CV_WRAP virtual bool open(const String& filename, int fourcc, double fps,
|
||||||
Size frameSize, bool isColor = true);
|
Size frameSize, bool isColor = true);
|
||||||
@ -653,6 +652,12 @@ public:
|
|||||||
/** @brief Returns true if video writer has been successfully initialized.
|
/** @brief Returns true if video writer has been successfully initialized.
|
||||||
*/
|
*/
|
||||||
CV_WRAP virtual bool isOpened() const;
|
CV_WRAP virtual bool isOpened() const;
|
||||||
|
|
||||||
|
/** @brief Closes the video writer.
|
||||||
|
|
||||||
|
The methods are automatically called by subsequent VideoWriter::open and by the VideoWriter
|
||||||
|
destructor.
|
||||||
|
*/
|
||||||
CV_WRAP virtual void release();
|
CV_WRAP virtual void release();
|
||||||
virtual VideoWriter& operator << (const Mat& image);
|
virtual VideoWriter& operator << (const Mat& image);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user