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

MRG

parents 2e95aabe bc097cc7
No related branches found
No related tags found
No related merge requests found
...@@ -195,6 +195,10 @@ public: ...@@ -195,6 +195,10 @@ public:
{ {
this->GetFilter()->SetInput(input); this->GetFilter()->SetInput(input);
} }
const InputImageType * GetInput()
{
return this->GetFilter()->GetInput();
}
/** Return the computed Minimum. */ /** Return the computed Minimum. */
PixelType GetMinimum() const PixelType GetMinimum() const
...@@ -203,11 +207,11 @@ public: ...@@ -203,11 +207,11 @@ public:
} }
PixelObjectType* GetMinimumOutput() PixelObjectType* GetMinimumOutput()
{ {
return this->GetFilter()->MinimumOutput(); return this->GetFilter()->GetMinimumOutput();
} }
const PixelObjectType* GetMinimumOutput() const const PixelObjectType* GetMinimumOutput() const
{ {
return this->GetFilter()->MinimumOutput(); return this->GetFilter()->GetMinimumOutput();
} }
/** Return the computed Maximum. */ /** Return the computed Maximum. */
PixelType GetMaximum() const PixelType GetMaximum() const
......
...@@ -195,11 +195,11 @@ public: ...@@ -195,11 +195,11 @@ public:
typedef typename StatFilterType::PixelObjectType PixelObjectType; typedef typename StatFilterType::PixelObjectType PixelObjectType;
typedef typename StatFilterType::MatrixObjectType MatrixObjectType; typedef typename StatFilterType::MatrixObjectType MatrixObjectType;
void SetInput(TInputImage * input) void SetInput(InputImageType * input)
{ {
this->GetFilter()->SetInput(input); this->GetFilter()->SetInput(input);
} }
TInputImage * GetInput() const InputImageType * GetInput()
{ {
return this->GetFilter()->GetInput(); return this->GetFilter()->GetInput();
} }
......
...@@ -230,6 +230,10 @@ public: ...@@ -230,6 +230,10 @@ public:
{ {
this->GetFilter()->SetInput(input); this->GetFilter()->SetInput(input);
} }
const InputImageType * GetInput()
{
return this->GetFilter()->GetInput();
}
/** Return the computed Minimum. */ /** Return the computed Minimum. */
PixelType GetMinimum() const PixelType GetMinimum() const
......
...@@ -223,11 +223,11 @@ public: ...@@ -223,11 +223,11 @@ public:
typedef typename StatFilterType::PixelObjectType PixelObjectType; typedef typename StatFilterType::PixelObjectType PixelObjectType;
typedef typename StatFilterType::MatrixObjectType MatrixObjectType; typedef typename StatFilterType::MatrixObjectType MatrixObjectType;
void SetInput(TInputImage * input) void SetInput(InputImageType * input)
{ {
this->GetFilter()->SetInput(input); this->GetFilter()->SetInput(input);
} }
TInputImage * GetInput() const InputImageType * GetInput()
{ {
return this->GetFilter()->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