1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-23 00:49:38 +08:00

Merge pull request #1990 from clunietp:quality-2

Image Quality Analysis (IQA) API (#1990)

* Implement Quality API

* Update README, fixes for gcc/tests

* Add license headers

* Update README

* Update README

* Case fixing, CMakeLists.txt update

* Update CV_EXPORTS_W

* Updates for compiler and doxygen warnings

* Updates for doxygen

* Updates based on feedback from @alalek

* Compliance updates

* case fixing

* case fixing

* OpenCL test fixes

* Case fixing

* Python fixes

* Python fixes

* Compliance updates

* Python binding fix

* Documentation updates

* Update README, fix cv::Scalar ops

* Updated precompiled headers for src cpp

* Removed internal a/b perf tests
This commit is contained in:
clunietp
2019-02-16 09:51:16 -05:00
committed by Alexander Alekhin
parent 301aa7e908
commit 796853e057
19 changed files with 1422 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// 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_QUALITY_PRECOMP_HPP
#define OPENCV_QUALITY_PRECOMP_HPP
#include <opencv2/core.hpp>
#include "opencv2/quality/qualitybase.hpp"
#endif