Home
last modified time | relevance | path

Searched refs:CV_FOURCC (Results 1 – 25 of 25) sorted by relevance

/dports/graphics/opencv/opencv-4.5.3/modules/videoio/src/
H A Dcontainer_avi.cpp32 const uint32_t RIFF_CC = CV_FOURCC('R','I','F','F');
33 const uint32_t LIST_CC = CV_FOURCC('L','I','S','T');
34 const uint32_t HDRL_CC = CV_FOURCC('h','d','r','l');
35 const uint32_t AVIH_CC = CV_FOURCC('a','v','i','h');
36 const uint32_t STRL_CC = CV_FOURCC('s','t','r','l');
37 const uint32_t STRH_CC = CV_FOURCC('s','t','r','h');
38 const uint32_t STRF_CC = CV_FOURCC('s','t','r','f');
39 const uint32_t VIDS_CC = CV_FOURCC('v','i','d','s');
40 const uint32_t MJPG_CC = CV_FOURCC('M','J','P','G');
41 const uint32_t MOVI_CC = CV_FOURCC('m','o','v','i');
[all …]
H A Dcap_avfoundation.mm1255 int cc2 = CV_FOURCC(cc[0], cc[1], cc[2], cc[3]);
1264 if (fourcc == CV_FOURCC('J','P','E','G') || fourcc == CV_FOURCC('j','p','e','g') ||
1265 fourcc == CV_FOURCC('M','J','P','G') || fourcc == CV_FOURCC('m','j','p','g')){
1267 }else if(fourcc == CV_FOURCC('H','2','6','4') || fourcc == CV_FOURCC('a','v','c','1')){
1271 }else if(fourcc == CV_FOURCC('H','2','6','5') || fourcc == CV_FOURCC('h','v','c','1') ||
1272 fourcc == CV_FOURCC('H','E','V','C') || fourcc == CV_FOURCC('h','e','v','c')){
H A Dcap_avfoundation_mac.mm1199 int cc2 = CV_FOURCC(cc[0], cc[1], cc[2], cc[3]);
1206 if (fourcc == CV_FOURCC('J','P','E','G') || fourcc == CV_FOURCC('j','p','e','g') ||
1207 fourcc == CV_FOURCC('M','J','P','G') || fourcc == CV_FOURCC('m','j','p','g')){
1209 }else if(fourcc == CV_FOURCC('H','2','6','4') || fourcc == CV_FOURCC('a','v','c','1')){
1213 }else if(fourcc == CV_FOURCC('H','2','6','5') || fourcc == CV_FOURCC('h','v','c','1') ||
1214 fourcc == CV_FOURCC('H','E','V','C') || fourcc == CV_FOURCC('h','e','v','c')){
H A Dcap_mjpeg_decoder.cpp130 return (double)CV_FOURCC('M','J','P','G'); in getProperty()
H A Dcap_gstreamer.cpp1712 if (fourcc == CV_FOURCC('M','P','1','V')) fourcc = CV_FOURCC('M', 'P', 'G' ,'1'); in open()
1713 if (fourcc == CV_FOURCC('M','P','2','V')) fourcc = CV_FOURCC('M', 'P', 'G' ,'2'); in open()
1714 if (fourcc == CV_FOURCC('D','R','A','C')) fourcc = CV_FOURCC('d', 'r', 'a' ,'c'); in open()
1758 if (fourcc == CV_FOURCC('M','J','P','G') && frameSize.height == 1) in open()
H A Dcap_ffmpeg_impl.hpp55 #define CV_FOURCC(c1, c2, c3, c4) (((c1) & 255) + (((c2) & 255) << 8) + (((c3) & 255) << 16) + (((c… macro
1544 … return (double) CV_FOURCC(codec_fourcc[0], codec_fourcc[1], codec_fourcc[2], codec_fourcc[3]); in getProperty()
2638 if(fourcc == CV_FOURCC('R','G','B','A')) in open()
H A Dcap_mjpeg_encoder.cpp1545 if (fourcc != CV_FOURCC('M', 'J', 'P', 'G')) in createMotionJpegWriter()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Video/BridgeOpenCV/test/
H A DitkOpenCVVideoCaptureTest.cxx74 scalarCap->set(CV_CAP_PROP_FOURCC, CV_FOURCC('M','P','4','2')); in itkOpenCVVideoCaptureTest()
75 if ((int)scalarCap->get(CV_CAP_PROP_FOURCC) != CV_FOURCC('M','P','4','2')) in itkOpenCVVideoCaptureTest()
133 if ((int)rgbCap->get(CV_CAP_PROP_FOURCC) != CV_FOURCC('M', 'P', '4', '2')) in itkOpenCVVideoCaptureTest()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Video/BridgeOpenCV/include/
H A DitkOpenCVVideoCapture.hxx52 m_FourCC = CV_FOURCC('M','P','4','2'); in OpenCVVideoCapture()
67 m_FourCC = CV_FOURCC('M','P','4','2'); in OpenCVVideoCapture()
/dports/graphics/opencv/opencv-4.5.3/modules/videoio/include/opencv2/videoio/legacy/
H A Dconstants_c.h424 CV_INLINE int CV_FOURCC(char c1, char c2, char c3, char c4) in CV_FOURCC() function
432 #define CV_FOURCC_DEFAULT CV_FOURCC('I', 'Y', 'U', 'V')
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/cudacodec/perf/
H A Dperf_video.cpp144 writer.open(outputFile, CV_FOURCC('X', 'V', 'I', 'D'), FPS, frame.size()); in PERF_TEST_P()
/dports/misc/visp/visp-3.4.0/tutorial/grabber/
H A Dtutorial-video-recorder.cpp90 writer.setCodec(CV_FOURCC('P', 'I', 'M', '1')); in main()
/dports/misc/visp/visp-3.4.0/modules/io/src/video/
H A DvpVideoWriter.cpp72 fourcc = CV_FOURCC('P', 'I', 'M', '1'); // default is a MPEG-1 codec in vpVideoWriter()
/dports/graphics/opencv/opencv-4.5.3/doc/tutorials/app/
H A Dvideo_write.markdown114 you know the codecs four character code beforehand, you can use the *CV_FOURCC* macro to build
117 CV_FOURCC('P','I','M,'1') // this is an MPEG1 codec from the characters to integer
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Video/BridgeOpenCV/src/
H A DitkOpenCVVideoIO.cxx444 this->m_FourCC = CV_FOURCC(fourCC[0], fourCC[1], fourCC[2], fourCC[3]); in SetWriterParameters()
/dports/math/octave-forge-video/video-2.0.2/src/
H A Dcap_ffmpeg_impl_ov.hpp62 #define CV_FOURCC(c1, c2, c3, c4) (((c1) & 255) + (((c2) & 255) << 8) + (((c3) & 255) << 16) + (((c… macro
1285 … return (double) CV_FOURCC(codec_fourcc[0], codec_fourcc[1], codec_fourcc[2], codec_fourcc[3]);
2326 if(fourcc == CV_FOURCC('R','G','B','A')) in open()
/dports/misc/darknet/darknet-darknet_yolo_v4_pre/src/
H A Dyolo_console_dll.cpp386 …output_video.open(out_videofile, CV_FOURCC('D', 'I', 'V', 'X'), std::max(35, video_fps), frame_siz… in main()
H A Dimage_opencv.cpp487 …new cv::VideoWriter(out_filename, CV_FOURCC(c1, c2, c3, c4), fps, cv::Size(width, height), is_colo… in create_video_writer()
/dports/deskutils/terminal-image-viewer/TerminalImageViewer-1.1.0/src/main/cpp/
H A DCImg.h59211 writers[index] = cvCreateVideoWriter(filename,CV_FOURCC(codec0,codec1,codec2,codec3),
/dports/multimedia/zart/gmic-2.8.1/src/
H A DCImg.h431 #define _cimg_fourcc CV_FOURCC
/dports/graphics/openfx-misc/openfx-misc-3ab0531/CImg/
H A DCImg.h59140 writers[index] = cvCreateVideoWriter(filename,CV_FOURCC(codec0,codec1,codec2,codec3),
/dports/graphics/photoflow/PhotoFlow-8472024f/src/vips/gmic/gmic/src/
H A DCImg.h56206 writers[index] = cvCreateVideoWriter(filename,CV_FOURCC(codec0,codec1,codec2,codec3),
/dports/graphics/cimg/CImg-v.2.9.7/
H A DCImg.h434 #define _cimg_fourcc CV_FOURCC
/dports/graphics/gmic/gmic-3.0.0/src/
H A DCImg.h434 #define _cimg_fourcc CV_FOURCC
/dports/graphics/gmic-qt/CImg-v.2.9.8/
H A DCImg.h434 #define _cimg_fourcc CV_FOURCC