Skip to content
Snippets Groups Projects
main.cpp 385 B
Newer Older
  • Learn to ignore specific revisions
  • theazgra's avatar
    theazgra committed
    #include "czi_parser.h"
    
    theazgra's avatar
    theazgra committed
    int main(int argc, char **argv)
    {
    
        std::string cziFile;
    
        cziFile = (argc > 1) ? argv[1] : "/home/mor0146/gitlab/data_project/czi-format/inspector/czi-parser/data/CZT-Stack-Anno.czi";
    
        CziParser parser;
        auto parseResult = parser.parse_czi_file(cziFile);
    
    
        parseResult.extract_images("extracted");
        parseResult.report(false);
    
    theazgra's avatar
    theazgra committed
        return 0;