IICP.hpp
1 #pragma once
2 
3 #include <opals/IModuleBase.hpp>
4 #include <opals/Path.hpp>
5 #include <opals/Vector.hpp>
6 #include <opals/TrafPars3dAffine.hpp>
7 #include <opals/LSMTrafoType.hpp>
8 
9 #if defined(_MSC_VER) && !defined(OPALS_NO_AUTOLINK)
10  #if defined _DEBUG && !defined OPALS_NO_DEBUG
11  #pragma comment(lib, "opalsICP_d.lib")
12  #else
13  #pragma comment(lib, "opalsICP.lib")
14  #endif
15 #endif
16 
17 namespace opals {
18 
19  namespace opts
20  {
21  /// Options of \ref ModuleICP
22  namespace ICP
23  {
24  /// Options of \ref ModuleICP
25  using Options =
26  IGroup< Names::_, false,
47  >;
48  }
49  }
50 
51  /// Performs orientation (co-registration) of multiple point cloud datasets using the Iterative Closest Point algorithm.
52  /** TODO:
53  More details on opalsICP with much more words,
54  possibly on several lines. */
55  /// \see \ref ModuleICP
56  class OPALS_API IICP : virtual public IModuleBase
57  {
58 
59  public:
60  static IICP* New();
61  static IICP* New( IControlObject &controlObject );
62  static IICP* New( const IModuleBase &parent );
63  static IICP* New( const IModuleBase &parent, IControlObject &controlObject );
64 
65  virtual ~IICP() {}
66 
67  /// \name Access to module-specific options.
68  ///@{
70  virtual Options& opts() = 0;
71  virtual const Options& opts() const = 0;
72  ///@}
73 
74  };
75 
76 };
Leaf that holds a read-only value.
Definition: IOption.hpp:63
Contains the public interface of OPALS.
Definition: AbsValueOrQuantile.hpp:8
Abstract base class of all opals modules.
Definition: IModuleBase.hpp:13
IGroup< Names::_, false, ILeaf< Names::inFile, false, Vector< Path > >, ILeaf< Names::redPoint, false, Array< double, 3 > >, ILeaf< Names::filter, false, String >, ILeaf< Names::outDirectory, false, Path >, ILeaf< Names::tempDirectory, false, Path >, ILeaf< Names::trafoType, false, LSMTrafoType >, ILeaf< Names::fixedFile, false, Vector< Path > >, ILeaf< Names::voxelSize, false, double >, ILeaf< Names::samplingDist, false, Vector< double > >, ILeaf< Names::searchRadius, false, double >, ILeaf< Names::maxIter, false, int >, ILeaf< Names::subsetRadius, false, double >, ILeaf< Names::maxDist, false, double >, ILeaf< Names::maxSigma, false, double >, ILeaf< Names::maxAngleDev, false, double >, ILeaf< Names::normalSpaceSampling, false, double >, ILeaf< Names::maxLeverageSampling, false, double >, ILeaf< Names::plot, false, bool >, ILeaf< Names::transformData, false, bool >, ILeaf< Names::outTrafPars, true, Vector< TrafPars3dAffine > > > Options
Options of Module ICP.
Definition: IICP.hpp:47
Interface for retrieving status and progress information from a module run.
Definition: c++_api/inc/opals/IControlObject.hpp:30
Performs orientation (co-registration) of multiple point cloud datasets using the Iterative Closest P...
Definition: IICP.hpp:56
A group of options.
Definition: IOption.hpp:108