video_writer.cpp 2.76 KB
Newer Older
1
#include <iostream>
2 3 4

#include "opencv2/opencv_modules.hpp"

5
#if defined(HAVE_OPENCV_CUDACODEC) && defined(WIN32)
6

7 8 9
#include <vector>
#include <numeric>

10
#include "opencv2/core.hpp"
11
#include "opencv2/cudacodec.hpp"
12
#include "opencv2/highgui.hpp"
13

14 15
#include "tick_meter.hpp"

16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
int main(int argc, const char* argv[])
{
    if (argc != 2)
    {
        std::cerr << "Usage : video_writer <input video file>" << std::endl;
        return -1;
    }

    const double FPS = 25.0;

    cv::VideoCapture reader(argv[1]);

    if (!reader.isOpened())
    {
        std::cerr << "Can't open input video file" << std::endl;
        return -1;
    }

34
    cv::cuda::printShortCudaDeviceInfo(cv::cuda::getDevice());
35 36

    cv::VideoWriter writer;
37
    cv::Ptr<cv::cudacodec::VideoWriter> d_writer;
38 39

    cv::Mat frame;
40
    cv::cuda::GpuMat d_frame;
41 42 43

    std::vector<double> cpu_times;
    std::vector<double> gpu_times;
44
    TickMeter tm;
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63

    for (int i = 1;; ++i)
    {
        std::cout << "Read " << i << " frame" << std::endl;

        reader >> frame;

        if (frame.empty())
        {
            std::cout << "Stop" << std::endl;
            break;
        }

        if (!writer.isOpened())
        {
            std::cout << "Frame Size : " << frame.cols << "x" << frame.rows << std::endl;

            std::cout << "Open CPU Writer" << std::endl;

64
            if (!writer.open("output_cpu.avi", cv::VideoWriter::fourcc('X', 'V', 'I', 'D'), FPS, frame.size()))
65 66 67
                return -1;
        }

68
        if (d_writer.empty())
69
        {
70
            std::cout << "Open CUDA Writer" << std::endl;
71

72 73
            const cv::String outputFilename = "output_gpu.avi";
            d_writer = cv::cudacodec::createVideoWriter(outputFilename, frame.size(), FPS);
74 75 76 77 78 79 80 81 82 83 84 85
        }

        d_frame.upload(frame);

        std::cout << "Write " << i << " frame" << std::endl;

        tm.reset(); tm.start();
        writer.write(frame);
        tm.stop();
        cpu_times.push_back(tm.getTimeMilli());

        tm.reset(); tm.start();
86
        d_writer->write(d_frame);
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
        tm.stop();
        gpu_times.push_back(tm.getTimeMilli());
    }

    std::cout << std::endl << "Results:" << std::endl;

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

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

    std::cout << "CPU [XVID] : Avg : " << cpu_avg << " ms FPS : " << 1000.0 / cpu_avg << std::endl;
    std::cout << "GPU [H264] : Avg : " << gpu_avg << " ms FPS : " << 1000.0 / gpu_avg << std::endl;

    return 0;
}
104 105 106 107 108

#else

int main()
{
109
    std::cout << "OpenCV was built without CUDA Video encoding support\n" << std::endl;
110 111 112 113
    return 0;
}

#endif