Skip to content
Snippets Groups Projects
Commit 593087da authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

COMP: missing this

parent b7a93633
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ GAndRIndexImageFilter<TInputImageG, TInputImageR, TOutputImage, TFunction>
::SetInputG(const TInputImageG * image1)
{
// Process object is not const-correct so the const casting is required.
SetInput1(image1);
this->SetInput1(image1);
}
/**
......@@ -61,7 +61,7 @@ GAndRIndexImageFilter<TInputImageG, TInputImageR, TOutputImage, TFunction>
{
// Process object is not const-correct so the const casting is required.
// SetNthInput(1, const_cast<TInputImageR *>( image2 ));
SetInput2(image2);
this->SetInput2(image2);
}
/**
......
......@@ -43,7 +43,7 @@ RAndBAndNIRIndexImageFilter<TInputImageR, TInputImageB, TInputImageNIR, TOutputI
::SetInputR(const TInputImageR * image)
{
// Process object is not const-correct so the const casting is required.
SetInput1(image);
this->SetInput1(image);
}
/**
......@@ -55,7 +55,7 @@ void
RAndBAndNIRIndexImageFilter<TInputImageR, TInputImageB, TInputImageNIR, TOutputImage, TFunction>
::SetInputB(const TInputImageB * image)
{
SetInput2(image);
this->SetInput2(image);
}
/**
......@@ -67,7 +67,7 @@ void
RAndBAndNIRIndexImageFilter<TInputImageR, TInputImageB, TInputImageNIR, TOutputImage, TFunction>
::SetInputNIR(const TInputImageNIR * image)
{
SetInput3(image);
this->SetInput3(image);
}
template <class TInputImageR, class TInputImageB, class TInputImageNIR, class TOutputImage, class TFunction>
......
......@@ -43,7 +43,7 @@ RAndGAndNIRIndexImageFilter<TInputImageR, TInputImageG, TInputImageNIR, TOutputI
::SetInputR(const TInputImageR * image)
{
// Process object is not const-correct so the const casting is required.
SetInput1(image);
this->SetInput1(image);
}
/**
......@@ -55,7 +55,7 @@ void
RAndGAndNIRIndexImageFilter<TInputImageR, TInputImageG, TInputImageNIR, TOutputImage, TFunction>
::SetInputG(const TInputImageG * image)
{
SetInput2(image);
this->SetInput2(image);
}
/**
......@@ -67,7 +67,7 @@ void
RAndGAndNIRIndexImageFilter<TInputImageR, TInputImageG, TInputImageNIR, TOutputImage, TFunction>
::SetInputNIR(const TInputImageNIR * image)
{
SetInput3(image);
this->SetInput3(image);
}
template <class TInputImageR, class TInputImageG, class TInputImageNIR, class TOutputImage, class TFunction>
......
......@@ -47,7 +47,7 @@ RAndNIRIndexImageFilter<TInputImageR, TInputImageNIR, TOutputImage, TFunction>
::SetInputR(const TInputImageR * image1)
{
// Process object is not const-correct so the const casting is required.
SetInput1(image1);
this->SetInput1(image1);
}
/**
......@@ -61,7 +61,7 @@ RAndNIRIndexImageFilter<TInputImageR, TInputImageNIR, TOutputImage, TFunction>
{
// Process object is not const-correct so the const casting is required.
// SetNthInput(1, const_cast<TInputImageNIR *>( image2 ));
SetInput2(image2);
this->SetInput2(image2);
}
/**
......
......@@ -75,7 +75,7 @@ PolarimetricSynthesisFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputI
::SetInputHH(const TInputImageHH * image)
{
// Process object is not const-correct so the const casting is required.
SetInput1(image);
this->SetInput1(image);
m_PresentInputImages[0] = true;
}
......@@ -88,7 +88,7 @@ void
PolarimetricSynthesisFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction>
::SetInputHV(const TInputImageHV * image)
{
SetInput2(image);
this->SetInput2(image);
m_PresentInputImages[1] = true;
}
......@@ -101,7 +101,7 @@ void
PolarimetricSynthesisFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction>
::SetInputVH(const TInputImageVH * image)
{
SetInput3(image);
this->SetInput3(image);
m_PresentInputImages[2] = true;
}
......@@ -114,7 +114,7 @@ void
PolarimetricSynthesisFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction>
::SetInputVV(const TInputImageVV * image)
{
SetInput4(image);
this->SetInput4(image);
m_PresentInputImages[3] = true;
}
......
......@@ -34,7 +34,7 @@ void
SinclairImageFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction>
::SetInputHH(const TInputImageHH * image)
{
SetInput1(image);
this->SetInput1(image);
}
/**
......@@ -46,7 +46,7 @@ void
SinclairImageFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction>
::SetInputHV(const TInputImageHV * image)
{
SetInput2(image);
this->SetInput2(image);
}
/**
......@@ -58,7 +58,7 @@ void
SinclairImageFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction>
::SetInputVH(const TInputImageVH * image)
{
SetInput3(image);
this->SetInput3(image);
}
/**
......@@ -70,7 +70,7 @@ void
SinclairImageFilter<TInputImageHH, TInputImageHV, TInputImageVH, TInputImageVV, TOutputImage, TFunction>
::SetInputVV(const TInputImageVV * image)
{
SetInput4(image);
this->SetInput4(image);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment