Skip to content
Snippets Groups Projects
Commit bc097cc7 authored by Julien Malik's avatar Julien Malik
Browse files

BUG: fix bugs found thanks to compilation of wrappings

parent 1076f8bd
No related branches found
No related tags found
No related merge requests found
......@@ -195,6 +195,10 @@ public:
{
this->GetFilter()->SetInput(input);
}
const InputImageType * GetInput()
{
return this->GetFilter()->GetInput();
}
/** Return the computed Minimum. */
PixelType GetMinimum() const
......@@ -203,11 +207,11 @@ public:
}
PixelObjectType* GetMinimumOutput()
{
return this->GetFilter()->MinimumOutput();
return this->GetFilter()->GetMinimumOutput();
}
const PixelObjectType* GetMinimumOutput() const
{
return this->GetFilter()->MinimumOutput();
return this->GetFilter()->GetMinimumOutput();
}
/** Return the computed Maximum. */
PixelType GetMaximum() const
......
......@@ -195,11 +195,11 @@ public:
typedef typename StatFilterType::PixelObjectType PixelObjectType;
typedef typename StatFilterType::MatrixObjectType MatrixObjectType;
void SetInput(TInputImage * input)
void SetInput(InputImageType * input)
{
this->GetFilter()->SetInput(input);
}
TInputImage * GetInput()
const InputImageType * GetInput()
{
return this->GetFilter()->GetInput();
}
......
......@@ -230,6 +230,10 @@ public:
{
this->GetFilter()->SetInput(input);
}
const InputImageType * GetInput()
{
return this->GetFilter()->GetInput();
}
/** Return the computed Minimum. */
PixelType GetMinimum() const
......
......@@ -223,11 +223,11 @@ public:
typedef typename StatFilterType::PixelObjectType PixelObjectType;
typedef typename StatFilterType::MatrixObjectType MatrixObjectType;
void SetInput(TInputImage * input)
void SetInput(InputImageType * input)
{
this->GetFilter()->SetInput(input);
}
TInputImage * GetInput()
const InputImageType * GetInput()
{
return this->GetFilter()->GetInput();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment