NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
mitkCorrectVideoFileDistortion.h
Go to the documentation of this file.
1 /*=============================================================================
2 
3  NifTK: A software platform for medical image computing.
4 
5  Copyright (c) University College London (UCL). All rights reserved.
6 
7  This software is distributed WITHOUT ANY WARRANTY; without even
8  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9  PURPOSE.
10 
11  See LICENSE.txt in the top level directory for details.
12 
13 =============================================================================*/
14 
15 #ifndef mitkCorrectVideoFileDistortion_h
16 #define mitkCorrectVideoFileDistortion_h
17 
18 #include "niftkOpenCVExports.h"
19 #include <string>
20 #include <itkObject.h>
21 #include <itkObjectFactory.h>
22 #include <mitkCommon.h>
23 
24 namespace mitk {
25 
31 {
32 
33 public:
34 
35  mitkClassMacroItkParent(CorrectVideoFileDistortion, itk::Object)
36  itkNewMacro(CorrectVideoFileDistortion)
37 
38  bool Correct(
39  const std::string& inputImageFileName,
40  const std::string& inputIntrinsicsFileNameLeft,
41  const std::string& inputDistortionCoefficientsFileNameLeft,
42  const std::string& inputIntrinsicsFileNameRight,
43  const std::string& inputDistortionCoefficientsFileNameRight,
44  const std::string& outputImageFileName,
45  bool writeInterleaved
46  );
47 
48 protected:
49 
51  virtual ~CorrectVideoFileDistortion();
52 
53  CorrectVideoFileDistortion(const CorrectVideoFileDistortion&); // Purposefully not implemented.
54  CorrectVideoFileDistortion& operator=(const CorrectVideoFileDistortion&); // Purposefully not implemented.
55 
56 }; // end class
57 
58 } // end namespace
59 
60 #endif
Definition: ReceptorMemberCommandTest.cxx:25
#define NIFTKOPENCV_EXPORT
Definition: niftkSequentialCpuQds.h:27
Definition: mitkCorrectVideoFileDistortion.h:30
GLsizei const GLcharARB ** string
Definition: glew.h:5194