Dissolve two image files (gray scale or color)
Usage: dissolve infile1 infile2 outfile
#include <vigra/multi_array.hxx>
#include <vigra/multi_math.hxx>
#include <iostream>
{
{
std::cout <<
"Usage: " <<
argv[0] <<
" infile1 infile2 outfile" << std::endl;
std::cout << "(supported formats: " << impexListFormats() << ")" << std::endl;
return 1;
}
try
{
using namespace multi_math;
}
catch (std::exception & e)
{
std::cout << e.what() << std::endl;
return 1;
}
return 0;
}
Argument object for the function exportImage().
Definition imageinfo.hxx:134
Argument object for the function importImage().
Definition imageinfo.hxx:391
Class for a single RGB value.
Definition rgbvalue.hxx:128
TinyVectorView< VALUETYPE, TO-FROM > subarray() const
Definition tinyvector.hxx:887
image import and export functions