📄 expectationmaximizationibsrvalidationapp.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: ExpectationMaximizationIBSRValidationApp.cxx,v $
Language: C++
Date: $Date: 2003-09-10 14:30:12 $
Version: $Revision: 1.3 $
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: ExpectationMaximizationIBSRValidationApp --images file" << std::endl ;
std::cout << " --mask file --slice-offset int --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 << "--slice-offset 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: ExpectationMaximizationIBSRValidationApp --image 20Normals_T1_brain/110_3.mhd"
<< std::endl ;
std::cout << " --mask 20Normals_T1_seg/110_3.mhd --slice-offset 0" << std::endl ;
std::cout << " --iteration 200" << std::endl ;
}
int main(int argc, char* argv[])
{
namespace stat = itk::Statistics ;
if (argc <= 1)
{
print_usage() ;
exit(0) ;
}
ExpectationMaximizationValidationApp< unsigned char, 1 > app ;
app.SetCommandLineOptions(argc, argv) ;
std::vector< unsigned int > selectedClasses ;
selectedClasses.push_back(128) ;
selectedClasses.push_back(192) ;
selectedClasses.push_back(254) ;
app.SetSelectedClasses(selectedClasses) ;
app.Run() ;
return 0 ;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -