Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
ec40b85e
Commit
ec40b85e
authored
8 years ago
by
Vladislav Sovrasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add license to interactive-calibration app sources
parent
473dba11
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
65 additions
and
3 deletions
+65
-3
calibCommon.hpp
apps/interactive-calibration/calibCommon.hpp
+6
-1
calibController.cpp
apps/interactive-calibration/calibController.cpp
+5
-0
calibController.hpp
apps/interactive-calibration/calibController.hpp
+5
-0
calibPipeline.cpp
apps/interactive-calibration/calibPipeline.cpp
+6
-0
calibPipeline.hpp
apps/interactive-calibration/calibPipeline.hpp
+6
-0
frameProcessor.cpp
apps/interactive-calibration/frameProcessor.cpp
+5
-0
frameProcessor.hpp
apps/interactive-calibration/frameProcessor.hpp
+5
-0
main.cpp
apps/interactive-calibration/main.cpp
+5
-0
parametersController.cpp
apps/interactive-calibration/parametersController.cpp
+5
-0
parametersController.hpp
apps/interactive-calibration/parametersController.hpp
+6
-0
rotationConverters.cpp
apps/interactive-calibration/rotationConverters.cpp
+5
-0
rotationConverters.hpp
apps/interactive-calibration/rotationConverters.hpp
+6
-2
No files found.
apps/interactive-calibration/calibCommon.hpp
View file @
ec40b85e
// 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 <memory>
#include <opencv2/core.hpp>
#include <memory>
#include <vector>
#include <string>
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/calibController.cpp
View file @
ec40b85e
// 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 <algorithm>
#include <cmath>
#include <ctime>
#include <opencv2/calib3d.hpp>
#include <opencv2/imgproc.hpp>
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/calibController.hpp
View file @
ec40b85e
// 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 <stack>
#include <string>
#include <ostream>
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/calibPipeline.cpp
View file @
ec40b85e
// 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 <opencv2/highgui.hpp>
#include <stdexcept>
using
namespace
calib
;
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/calibPipeline.hpp
View file @
ec40b85e
// 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 <vector>
#include <opencv2/highgui.hpp>
#include "calibCommon.hpp"
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/frameProcessor.cpp
View file @
ec40b85e
// 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 <opencv2/imgproc.hpp>
#include <opencv2/aruco/charuco.hpp>
#include <opencv2/highgui.hpp>
#include <vector>
#include <string>
#include <algorithm>
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/frameProcessor.hpp
View file @
ec40b85e
// 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 <opencv2/core.hpp>
#include <opencv2/aruco/charuco.hpp>
#include <opencv2/calib3d.hpp>
#include "calibCommon.hpp"
#include "calibController.hpp"
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/main.cpp
View file @
ec40b85e
// 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 <opencv2/core.hpp>
#include <opencv2/calib3d.hpp>
#include <opencv2/aruco/charuco.hpp>
#include <opencv2/cvconfig.h>
#include <opencv2/highgui.hpp>
#include <string>
#include <vector>
#include <stdexcept>
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/parametersController.cpp
View file @
ec40b85e
// 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 <iostream>
template
<
typename
T
>
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/parametersController.hpp
View file @
ec40b85e
// 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 <string>
#include <opencv2/core.hpp>
#include "calibCommon.hpp"
namespace
calib
{
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/rotationConverters.cpp
View file @
ec40b85e
// 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 <cmath>
#include <opencv2/calib3d.hpp>
#include <opencv2/core.hpp>
...
...
This diff is collapsed.
Click to expand it.
apps/interactive-calibration/rotationConverters.hpp
View file @
ec40b85e
#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 <opencv2/core.hpp>
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment