PTdecode/CImg-1.3.0/examples/fade_images.cpp

Mon, 03 Aug 2009 23:41:04 +0100

author
Philip Pemberton <philpem@philpem.me.uk>
date
Mon, 03 Aug 2009 23:41:04 +0100
changeset 11
69416826d18c
parent 5
1204ebf9340d
permissions
-rwxr-xr-x

added dep/*.d and obj/*.o to hgignore

     1 /*
     2  #
     3  #  File        : fade_images.cpp
     4  #                ( C++ source file )
     5  #
     6  #  Description : Compute a linear fading between two images.
     7  #                This file is a part of the CImg Library project.
     8  #                ( http://cimg.sourceforge.net )
     9  #
    10  #  Copyright   : David Tschumperle
    11  #                ( http://www.greyc.ensicaen.fr/~dtschump/ )
    12  #
    13  #  License     : CeCILL v2.0
    14  #                ( http://www.cecill.info/licences/Licence_CeCILL_V2-en.html )
    15  #
    16  #  This software is governed by the CeCILL  license under French law and
    17  #  abiding by the rules of distribution of free software.  You can  use,
    18  #  modify and/ or redistribute the software under the terms of the CeCILL
    19  #  license as circulated by CEA, CNRS and INRIA at the following URL
    20  #  "http://www.cecill.info".
    21  #
    22  #  As a counterpart to the access to the source code and  rights to copy,
    23  #  modify and redistribute granted by the license, users are provided only
    24  #  with a limited warranty  and the software's author,  the holder of the
    25  #  economic rights,  and the successive licensors  have only  limited
    26  #  liability.
    27  #
    28  #  In this respect, the user's attention is drawn to the risks associated
    29  #  with loading,  using,  modifying and/or developing or reproducing the
    30  #  software by the user in light of its specific status of free software,
    31  #  that may mean  that it is complicated to manipulate,  and  that  also
    32  #  therefore means  that it is reserved for developers  and  experienced
    33  #  professionals having in-depth computer knowledge. Users are therefore
    34  #  encouraged to load and test the software's suitability as regards their
    35  #  requirements in conditions enabling the security of their systems and/or
    36  #  data to be ensured and,  more generally, to use and operate it in the
    37  #  same conditions as regards security.
    38  #
    39  #  The fact that you are presently reading this means that you have had
    40  #  knowledge of the CeCILL license and that you accept its terms.
    41  #
    42 */
    44 #include "CImg.h"
    46 // The lines below are necessary when using a non-standard compiler as visualcpp6.
    47 #ifdef cimg_use_visualcpp6
    48 #define std
    49 #endif
    50 #ifdef min
    51 #undef min
    52 #undef max
    53 #endif
    55 #ifndef cimg_imagepath
    56 #define cimg_imagepath "img/"
    57 #endif
    59 // Main procedure
    60 //---------------
    61 int main(int argc,char **argv) {
    63   // Read and check command line parameters
    64   cimg_usage("Compute a linear fading between two 2D images");
    65   const char *file_i1 = cimg_option("-i1",cimg_imagepath "sh0r.pgm","Input Image 1");
    66   const char *file_i2 = cimg_option("-i2",cimg_imagepath "milla.bmp","Input Image 2");
    67   const char *file_o  = cimg_option("-o",(char*)0,"Output Image");
    68   const bool visu     = cimg_option("-visu",true,"Visualization mode");
    69   const double pmin   = cimg_option("-min",40.0,"Begin of the fade (in %)")/100.0;
    70   const double pmax   = cimg_option("-max",60.0,"End of the fade (in %)")/100.0;
    71   const double angle  = cimg_option("-angle",0.0,"Fade angle")*cimg_library::cimg::valuePI/180;
    73   // Init images
    74   cimg_library::CImg<unsigned char> img1(file_i1), img2(file_i2);
    75   if (img2.dimx()!=img1.dimx() || img2.dimy()!=img1.dimy() || img2.dimz()!=img1.dimz() || img2.dimv()!=img1.dimv()) {
    76     int
    77       dx = cimg_library::cimg::max(img1.dimx(),img2.dimx()),
    78       dy = cimg_library::cimg::max(img1.dimy(),img2.dimy()),
    79       dz = cimg_library::cimg::max(img1.dimz(),img2.dimz()),
    80       dv = cimg_library::cimg::max(img1.dimv(),img2.dimv());
    81     img1.resize(dx,dy,dz,dv,3);
    82     img2.resize(dx,dy,dz,dv,3);
    83   }
    84   cimg_library::CImg<unsigned char> dest(img1.dimx(),img1.dimy(),img1.dimz(),img1.dimv());
    86   // Compute the faded image
    87   const double ca=std::cos(angle), sa=std::sin(angle);
    88   double alpha;
    89   cimg_forXYZV(dest,x,y,z,k) {
    90     const double X = ((double)x/img1.dimx()-0.5)*ca + ((double)y/img1.dimy()-0.5)*sa;
    91     if (X+0.5<pmin) alpha=0; else {
    92       if (X+0.5>pmax) alpha=1; else alpha=(X+0.5-pmin)/(pmax-pmin);
    93     }
    94     dest(x,y,z,k) = (unsigned char)((1-alpha)*img1(x,y,z,k) + alpha*img2(x,y,z,k));
    95   }
    97   // Save and exit
    98   if (file_o) dest.save(file_o);
    99   if (visu) dest.display("Image fading");
   100   return 0;
   101 }