NifTK  16.4.1 - 0798f20
CMIC's Translational Medical Imaging Platform
mitkCorrectImageDistortion.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 mitkCorrectImageDistortion_h
16 #define mitkCorrectImageDistortion_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 
30 class NIFTKOPENCV_EXPORT CorrectImageDistortion : public itk::Object
31 {
32 
33 public:
34 
35  mitkClassMacroItkParent(CorrectImageDistortion, itk::Object)
36  itkNewMacro(CorrectImageDistortion)
37 
38  bool Correct(
39  const std::string& inputImageFileName,
40  const std::string& inputIntrinsicsFileName,
41  const std::string& inputDistortionCoefficientsFileName,
42  const std::string& outputImageFileName
43  );
44 
45 protected:
46 
48  virtual ~CorrectImageDistortion();
49 
50  CorrectImageDistortion(const CorrectImageDistortion&); // Purposefully not implemented.
51  CorrectImageDistortion& operator=(const CorrectImageDistortion&); // Purposefully not implemented.
52 
53 }; // end class
54 
55 } // end namespace
56 
57 #endif
Definition: mitkCorrectImageDistortion.h:30
Definition: ReceptorMemberCommandTest.cxx:25
#define NIFTKOPENCV_EXPORT
Definition: niftkSequentialCpuQds.h:27
GLsizei const GLcharARB ** string
Definition: glew.h:5194