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 "cmtkVoxelMatchingCrossCorrelation.h"
00034
00035 namespace
00036 cmtk
00037 {
00038
00041
00042 VoxelMatchingCrossCorrelation
00043 ::VoxelMatchingCrossCorrelation( const UniformVolume* refVolume, const UniformVolume* fltVolume ) :
00044 VoxelMatchingMetricShort( refVolume, fltVolume )
00045 {}
00046
00047 VoxelMatchingCrossCorrelation::ReturnType
00048 VoxelMatchingCrossCorrelation
00049 ::Get() const
00050 {
00051 const double muX = SumX / Samples;
00052 const double muY = SumY / Samples;
00053
00054 const double p = SumXY - muY * SumX - muX * SumY + Samples * muX * muY;
00055 const double qX = SumSqX - 2 * muX * SumX + Samples * muX * muX;
00056 const double qY = SumSqY - 2 * muY * SumY + Samples * muY * muY;
00057
00058 return static_cast<Self::ReturnType>( p / sqrt( qX * qY ) );
00059 }
00060
00061 }