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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/* -*- C++ -*-
* File: multirender_test.cpp
* Copyright 2008-2011 LibRaw LLC (info@libraw.org)
* Created: Jul 10, 2011
*
* LibRaw simple C++ API: creates 8 different renderings from 1 source file. The 1st and 4th one should be identical
LibRaw is free software; you can redistribute it and/or modify
it under the terms of the one of three licenses as you choose:
1. GNU LESSER GENERAL PUBLIC LICENSE version 2.1
(See file LICENSE.LGPL provided in LibRaw distribution archive for details).
2. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
(See file LICENSE.CDDL provided in LibRaw distribution archive for details).
3. LibRaw Software License 27032010
(See file LICENSE.LibRaw.pdf provided in LibRaw distribution archive for details).
*/
#include <stdio.h>
#include <string.h>
#include <math.h>
#ifndef WIN32
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/mman.h>
#endif
#include "libraw/libraw.h"
#ifdef WIN32
#define snprintf _snprintf
#endif
int process_once(LibRaw& RawProcessor, int half_mode, int camera_wb, int auto_wb, int suffix, int user_flip,char *fname)
{
char outfn[1024];
RawProcessor.imgdata.params.half_size = half_mode;
RawProcessor.imgdata.params.use_camera_wb = camera_wb;
RawProcessor.imgdata.params.use_auto_wb = auto_wb;
RawProcessor.imgdata.params.user_flip = user_flip;
int ret = RawProcessor.dcraw_process();
if(LIBRAW_SUCCESS !=ret)
{
fprintf(stderr,"Cannot do postpocessing on %s: %s\n",
fname,libraw_strerror(ret));
return ret;
}
snprintf(outfn,sizeof(outfn),"%s.%d.%s", fname, suffix, (RawProcessor.imgdata.idata.colors>1?"ppm":"pgm"));
printf("Writing file %s\n",outfn);
if( LIBRAW_SUCCESS != (ret = RawProcessor.dcraw_ppm_tiff_writer(outfn)))
fprintf(stderr,"Cannot write %s: %s\n",outfn,libraw_strerror(ret));
return ret;
}
int main(int ac, char *av[])
{
int i, ret;
LibRaw RawProcessor;
if(ac<2)
{
printf(
"multirender_test - LibRaw %s sample. Performs 4 different renderings of one file\n"
" %d cameras supported\n"
"Usage: %s raw-files....\n"
,LibRaw::version(), LibRaw::cameraCount(),
av[0]);
return 0;
}
for (i=1;i<ac;i++)
{
printf("Processing file %s\n",av[i]);
if( (ret = RawProcessor.open_file(av[i])) != LIBRAW_SUCCESS)
{
fprintf(stderr,"Cannot open_file %s: %s\n",av[i],libraw_strerror(ret));
continue; // no recycle b/c open file will recycle itself
}
if( (ret = RawProcessor.unpack() ) != LIBRAW_SUCCESS)
{
fprintf(stderr,"Cannot unpack %s: %s\n",av[i],libraw_strerror(ret));
continue;
}
process_once(RawProcessor,0,0,0,1,-1,av[i]); // default flip
process_once(RawProcessor,1,0,1,2,-1,av[i]);
process_once(RawProcessor,1,1,0,3,-1,av[i]); // default flip
process_once(RawProcessor,1,1,0,4,1,av[i]); // flip 1
process_once(RawProcessor,1,1,0,5,3,av[i]); // flip 3
process_once(RawProcessor,1,1,0,6,1,av[i]); // 1 again same as 4
process_once(RawProcessor,1,1,0,7,-1,av[i]); // default again, same as 3
process_once(RawProcessor,0,0,0,8,-1,av[i]); // same as 1
RawProcessor.recycle(); // just for show this call
}
return 0;
}
|