GPU 抽幀

#include <iostream>

#include "opencv2/opencv_modules.hpp"

#if defined(HAVE_OPENCV_CUDACODEC)
#include <fstream>
#include <string>
#include <vector>
#include<stdio.h>
#include <algorithm>
#include <numeric>
#include <iostream>
#include <opencv2/core.hpp>
#include <opencv2/core/opengl.hpp>
#include <opencv2/cudacodec.hpp>
#include <opencv2/highgui.hpp>
// #include <cuda_runtime.h>
// cudaGetDeviceCount(&num_devices);
// cudaSetDevice(cuda_device);

using namespace std;

int main(int argc, const char* argv[])
{
    if (argc != 2)
        return -1;

    const std::string fname(argv[1]);

    cv::namedWindow("GPU", cv::WINDOW_OPENGL);
    cv::cuda::setGlDevice();


    cv::cuda::GpuMat d_frame;
    cv::Ptr<cv::cudacodec::VideoReader> d_reader = cv::cudacodec::createVideoReader(fname);

    cv::TickMeter tm;
    std::vector<double> gpu_times;
    int i = 0;
    for (;;)
    {
        i++;
        if(i%5!=0)
        {
            continue;
        }
        tm.reset(); tm.start();
        if (!d_reader->nextFrame(d_frame))
            break;
        tm.stop();
        gpu_times.push_back(tm.getTimeMilli());
   //     cv::imshow("GPU", d_frame);

        cv::Mat frame2;
        d_frame.download(frame2);
        stringstream ss;
        ss<<i; 
		string savepath = "images"+ss.str()+".jpg";
        cv::imwrite(savepath, frame2);

        if (cv::waitKey(3) > 0)
            break;
    }

    // if ( !gpu_times.empty())
    // {
    //     std::cout << std::endl << "Results:" << std::endl;

    //     std::sort(gpu_times.begin(), gpu_times.end());

    //     double gpu_avg = std::accumulate(gpu_times.begin(), gpu_times.end(), 0.0) / gpu_times.size();

    //     std::cout << "GPU : Avg : " << gpu_avg << " ms FPS : " << 1000.0 / gpu_avg << std::endl;
    // }

    return 0;
}

#else

int main()
{
    std::cout << "OpenCV was built without CUDA Video decoding support\n" << std::endl;
    return 0;
}

#endif

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章