Skip to content
Snippets Groups Projects
Commit 2983b399 authored by Etienne Bougoin's avatar Etienne Bougoin
Browse files

ENH : add accessors

parent d9b75aa5
Branches
Tags
No related merge requests found
......@@ -124,6 +124,12 @@ public:
/** Get the residual ground error */
itkGetConstReferenceMacro(RMSGroundError,double);
/** Get the Error container */
ErrorsContainerType & GetErrorsContainer();
/** Get the mean error */
itkGetConstReferenceMacro(MeanError,double);
/** Get the GCPsContainer
* \return The GCPs container */
GCPsContainerType & GetGCPsContainer();
......
......@@ -69,6 +69,16 @@ GCPsToRPCSensorModelImageFilter< TImage >
return m_GCPsContainer;
}
template < class TImage >
typename GCPsToRPCSensorModelImageFilter< TImage >
::ErrorsContainerType &
GCPsToRPCSensorModelImageFilter< TImage >
::GetErrorsContainer()
{
// return the GCPs container
return m_ErrorsContainer;
}
template < class TImage >
void
GCPsToRPCSensorModelImageFilter< TImage >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment