opencv-mobile icon indicating copy to clipboard operation
opencv-mobile copied to clipboard

mjpg streaming

Open nihui opened this issue 1 year ago • 0 comments

cv::VideoCapture cap;
cap.set(cv::CAP_PROP_FRAME_WIDTH, 720);
cap.set(cv::CAP_PROP_FRAME_HEIGHT, 720);
cap.open(0);

cv::VideoWriter writer;
writer.open(":12345", cv::VideoWriter::fourcc('M', 'J', 'P', 'G'));

cv::Mat bgr;
while (1)
{
    cap >> bgr;
    writer << bgr;
}

nihui avatar Aug 11 '24 13:08 nihui