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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: ExpectationMaximizationBrainWebValidationApp.cxx
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.
=========================================================================*/
#include "itkWin32Header.h"
#include "OptionList.h"
#include "ValidationSampleGenerator.h"
#include "ParameterTable.h"
#include "ExpectationMaximizationValidationApp.h"
void print_usage()
{
std::cout << "kmeans clustering 1.0 (17. Dec. 2001)" << std::endl ;
std::cout << "usage: ExpectationMaximizationBrainWebValidationApp --images file..." << std::endl ;
std::cout << " --mask file --iteration int" << std::endl ;
std::cout << " --parameters file " << std::endl ;
std::cout << " --result file " << std::endl ;
std::cout << "" << std::endl ;
std::cout << "--images file..." << std::endl ;
std::cout << " image file name with intesnity values [meta image format]"
<< std::endl ;
std::cout << "--mask file" << std::endl ;
std::cout << " class label image file name that will have the class labels for pixels"
<< std::endl ;
std::cout << " in the target image file [meta image format]" << std::endl ;
std::cout << "--iteration int" << std::endl ;
std::cout << "--parameters file" << std::endl ;
std::cout << " data file has initial parameters for each class" << std::endl ;
std::cout << "" << std::endl ;
std::cout << "example: ExpectationMaximizationValidationApp --images brainweb.T1.1mm.0.0.mhd "
<< std::endl ;
std::cout << " brainweb.PD.1mm.0.0.mhd" << std::endl ;
std::cout << " --mask Inputs/20Normals_T1_seg/110_3.mhd" << std::endl ;
std::cout << " --bucket-size 10 --iteration 200" << std::endl ;
}
int main(int argc, char* argv[])
{
namespace stat = itk::Statistics ;
if (argc <= 1)
{
print_usage() ;
exit(0) ;
}
ExpectationMaximizationValidationApp< unsigned char, 2 > app ;
app.SetCommandLineOptions(argc, argv) ;
std::vector< unsigned int > selectedClasses ;
selectedClasses.push_back(1) ;
selectedClasses.push_back(2) ;
selectedClasses.push_back(3) ;
app.SetSelectedClasses(selectedClasses) ;
app.Run() ;
return 0 ;
}
|