/*! * \file main.cpp * \author Konrad Werys * \date 2018/07/24 */ #include #include "CmakeConfigForTomato.h" #include "Tomato.h" #include "TomatoOptions.h" /** * main * Try tests/testData/Hcmr_Phantom_1916_Shmolli_192i_e11_fileList.yaml * @return always 0 */ int main(int argc, char* argv[]) { if (argc != 2){ printf("\nUse: OxShmolliExe(). Please see examples in testData\n"); Ox::TomatoOptions::printAvailable(); } else if (argc == 2) { // process only if ITK is available #ifdef USE_ITK std::string inputFileName(argv[1]); Ox::Tomato Tomato_object(inputFileName); Tomato_object._opts->printCurrent(); Tomato_object.readAndSort(); Tomato_object.calculate(); Tomato_object.exportToDicom(); Tomato_object.visualise(); #else throw std::runtime_error("You need ITK to run the executable"); #endif } printf("Thank you for using!\n"); printf("Konrad Werys 2018\n"); printf("konrad.werys@cardiov.ox.ac.uk\n\n"); return 0; }