Lines Matching refs:fps
417 double fps, CvSize frameSize, int is_color ) in cvCreateVideoWriter() argument
423 if(!fourcc || !fps) in cvCreateVideoWriter()
428 result = cvCreateVideoWriter_FFMPEG_proxy (filename, fourcc, fps, frameSize, is_color); in cvCreateVideoWriter()
433 result = cvCreateVideoWriter_VFW(filename, fourcc, fps, frameSize, is_color); in cvCreateVideoWriter()
438 result = cvCreateVideoWriter_MSMF(filename, fourcc, fps, frameSize, is_color); in cvCreateVideoWriter()
448 result = cvCreateVideoWriter_AVFoundation(filename, fourcc, fps, frameSize, is_color); in cvCreateVideoWriter()
453 result = cvCreateVideoWriter_QT(filename, fourcc, fps, frameSize, is_color); in cvCreateVideoWriter()
458 result = cvCreateVideoWriter_GStreamer(filename, fourcc, fps, frameSize, is_color); in cvCreateVideoWriter()
607 static Ptr<IVideoWriter> IVideoWriter_create(const String& filename, int _fourcc, double fps, Size … in IVideoWriter_create() argument
611 iwriter = createMotionJpegWriter(filename, fps, frameSize, isColor); in IVideoWriter_create()
755 VideoWriter::VideoWriter(const String& filename, int _fourcc, double fps, Size frameSize, bool isCo… in VideoWriter() argument
757 open(filename, _fourcc, fps, frameSize, isColor); in VideoWriter()
771 bool VideoWriter::open(const String& filename, int _fourcc, double fps, Size frameSize, bool isColo… in open() argument
774 iwriter = IVideoWriter_create(filename, _fourcc, fps, frameSize, isColor); in open()
777 writer.reset(cvCreateVideoWriter(filename.c_str(), _fourcc, fps, frameSize, isColor)); in open()