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

BUG: Fix PrintableImageFilter which didn't update the number of components

parent c5373872
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ template <class TInputImage , class TMaskImage = otb::Image<unsigned char, 2> >
class ITK_EXPORT PrintableImageFilter :
public itk::ImageToImageFilter<TInputImage, otb::VectorImage<unsigned char, 2> >
{
public:
public:
typedef PrintableImageFilter Self;
typedef itk::ImageToImageFilter
<TInputImage, otb::VectorImage<unsigned char,2> > Superclass;
......@@ -222,14 +222,24 @@ public itk::ImageToImageFilter<TInputImage, otb::VectorImage<unsigned char, 2> >
}
itkGetMacro(BackgroundMaskValue, MaskPixelType);
protected:
/** PrintableImageFilter can produce an image which is a different
* resolution than its input image. As such, PrintableImageFilter
* needs to provide an implementation for
* GenerateOutputInformation() in order to inform the pipeline
* execution model. The original documentation of this method is
* below.
*
* \sa ProcessObject::GenerateOutputInformaton() */
virtual void GenerateOutputInformation();
protected:
PrintableImageFilter();
void BeforeGenerateData();
void GenerateData();
private:
private:
PrintableImageFilter(Self&); // intentionally not implemented
void operator=(const Self&); // intentionally not implemented
......
......@@ -86,6 +86,17 @@ PrintableImageFilter<TInputImage, TMaskImage>
return static_cast<MaskImageType *>(this->itk::ProcessObject::GetInput(1));
}
template <class TInputImage, class TMaskImage>
void
PrintableImageFilter<TInputImage, TMaskImage>
::GenerateOutputInformation()
{
// Call to the superclass implementation
Superclass::GenerateOutputInformation();
typename Superclass::OutputImagePointer outputPtr = this->GetOutput();
outputPtr->SetNumberOfComponentsPerPixel(3);
}
template <class TInputImage, class TMaskImage>
void
......
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