OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_fourcc
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/videoio/test/
test_precomp.hpp
80
VideoFormat(const string& _ext, int
_fourcc
) : ext(_ext), fourcc(
_fourcc
) {}
/external/opencv3/modules/videoio/src/
cap.cpp
607
static Ptr<IVideoWriter> IVideoWriter_create(const String& filename, int
_fourcc
, double fps, Size frameSize, bool isColor)
610
if(
_fourcc
== CV_FOURCC('M', 'J', 'P', 'G') )
755
VideoWriter::VideoWriter(const String& filename, int
_fourcc
, double fps, Size frameSize, bool isColor)
757
open(filename,
_fourcc
, fps, frameSize, isColor);
771
bool VideoWriter::open(const String& filename, int
_fourcc
, double fps, Size frameSize, bool isColor)
774
iwriter = IVideoWriter_create(filename,
_fourcc
, fps, frameSize, isColor);
777
writer.reset(cvCreateVideoWriter(filename.c_str(),
_fourcc
, fps, frameSize, isColor));
cap_vfw.cpp
720
bool CvVideoWriter_VFW::open( const char* filename, int
_fourcc
, double _fps, CvSize frameSize, bool isColor )
727
fourcc =
_fourcc
;
Completed in 67 milliseconds