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 namespace
00033 cmtk
00034 {
00035
00038
00039 template<class T,ScalarDataType DT,cmtk::Interpolators::InterpolationEnum I>
00040 T inline VoxelMatchingMetric<T,DT,I>::GetSampleY
00041 ( const size_t baseIndex, const Types::Coordinate* frac )
00042 const
00043 {
00044 const Types::Coordinate offsX = 1.0 - frac[0];
00045 const Types::Coordinate offsY = 1.0 - frac[1];
00046 const Types::Coordinate offsZ = 1.0 - frac[2];
00047
00048 assert( (baseIndex+this->DataY.nextIJK) < this->DataY.NumberOfSamples );
00049 const T *node = this->DataY.Data + baseIndex;
00050
00051 return static_cast<T>
00052 ( offsZ*(offsY*(offsX*node[0] + frac[0]*node[1]) +
00053 frac[1]*(offsX*node[this->DataY.nextJ] +
00054 frac[0]*node[this->DataY.nextIJ]) )+
00055 frac[2]*(offsY*(offsX*node[this->DataY.nextK] +
00056 frac[0]*node[this->DataY.nextIK]) +
00057 frac[1]*(offsX*node[this->DataY.nextJK] +
00058 frac[0]*node[this->DataY.nextIJK]) ) );
00059 }
00060
00061 }