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
|
/**********************************************************************
test2.cc: test app for jiblib
Author(s): Pieter.Kempeneers@ec.europa.eu
Copyright (C) 2016-2020 European Union (Joint Research Centre)
This file is part of jiplib.
jiplib is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
jiplib is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with jiplib. If not, see <https://www.gnu.org/licenses/>.
***********************************************************************/
#include <memory>
#include "base/Optionjl.h"
#include "algorithms/Filter2d.h"
#include "apps/AppFactory.h"
#include "imageclasses/Jim.h"
using namespace std;
int main(int argc, char *argv[])
{
Optionjl<string> output_opt("o", "output", "Output image file");
Optionjl<string> oformat_opt("of", "oformat", "Output image format (see also gdal_translate).","GTiff");
Optionjl<string> option_opt("co", "co", "Creation option for output file. Multiple options can be specified.");
Optionjl<unsigned long int> memory_opt("mem", "mem", "Buffer size (in MB) to read image data blocks in memory",0,1);
option_opt.setHide(1);
memory_opt.setHide(1);
bool doProcess;//stop process when program was invoked with help option (-h --help)
app::AppFactory app(argc,argv);
try{
doProcess=output_opt.retrieveOption(app);
oformat_opt.retrieveOption(app);
option_opt.retrieveOption(app);
memory_opt.retrieveOption(app);
if(doProcess){
if(output_opt.empty()){
std::cerr << "Error: no output file provided (use option -o). Use --help for help information" << std::endl;
exit(1);
}
}
shared_ptr<Jim> outputImg=Jim::createImg(app);
outputImg->setFile(output_opt[0],oformat_opt[0]);
outputImg->close();
std::cout << "test2: done" << std::endl;
}
catch(string helpString){//help was invoked
std::cout << helpString << std::endl;
return(1);
}
return(0);
}
|