VideoWriter       205 modules/cudacodec/include/opencv2/cudacodec.hpp CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const String& fileName, Size frameSize, double fps, SurfaceFormat format = SF_BGR);
VideoWriter       215 modules/cudacodec/include/opencv2/cudacodec.hpp CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const String& fileName, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format = SF_BGR);
VideoWriter       226 modules/cudacodec/include/opencv2/cudacodec.hpp CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const Ptr<EncoderCallBack>& encoderCallback, Size frameSize, double fps, SurfaceFormat format = SF_BGR);
VideoWriter       237 modules/cudacodec/include/opencv2/cudacodec.hpp CV_EXPORTS Ptr<VideoWriter> createVideoWriter(const Ptr<EncoderCallBack>& encoderCallback, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format = SF_BGR);
VideoWriter       106 modules/cudacodec/perf/perf_video.cpp PERF_TEST_P(FileName, VideoWriter, Values("gpu/video/768x576.avi", "gpu/video/1920x1080.avi"))
VideoWriter       122 modules/cudacodec/perf/perf_video.cpp         cv::Ptr<cv::cudacodec::VideoWriter> d_writer;
VideoWriter       143 modules/cudacodec/perf/perf_video.cpp         cv::VideoWriter writer;
VideoWriter        57 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const String&, Size, double, SurfaceFormat) { throw_no_cuda(); return Ptr<VideoWriter>(); }
VideoWriter        58 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const String&, Size, double, const EncoderParams&, SurfaceFormat) { throw_no_cuda(); return Ptr<VideoWriter>(); }
VideoWriter        60 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const Ptr<EncoderCallBack>&, Size, double, SurfaceFormat) { throw_no_cuda(); return Ptr<VideoWriter>(); }
VideoWriter        61 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const Ptr<EncoderCallBack>&, Size, double, const EncoderParams&, SurfaceFormat) { throw_no_cuda(); return Ptr<VideoWriter>(); }
VideoWriter       111 modules/cudacodec/src/video_writer.cpp     class VideoWriterImpl : public VideoWriter
VideoWriter       894 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const String& fileName, Size frameSize, double fps, SurfaceFormat format)
VideoWriter       900 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const String& fileName, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format)
VideoWriter       906 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const Ptr<EncoderCallBack>& encoderCallback, Size frameSize, double fps, SurfaceFormat format)
VideoWriter       911 modules/cudacodec/src/video_writer.cpp Ptr<VideoWriter> cv::cudacodec::createVideoWriter(const Ptr<EncoderCallBack>& encoderCallback, Size frameSize, double fps, const EncoderParams& params, SurfaceFormat format)
VideoWriter        88 modules/cudacodec/test/test_video.cpp     cv::Ptr<cv::cudacodec::VideoWriter> d_writer;
VideoWriter       560 modules/videoio/include/opencv2/videoio.hpp     CV_WRAP VideoWriter();
VideoWriter       573 modules/videoio/include/opencv2/videoio.hpp     CV_WRAP VideoWriter(const String& filename, int fourcc, double fps,
VideoWriter       576 modules/videoio/include/opencv2/videoio.hpp     virtual ~VideoWriter();
VideoWriter       596 modules/videoio/include/opencv2/videoio.hpp     virtual VideoWriter& operator << (const Mat& image);
VideoWriter        27 modules/videoio/perf/perf_output.cpp   VideoWriter writer(cv::tempfile(".wmv"), VideoWriter::fourcc('W', 'M', 'V', '3'),
VideoWriter        30 modules/videoio/perf/perf_output.cpp   VideoWriter writer(cv::tempfile(".avi"), VideoWriter::fourcc('X', 'V', 'I', 'D'),
VideoWriter       752 modules/videoio/src/cap.cpp VideoWriter::VideoWriter()
VideoWriter       755 modules/videoio/src/cap.cpp VideoWriter::VideoWriter(const String& filename, int _fourcc, double fps, Size frameSize, bool isColor)
VideoWriter       760 modules/videoio/src/cap.cpp void VideoWriter::release()
VideoWriter       766 modules/videoio/src/cap.cpp VideoWriter::~VideoWriter()
VideoWriter       771 modules/videoio/src/cap.cpp bool VideoWriter::open(const String& filename, int _fourcc, double fps, Size frameSize, bool isColor)
VideoWriter       781 modules/videoio/src/cap.cpp bool VideoWriter::isOpened() const
VideoWriter       787 modules/videoio/src/cap.cpp bool VideoWriter::set(int propId, double value)
VideoWriter       794 modules/videoio/src/cap.cpp double VideoWriter::get(int propId) const
VideoWriter       801 modules/videoio/src/cap.cpp void VideoWriter::write(const Mat& image)
VideoWriter       812 modules/videoio/src/cap.cpp VideoWriter& VideoWriter::operator << (const Mat& image)
VideoWriter       818 modules/videoio/src/cap.cpp int VideoWriter::fourcc(char c1, char c2, char c3, char c4)
VideoWriter        86 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('D', 'X', '5', '0'), AVI_EXT, true},
VideoWriter        87 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('F', 'L', 'V', '1'), AVI_EXT, true},
VideoWriter        88 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('H', '2', '6', '1'), AVI_EXT, true},
VideoWriter        89 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('H', '2', '6', '3'), AVI_EXT, true},
VideoWriter        90 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('I', '4', '2', '0'), AVI_EXT, true},
VideoWriter        92 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('M', 'J', 'P', 'G'), AVI_EXT, true},
VideoWriter        93 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('m', 'p', '4', 'v'), AVI_EXT, true},
VideoWriter        94 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('M', 'P', 'E', 'G'), AVI_EXT, true},
VideoWriter        97 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('X', 'V', 'I', 'D'), AVI_EXT, true},
VideoWriter        99 modules/videoio/test/test_ffmpeg.cpp             {VideoWriter::fourcc('H', '2', '6', '4'), MP4_EXT, false}
VideoWriter       117 modules/videoio/test/test_ffmpeg.cpp                 if( tag == VideoWriter::fourcc('H', '2', '6', '1') )
VideoWriter       119 modules/videoio/test/test_ffmpeg.cpp                 else if( tag == VideoWriter::fourcc('H', '2', '6', '3') )
VideoWriter       125 modules/videoio/test/test_ffmpeg.cpp                 if( tag == VideoWriter::fourcc('M', 'P', 'E', 'G') )
VideoWriter       131 modules/videoio/test/test_ffmpeg.cpp                 VideoWriter writer(filename, tag, fps, frame_s);
VideoWriter       228 modules/videoio/test/test_ffmpeg.cpp     CreateVideoWriterInvoker(std::vector<VideoWriter*>& _writers, std::vector<std::string>& _files) :
VideoWriter       242 modules/videoio/test/test_ffmpeg.cpp             writers->operator[](i) = new VideoWriter(fileName, VideoWriter::fourcc('X','V','I','D'), 25.0f, FrameSize);
VideoWriter       249 modules/videoio/test/test_ffmpeg.cpp     std::vector<VideoWriter*>* writers;
VideoWriter       265 modules/videoio/test/test_ffmpeg.cpp     WriteVideo_Invoker(const std::vector<VideoWriter*>& _writers) :
VideoWriter       283 modules/videoio/test/test_ffmpeg.cpp             VideoWriter* writer = writers->operator[](j);
VideoWriter       305 modules/videoio/test/test_ffmpeg.cpp     const std::vector<VideoWriter*>* writers;
VideoWriter       405 modules/videoio/test/test_ffmpeg.cpp     std::vector<VideoWriter*> writers(threadsCount);
VideoWriter       415 modules/videoio/test/test_ffmpeg.cpp     for (std::vector<VideoWriter*>::iterator i = writers.begin(), end = writers.end(); i != end; ++i)
VideoWriter        88 modules/videoio/test/test_video_io.cpp     VideoFormat("avi", VideoWriter::fourcc('X', 'V', 'I', 'D')),
VideoWriter        89 modules/videoio/test/test_video_io.cpp     VideoFormat("avi", VideoWriter::fourcc('M', 'P', 'E', 'G')),
VideoWriter        90 modules/videoio/test/test_video_io.cpp     VideoFormat("avi", VideoWriter::fourcc('M', 'J', 'P', 'G')),
VideoWriter        92 modules/videoio/test/test_video_io.cpp     VideoFormat("mkv", VideoWriter::fourcc('X', 'V', 'I', 'D')),
VideoWriter        93 modules/videoio/test/test_video_io.cpp     VideoFormat("mkv", VideoWriter::fourcc('M', 'P', 'E', 'G')),
VideoWriter        94 modules/videoio/test/test_video_io.cpp     VideoFormat("mkv", VideoWriter::fourcc('M', 'J', 'P', 'G')),
VideoWriter        96 modules/videoio/test/test_video_io.cpp     VideoFormat("mov", VideoWriter::fourcc('m', 'p', '4', 'v')),
VideoWriter       437 modules/videoio/test/test_video_io.cpp     VideoWriter writer(video_file, fourcc, 25, frame_size, true);
VideoWriter       442 modules/videoio/test/test_video_io.cpp         VideoWriter writer2(video_file, fourcc, 25, frame_size, true);
VideoWriter       492 modules/videoio/test/test_video_io.cpp     if (fourcc == VideoWriter::fourcc('M', 'P', 'E', 'G') && ext == "mkv")
VideoWriter        73 modules/videoio/test/test_video_pos.cpp         VideoWriter writer(filename, fmt.fourcc, 25, framesize, true);
VideoWriter       119 modules/videoio/test/test_video_pos.cpp             if (fmt.fourcc == VideoWriter::fourcc('M', 'P', 'E', 'G') && fmt.ext == "mkv")
VideoWriter       320 samples/cpp/autofocus.cpp     VideoWriter videoWriter;
VideoWriter        52 samples/cpp/tutorial_code/HighGUI/video-write/video-write.cpp     VideoWriter outputVideo;                                        // Open the output
VideoWriter       116 samples/cpp/tutorial_code/features2D/AKAZE_tracking/planar_tracking.cpp     VideoWriter  video_out(argv[2],
VideoWriter        39 samples/cpp/videostab.cpp     VideoWriter writer;
VideoWriter        52 samples/cpp/videostab.cpp                 writer.open(outputPath, VideoWriter::fourcc('X','V','I','D'),
VideoWriter       250 samples/gpu/hog.cpp     cv::VideoWriter video_writer;
VideoWriter       357 samples/gpu/hog.cpp                     video_writer.open(args.dst_video, VideoWriter::fourcc('x','v','i','d'), args.dst_video_fps,
VideoWriter       137 samples/gpu/super_resolution.cpp     VideoWriter writer;
VideoWriter       157 samples/gpu/super_resolution.cpp                 writer.open(outputVideoName, VideoWriter::fourcc('X', 'V', 'I', 'D'), 25.0, result.size());
VideoWriter        36 samples/gpu/video_writer.cpp     cv::VideoWriter writer;
VideoWriter        37 samples/gpu/video_writer.cpp     cv::Ptr<cv::cudacodec::VideoWriter> d_writer;
VideoWriter        64 samples/gpu/video_writer.cpp             if (!writer.open("output_cpu.avi", cv::VideoWriter::fourcc('X', 'V', 'I', 'D'), FPS, frame.size()))
VideoWriter       149 samples/tapi/hog.cpp     VideoWriter video_writer;
VideoWriter       247 samples/tapi/hog.cpp                         video_writer.open(output, VideoWriter::fourcc('x','v','i','d'), 24,