RTSP Client FFMPEG OpenCV ON QT Save

RTSP Client Program using FFmpeg and OpenCV on Qt

Project README

RTSP-Client-FFMPEG-OpenCV-ON-QT

Prerequisite

Install libraries to use ffmpeg

sudo apt-get install libavcodec-dev
sudo apt-get install libavformat-dev
sudo apt-get install libavutil-dev
sudo apt-get install libswscale-dev
sudo apt-get install libswresample-dev
sudo apt-get install libavdevice-dev
sudo apt-get install libavfilter-dev

Install qtcreator

sudo apt-get install qtcreator

if you want to process only a image except a packet, you can easily process a image by using the below code.


#include <iostream>
#include <opencv2/opencv.hpp>

int main()
{
  cv::VideoCapture vc("your rtsp address");

  if(vc.isOpened())
  {
    cv::Mat src;

    while(vc.read(src))
    {
      cv::imshow("src",src);
      cv::waitKey(10);
    }
  }

  return 0;
}

Open Source Agenda is not affiliated with "RTSP Client FFMPEG OpenCV ON QT" Project. README Source: developer0hye/RTSP-Client-FFMPEG-OpenCV-ON-QT
Stars
61
Open Issues
0
Last Commit
5 years ago

Open Source Agenda Badge

Open Source Agenda Rating