Home | History | Annotate | Download | only in src

Lines Matching full:framesize

417                                             double fps, CvSize frameSize, int is_color )
428 result = cvCreateVideoWriter_FFMPEG_proxy (filename, fourcc, fps, frameSize, is_color);
433 result = cvCreateVideoWriter_VFW(filename, fourcc, fps, frameSize, is_color);
438 result = cvCreateVideoWriter_MSMF(filename, fourcc, fps, frameSize, is_color);
443 result = cvCreateVideoWriter_XINE(filename, fourcc, fps, frameSize, is_color);
448 result = cvCreateVideoWriter_AVFoundation(filename, fourcc, fps, frameSize, is_color);
453 result = cvCreateVideoWriter_QT(filename, fourcc, fps, frameSize, is_color);
458 result = cvCreateVideoWriter_GStreamer(filename, fourcc, fps, frameSize, is_color);
470 (void)frameSize;
607 static Ptr<IVideoWriter> IVideoWriter_create(const String& filename, int _fourcc, double fps, Size frameSize, bool isColor)
611 iwriter = createMotionJpegWriter(filename, fps, frameSize, isColor);
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));