1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkImageToHistogramFilter.txx
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __itkImageToHistogramFilter_txx
#define __itkImageToHistogramFilter_txx
#include "itkImageToHistogramFilter.h"
namespace itk {
namespace Statistics {
template < class TImage >
ImageToHistogramFilter< TImage >
::ImageToHistogramFilter()
{
this->SetNumberOfRequiredInputs(1);
this->SetNumberOfRequiredOutputs(1);
this->ProcessObject::SetNthOutput( 0, this->MakeOutput(0) );
this->m_ImageToListAdaptor = AdaptorType::New();
this->m_HistogramGenerator = GeneratorType::New();
this->m_HistogramGenerator->SetInput( this->m_ImageToListAdaptor );
}
template < class TImage >
void
ImageToHistogramFilter< TImage >
::SetInput( const ImageType * image )
{
this->ProcessObject::SetNthInput(0, const_cast< ImageType * >( image ) );
}
template< class TImage >
const TImage *
ImageToHistogramFilter< TImage >
::GetInput( ) const
{
if (this->GetNumberOfInputs() < 1)
{
return 0;
}
return static_cast<const ImageType * >(this->ProcessObject::GetInput(0) );
}
template < class TImage >
DataObject::Pointer
ImageToHistogramFilter< TImage >
::MakeOutput(unsigned int itkNotUsed(idx))
{
typename HistogramType::Pointer output = HistogramType::New();
return static_cast< DataObject * >( output );
}
template < class TImage >
const typename ImageToHistogramFilter< TImage >::HistogramType *
ImageToHistogramFilter< TImage >
::GetOutput() const
{
const HistogramType * output =
static_cast< const HistogramType * >( this->ProcessObject::GetOutput(0));
return output;
}
template < class TImage >
void
ImageToHistogramFilter< TImage >
::GraftOutput(DataObject *graft)
{
DataObject * output =
const_cast< HistogramType * >( this->GetOutput() );
// Call Histogram to copy meta-information, and the container
output->Graft( graft );
}
template < class TImage >
void
ImageToHistogramFilter< TImage >
::GenerateData()
{
this->m_ImageToListAdaptor->SetImage( this->GetInput( ) );
this->m_HistogramGenerator->SetHistogramSizeInput( this->GetHistogramSizeInput() );
this->m_HistogramGenerator->SetMarginalScaleInput( this->GetMarginalScaleInput() );
this->m_HistogramGenerator->SetAutoMinimumMaximumInput( this->GetAutoMinimumMaximumInput() );
this->m_HistogramGenerator->SetHistogramBinMinimumInput( this->GetHistogramBinMinimumInput() );
this->m_HistogramGenerator->SetHistogramBinMaximumInput( this->GetHistogramBinMaximumInput() );
this->m_HistogramGenerator->GraftOutput(
static_cast< HistogramType * >( this->ProcessObject::GetOutput(0)) );
this->m_HistogramGenerator->Update();
/** graft the minipipeline output back into this filter's output */
this->GraftOutput(
const_cast< HistogramType * >( this->m_HistogramGenerator->GetOutput() ) );
}
template < class TImage >
void
ImageToHistogramFilter< TImage >
::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os,indent);
os << indent << "ImageToListSample adaptor = " << this->m_ImageToListAdaptor << std::endl;
os << indent << "HistogramGenerator = " << this->m_HistogramGenerator << std::endl;
// m_HistogramBinMinimum
os << indent << "HistogramBinMinimum: " << this->GetHistogramBinMinimumInput() << std::endl;
// m_HistogramBinMaximum
os << indent << "HistogramBinMaximum: " << this->GetHistogramBinMaximumInput() << std::endl;
// m_MarginalScale
os << indent << "MarginalScale: " << this->GetMarginalScaleInput() << std::endl;
// m_AutoMinimumMaximum
os << indent << "AutoMinimumMaximum: " << this->GetAutoMinimumMaximumInput() << std::endl;
// m_HistogramSize
os << indent << "HistogramSize: " << this->GetHistogramSizeInput() << std::endl;
}
} // end of namespace Statistics
} // end of namespace itk
#endif
|