• Fanny Monori's avatar
    Merge pull request #2229 from fannymonori:gsoc_dnn_superres · dda33bf3
    Fanny Monori authored
    * Adding dnn based super resolution module.
    
    * Fixed whitespace error in unit test
    
    * Fixed errors with time measuring functions.
    
    * Updated unit tests in dnn superres
    
    * Deleted unnecessary indents in dnn superres
    
    * Refactored includes in dnn superres
    
    * Moved video upsampling functions to sample code in dnn superres.
    
    * Replaced couts with CV_Error in dnn superres
    
    * Moved benchmarking functionality to sample codes in dnn superres.
    
    * Added performance test to dnn superres
    
    * Resolve buildbot errors
    
    * update dnn_superres
    
    - avoid highgui dependency
    - cleanup public API
    - use InputArray/OutputArray
    - test: avoid legacy test API
    dda33bf3
perf_precomp.hpp 403 Bytes
// This file is part of OpenCV project.
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.

#ifndef __OPENCV_PERF_PRECOMP_HPP__
#define __OPENCV_PERF_PRECOMP_HPP__

#include "opencv2/ts.hpp"
#include "opencv2/dnn_superres.hpp"

namespace opencv_test {
    using namespace cv::dnn_superres;
}

#endif