Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include "cmtkRegistrationJointHistogram.h"
00034
00035 namespace
00036 cmtk
00037 {
00038
00041
00042 template<cmtk::Interpolators::InterpolationEnum I>
00043 RegistrationJointHistogram<I>::RegistrationJointHistogram
00044 ( const UniformVolume* refVolume, const UniformVolume* fltVolume,
00045 const unsigned int numBinsX, const unsigned int numBinsY,
00046 const Types::DataItemRange& boundsX,
00047 const Types::DataItemRange& boundsY ) :
00048 #ifdef CMTK_PVI_HISTOGRAMS
00049 JointHistogram<float>(),
00050 #else
00051 JointHistogram<int>(),
00052 #endif
00053 VoxelMatchingMetric<byte,TYPE_BYTE,I>( refVolume, fltVolume, false )
00054 {
00055 this->Resize( this->DataX.Init( refVolume, numBinsX, boundsX ), this->DataY.Init( fltVolume, numBinsY, boundsY ) );
00056 }
00057
00058
00059 template class RegistrationJointHistogram<Interpolators::LINEAR>;
00060 template class RegistrationJointHistogram<Interpolators::NEAREST_NEIGHBOR>;
00061
00062 }