mirror of
https://github.com/opencv/opencv.git
synced 2024-11-26 12:10:49 +08:00
cc05493730
Conflicts: cmake/OpenCVDetectAndroidSDK.cmake cmake/OpenCVGenAndroidMK.cmake cmake/OpenCVModule.cmake cmake/templates/OpenCV.mk.in cmake/templates/OpenCVConfig.cmake.in doc/tutorials/imgproc/histograms/histogram_comparison/histogram_comparison.rst modules/cudabgsegm/src/cuda/mog.cu modules/imgproc/perf/opencl/perf_filters.cpp modules/imgproc/src/opencl/filterSep_singlePass.cl modules/nonfree/CMakeLists.txt modules/nonfree/perf/perf_precomp.hpp modules/ocl/perf/perf_haar.cpp modules/ocl/src/filtering.cpp modules/ocl/src/opencl/bgfg_mog.cl modules/superres/CMakeLists.txt modules/superres/src/btv_l1_cuda.cpp modules/superres/src/cuda/btv_l1_gpu.cu modules/superres/src/frame_source.cpp modules/superres/src/input_array_utility.cpp modules/superres/src/optical_flow.cpp modules/superres/src/precomp.hpp samples/gpu/CMakeLists.txt samples/gpu/brox_optical_flow.cpp samples/gpu/super_resolution.cpp
163 lines
4.6 KiB
C++
163 lines
4.6 KiB
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <string>
|
|
#include <ctype.h>
|
|
|
|
#include "opencv2/core.hpp"
|
|
#include "opencv2/core/utility.hpp"
|
|
#include "opencv2/highgui.hpp"
|
|
#include "opencv2/imgproc.hpp"
|
|
#include "opencv2/contrib.hpp"
|
|
#include "opencv2/superres.hpp"
|
|
#include "opencv2/superres/optical_flow.hpp"
|
|
#include "opencv2/opencv_modules.hpp"
|
|
|
|
using namespace std;
|
|
using namespace cv;
|
|
using namespace cv::superres;
|
|
|
|
#define MEASURE_TIME(op) \
|
|
{ \
|
|
TickMeter tm; \
|
|
tm.start(); \
|
|
op; \
|
|
tm.stop(); \
|
|
cout << tm.getTimeSec() << " sec" << endl; \
|
|
}
|
|
|
|
static Ptr<DenseOpticalFlowExt> createOptFlow(const string& name, bool useGpu)
|
|
{
|
|
if (name == "farneback")
|
|
{
|
|
if (useGpu)
|
|
return createOptFlow_Farneback_CUDA();
|
|
else
|
|
return createOptFlow_Farneback();
|
|
}
|
|
else if (name == "simple")
|
|
return createOptFlow_Simple();
|
|
else if (name == "tvl1")
|
|
{
|
|
if (useGpu)
|
|
return createOptFlow_DualTVL1_CUDA();
|
|
else
|
|
return createOptFlow_DualTVL1();
|
|
}
|
|
else if (name == "brox")
|
|
return createOptFlow_Brox_CUDA();
|
|
else if (name == "pyrlk")
|
|
return createOptFlow_PyrLK_CUDA();
|
|
else
|
|
cerr << "Incorrect Optical Flow algorithm - " << name << endl;
|
|
|
|
return Ptr<DenseOpticalFlowExt>();
|
|
}
|
|
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
CommandLineParser cmd(argc, argv,
|
|
"{ v video | | Input video }"
|
|
"{ o output | | Output video }"
|
|
"{ s scale | 4 | Scale factor }"
|
|
"{ i iterations | 180 | Iteration count }"
|
|
"{ t temporal | 4 | Radius of the temporal search area }"
|
|
"{ f flow | farneback | Optical flow algorithm (farneback, simple, tvl1, brox, pyrlk) }"
|
|
"{ g | false | CPU as default device, cuda for CUDA }"
|
|
"{ h help | false | Print help message }"
|
|
);
|
|
|
|
if (cmd.get<bool>("help"))
|
|
{
|
|
cout << "This sample demonstrates Super Resolution algorithms for video sequence" << endl;
|
|
cmd.printMessage();
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
const string inputVideoName = cmd.get<string>("video");
|
|
const string outputVideoName = cmd.get<string>("output");
|
|
const int scale = cmd.get<int>("scale");
|
|
const int iterations = cmd.get<int>("iterations");
|
|
const int temporalAreaRadius = cmd.get<int>("temporal");
|
|
const string optFlow = cmd.get<string>("flow");
|
|
string gpuOption = cmd.get<string>("gpu");
|
|
|
|
std::transform(gpuOption.begin(), gpuOption.end(), gpuOption.begin(), ::tolower);
|
|
|
|
bool useCuda = gpuOption.compare("cuda") == 0;
|
|
Ptr<SuperResolution> superRes;
|
|
|
|
if (useCuda)
|
|
superRes = createSuperResolution_BTVL1_CUDA();
|
|
else
|
|
superRes = createSuperResolution_BTVL1();
|
|
|
|
Ptr<DenseOpticalFlowExt> of = createOptFlow(optFlow, useCuda);
|
|
|
|
if (of.empty())
|
|
return EXIT_FAILURE;
|
|
superRes->set("opticalFlow", of);
|
|
|
|
superRes->set("scale", scale);
|
|
superRes->set("iterations", iterations);
|
|
superRes->set("temporalAreaRadius", temporalAreaRadius);
|
|
|
|
Ptr<FrameSource> frameSource;
|
|
if (useCuda)
|
|
{
|
|
// Try to use gpu Video Decoding
|
|
try
|
|
{
|
|
frameSource = createFrameSource_Video_CUDA(inputVideoName);
|
|
Mat frame;
|
|
frameSource->nextFrame(frame);
|
|
}
|
|
catch (const cv::Exception&)
|
|
{
|
|
frameSource.release();
|
|
}
|
|
}
|
|
if (!frameSource)
|
|
frameSource = createFrameSource_Video(inputVideoName);
|
|
|
|
// skip first frame, it is usually corrupted
|
|
{
|
|
Mat frame;
|
|
frameSource->nextFrame(frame);
|
|
cout << "Input : " << inputVideoName << " " << frame.size() << endl;
|
|
cout << "Scale factor : " << scale << endl;
|
|
cout << "Iterations : " << iterations << endl;
|
|
cout << "Temporal radius : " << temporalAreaRadius << endl;
|
|
cout << "Optical Flow : " << optFlow << endl;
|
|
cout << "Mode : " << (useCuda ? "CUDA" : "CPU") << endl;
|
|
}
|
|
|
|
superRes->setInput(frameSource);
|
|
|
|
VideoWriter writer;
|
|
|
|
for (int i = 0;; ++i)
|
|
{
|
|
cout << '[' << setw(3) << i << "] : ";
|
|
Mat result;
|
|
|
|
MEASURE_TIME(superRes->nextFrame(result));
|
|
|
|
if (result.empty())
|
|
break;
|
|
|
|
imshow("Super Resolution", result);
|
|
|
|
if (waitKey(1000) > 0)
|
|
break;
|
|
|
|
if (!outputVideoName.empty())
|
|
{
|
|
if (!writer.isOpened())
|
|
writer.open(outputVideoName, VideoWriter::fourcc('X', 'V', 'I', 'D'), 25.0, result.size());
|
|
writer << result;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|