Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
9aaa27d4
Commit
9aaa27d4
authored
May 27, 2015
by
Philipp Hasper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding missing docs for VideoWriter::release
parent
1df244b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
videoio.hpp
modules/videoio/include/opencv2/videoio.hpp
+6
-1
No files found.
modules/videoio/include/opencv2/videoio.hpp
View file @
9aaa27d4
...
...
@@ -645,7 +645,6 @@ public:
The method opens video writer. Parameters are the same as in the constructor
VideoWriter::VideoWriter.
*/
CV_WRAP
virtual
bool
open
(
const
String
&
filename
,
int
fourcc
,
double
fps
,
Size
frameSize
,
bool
isColor
=
true
);
...
...
@@ -653,6 +652,12 @@ public:
/** @brief Returns true if video writer has been successfully initialized.
*/
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
();
virtual
VideoWriter
&
operator
<<
(
const
Mat
&
image
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment