00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include "freMeanSquaresMetricController.h"
00024 #include "freExceptions.h"
00025
00026 namespace FREE
00027 {
00028
00032
00033
00034 MeanSquares2DMetricController::
00035 MeanSquares2DMetricController()
00036 {
00037
00038 this->UpdateControllerID(ControllerID::MeanSquares2DMetricController);
00039 this->m_Description = "Controls a mean square metric. The metric value is calculated by the sum of pixel value differences. Only good for intra modal use and on 2D images.";
00040 };
00041
00045
00046
00047 MeanSquares3DMetricController::
00048 MeanSquares3DMetricController()
00049 {
00050
00051 this->UpdateControllerID(ControllerID::MeanSquares3DMetricController);
00052 this->m_Description = "Controls a mean square metric. The metric value is calculated by the sum of pixel value differences. Only good for intra modal use and on 3D images.";
00053 };
00054
00055 }