From ec40b85e755c77526a072509918f7fd71b30a280 Mon Sep 17 00:00:00 2001 From: Vladislav Sovrasov Date: Wed, 14 Sep 2016 12:16:10 +0300 Subject: [PATCH] Add license to interactive-calibration app sources --- apps/interactive-calibration/calibCommon.hpp | 7 ++++++- apps/interactive-calibration/calibController.cpp | 5 +++++ apps/interactive-calibration/calibController.hpp | 5 +++++ apps/interactive-calibration/calibPipeline.cpp | 6 ++++++ apps/interactive-calibration/calibPipeline.hpp | 6 ++++++ apps/interactive-calibration/frameProcessor.cpp | 5 +++++ apps/interactive-calibration/frameProcessor.hpp | 5 +++++ apps/interactive-calibration/main.cpp | 5 +++++ apps/interactive-calibration/parametersController.cpp | 5 +++++ apps/interactive-calibration/parametersController.hpp | 6 ++++++ apps/interactive-calibration/rotationConverters.cpp | 5 +++++ apps/interactive-calibration/rotationConverters.hpp | 8 ++++++-- 12 files changed, 65 insertions(+), 3 deletions(-) diff --git a/apps/interactive-calibration/calibCommon.hpp b/apps/interactive-calibration/calibCommon.hpp index 31c74b4..6acf610 100644 --- a/apps/interactive-calibration/calibCommon.hpp +++ b/apps/interactive-calibration/calibCommon.hpp @@ -1,8 +1,13 @@ +// 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 CALIB_COMMON_HPP #define CALIB_COMMON_HPP -#include #include + +#include #include #include diff --git a/apps/interactive-calibration/calibController.cpp b/apps/interactive-calibration/calibController.cpp index 186d373..1888ee5 100644 --- a/apps/interactive-calibration/calibController.cpp +++ b/apps/interactive-calibration/calibController.cpp @@ -1,8 +1,13 @@ +// 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. + #include "calibController.hpp" #include #include #include + #include #include diff --git a/apps/interactive-calibration/calibController.hpp b/apps/interactive-calibration/calibController.hpp index 170a80a..7a0f3f7 100644 --- a/apps/interactive-calibration/calibController.hpp +++ b/apps/interactive-calibration/calibController.hpp @@ -1,7 +1,12 @@ +// 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 CALIB_CONTROLLER_HPP #define CALIB_CONTROLLER_HPP #include "calibCommon.hpp" + #include #include #include diff --git a/apps/interactive-calibration/calibPipeline.cpp b/apps/interactive-calibration/calibPipeline.cpp index 4575a70..1047bfc 100644 --- a/apps/interactive-calibration/calibPipeline.cpp +++ b/apps/interactive-calibration/calibPipeline.cpp @@ -1,5 +1,11 @@ +// 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. + #include "calibPipeline.hpp" + #include + #include using namespace calib; diff --git a/apps/interactive-calibration/calibPipeline.hpp b/apps/interactive-calibration/calibPipeline.hpp index b5d311e..1c22b0d 100644 --- a/apps/interactive-calibration/calibPipeline.hpp +++ b/apps/interactive-calibration/calibPipeline.hpp @@ -1,7 +1,13 @@ +// 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 CALIB_PIPELINE_HPP #define CALIB_PIPELINE_HPP #include + #include #include "calibCommon.hpp" diff --git a/apps/interactive-calibration/frameProcessor.cpp b/apps/interactive-calibration/frameProcessor.cpp index 57e1d97..1e672b0 100644 --- a/apps/interactive-calibration/frameProcessor.cpp +++ b/apps/interactive-calibration/frameProcessor.cpp @@ -1,3 +1,7 @@ +// 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. + #include "frameProcessor.hpp" #include "rotationConverters.hpp" @@ -5,6 +9,7 @@ #include #include #include + #include #include #include diff --git a/apps/interactive-calibration/frameProcessor.hpp b/apps/interactive-calibration/frameProcessor.hpp index 119910a..4dbb8ab 100644 --- a/apps/interactive-calibration/frameProcessor.hpp +++ b/apps/interactive-calibration/frameProcessor.hpp @@ -1,9 +1,14 @@ +// 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 FRAME_PROCESSOR_HPP #define FRAME_PROCESSOR_HPP #include #include #include + #include "calibCommon.hpp" #include "calibController.hpp" diff --git a/apps/interactive-calibration/main.cpp b/apps/interactive-calibration/main.cpp index 051b24c..af62d4e 100644 --- a/apps/interactive-calibration/main.cpp +++ b/apps/interactive-calibration/main.cpp @@ -1,8 +1,13 @@ +// 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. + #include #include #include #include #include + #include #include #include diff --git a/apps/interactive-calibration/parametersController.cpp b/apps/interactive-calibration/parametersController.cpp index c935690..d581582 100644 --- a/apps/interactive-calibration/parametersController.cpp +++ b/apps/interactive-calibration/parametersController.cpp @@ -1,4 +1,9 @@ +// 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. + #include "parametersController.hpp" + #include template diff --git a/apps/interactive-calibration/parametersController.hpp b/apps/interactive-calibration/parametersController.hpp index 6477901..616f4e7 100644 --- a/apps/interactive-calibration/parametersController.hpp +++ b/apps/interactive-calibration/parametersController.hpp @@ -1,8 +1,14 @@ +// 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 PARAMETERS_CONTROLLER_HPP #define PARAMETERS_CONTROLLER_HPP #include + #include + #include "calibCommon.hpp" namespace calib { diff --git a/apps/interactive-calibration/rotationConverters.cpp b/apps/interactive-calibration/rotationConverters.cpp index dee3b53..ff31c9e 100644 --- a/apps/interactive-calibration/rotationConverters.cpp +++ b/apps/interactive-calibration/rotationConverters.cpp @@ -1,6 +1,11 @@ +// 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. + #include "rotationConverters.hpp" #include + #include #include diff --git a/apps/interactive-calibration/rotationConverters.hpp b/apps/interactive-calibration/rotationConverters.hpp index bddce3e..fcb5bcc 100644 --- a/apps/interactive-calibration/rotationConverters.hpp +++ b/apps/interactive-calibration/rotationConverters.hpp @@ -1,5 +1,9 @@ -#ifndef RAOTATION_CONVERTERS_HPP -#define RAOTATION_CONVERTERS_HPP +// 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 ROTATION_CONVERTERS_HPP +#define ROTATION_CONVERTERS_HPP #include -- 2.7.4