You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
302 B
C++

#include "hdrplus/hdrplus_pipeline.h"
int main( int argc, char** argv )
{
if ( argc != 3 )
{
printf("Usage: ./demo BURST_FOLDER_PATH(no / at end) REFERENCE_IMAGE_PATH\n");
exit(1);
}
hdrplus::hdrplus_pipeline pipeline;
pipeline.run_pipeline( argv[1], argv[ 2 ]);
}