From: schaerer Date: Fri, 10 Sep 2010 12:51:37 +0000 (+0000) Subject: a hopefully better option parser for vv X-Git-Tag: v1.2.0~395 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=fa16a72aba05d2d5ac4d96a7a42627ef6d2b1df2;p=clitk.git a hopefully better option parser for vv --- diff --git a/vv/vv.cxx b/vv/vv.cxx index b30e97c..d06d05c 100644 --- a/vv/vv.cxx +++ b/vv/vv.cxx @@ -27,6 +27,12 @@ #include "vvMainWindow.h" #include "vvConstants.h" +void load_image_first_error() +{ + std::cerr << "You need to load an image before adding an overlay!" << std::endl; + exit(1); +} + //------------------------------------------------------------------------------ int main( int argc, char** argv ) { @@ -53,48 +59,52 @@ int main( int argc, char** argv ) window.show(); - std::vector filenames; - std::vector > overlays; - std::vector > rois; - std::vector > vector_fields; + std::vector sequence_filenames; + enum {P_NORMAL,P_SEQUENCE}; + int parse_mode=P_NORMAL; + int n_image_loaded=0; + if (argc >1) { for (int i = 1; i < argc; i++) { - std::string temp = argv[i]; - if (temp=="--vf") { - assert(filenames.size()>=1); - vector_fields.push_back(std::make_pair(filenames.size()-1,argv[i+1])); - i++; //skip vf name - } + std::string current = argv[i]; + if (!current.compare(0,2,"--")) { //We are parsing an option + if (parse_mode == P_SEQUENCE) {//First finish the current sequence + window.LoadImages(sequence_filenames,MERGEDWITHTIME); + sequence_filenames.clear(); + parse_mode=P_NORMAL; + } + if (current=="--vf") { + if (!n_image_loaded) load_image_first_error(); + window.AddField(argv[i+1],n_image_loaded-1); + i++; //skip vf name + } + else if (current=="--overlay") { + if (!n_image_loaded) load_image_first_error(); + window.AddOverlayImage(n_image_loaded-1,argv[i+1]); + i++; //skip overlay name + } + else if (current=="--roi") { + if (!n_image_loaded) load_image_first_error(); + window.AddROI(n_image_loaded-1,argv[i+1]); + i++; //skip roi name + } + else if (current == "--sequence") { + n_image_loaded++; //count only one for the sequence + parse_mode=P_SEQUENCE; } + } + else if (parse_mode == P_SEQUENCE) + sequence_filenames.push_back(current); else { - if (temp=="--overlay") { - assert(filenames.size()>=1); - overlays.push_back(std::make_pair(filenames.size()-1,argv[i+1])); - i++; //skip overlay name - } - else { - if (temp=="--roi") { - assert(filenames.size()>=1); - rois.push_back(std::make_pair(filenames.size()-1,argv[i+1])); - i++; //skip overlay name - } - else { - filenames.push_back(temp); - } - } + DD(current); + std::vector image; image.push_back(current); + window.LoadImages(image,IMAGE); + n_image_loaded++; } } - window.LoadImages(filenames,IMAGE); - for (std::vector >::iterator i=overlays.begin(); - i!=overlays.end(); i++) - window.AddOverlayImage((*i).first,(*i).second.c_str()); - for (std::vector >::iterator i=vector_fields.begin(); - i!=vector_fields.end(); i++) - window.AddField((*i).second.c_str(), (*i).first); - for (std::vector >::iterator i=rois.begin(); - i!=rois.end(); i++) { - DD((*i).second.c_str()); - DD((*i).first); - // window.AddROI((*i).second.c_str(), (*i).first); + if (parse_mode == P_SEQUENCE) {//Finish any current sequence + window.LoadImages(sequence_filenames,MERGEDWITHTIME); + sequence_filenames.clear(); + parse_mode=P_NORMAL; } }