conv_image.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: conv_image.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:41:52  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: conv_image.cpp,v 1000.2 2004/06/01 19:41:52 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CConvImageApp: Convert an image from one format to another
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiapp.hpp>
  41. #include <corelib/ncbiargs.hpp>
  42. #include <corelib/ncbienv.hpp>
  43. #include <corelib/ncbireg.hpp>
  44. #include <corelib/ncbitime.hpp>
  45. #include <util/image/image_io.hpp>
  46. USING_NCBI_SCOPE;
  47. class CConvImageApp : public CNcbiApplication
  48. {
  49. public:
  50.     virtual void Init(void);
  51.     virtual int  Run(void);
  52.     virtual void Exit(void);
  53. };
  54. /////////////////////////////////////////////////////////////////////////////
  55. //  Init test for all different types of arguments
  56. void CConvImageApp::Init(void)
  57. {
  58.     // Create command-line argument descriptions class
  59.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  60.     // Specify USAGE context
  61.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  62.                               "Image read/write test application");
  63.     arg_desc->AddKey("in", "InputImage", "Image to convert",
  64.                      CArgDescriptions::eString);
  65.     arg_desc->AddKey("out", "OutputImage", "Resulting image",
  66.                      CArgDescriptions::eString);
  67.     arg_desc->AddOptionalKey("fmt", "OutputFormat",
  68.                              "Format of the new image",
  69.                              CArgDescriptions::eString);
  70.     arg_desc->SetConstraint("fmt",
  71.                             &(*new CArgAllow_Strings(),
  72.                               "jpeg", "tiff", "png", "bmp", "sgi", "raw"));
  73.     // Setup arg.descriptions for this application
  74.     SetupArgDescriptions(arg_desc.release());
  75. }
  76. int CConvImageApp::Run(void)
  77. {
  78.     CArgs args = GetArgs();
  79.     string in_file  = args["in"].AsString();
  80.     string out_file = args["out"].AsString();
  81.     CStopWatch sw;
  82.     sw.Start();
  83.     CRef<CImage> image(CImageIO::ReadImage(in_file));
  84.     double read_time = sw.Elapsed();
  85.     if ( !image ) {
  86.         LOG_POST(Error << "error: can't read image from " << in_file);
  87.         return 1;
  88.     }
  89.     LOG_POST(Info << "read " << in_file << " ("
  90.              << image->GetWidth() << ", " << image->GetHeight()
  91.              << ") in " << read_time << " seconds");
  92.     CImageIO::EType fmt = CImageIO::GetTypeFromFileName(out_file);
  93.     if (args["fmt"]) {
  94.         string str = args["fmt"].AsString();
  95.         if (str == "jpeg") {
  96.             fmt = CImageIO::eJpeg;
  97.         } else if (str == "png") {
  98.             fmt = CImageIO::ePng;
  99.         } else if (str == "tiff") {
  100.             fmt = CImageIO::eTiff;
  101.         } else if (str == "bmp") {
  102.             fmt = CImageIO::eBmp;
  103.         } else if (str == "raw") {
  104.             fmt = CImageIO::eRaw;
  105.         } else if (str == "sgi") {
  106.             fmt = CImageIO::eSgi;
  107.         }
  108.     }
  109.     CImageIO::WriteImage(*image, out_file, fmt);
  110.     double write_time = sw.Elapsed();
  111.     LOG_POST(Info << "wrote image in " << write_time - read_time
  112.              << " seconds");
  113.     return 0;
  114. }
  115. /////////////////////////////////////////////////////////////////////////////
  116. //  Cleanup
  117. void CConvImageApp::Exit(void)
  118. {
  119.     SetDiagStream(0);
  120. }
  121. /////////////////////////////////////////////////////////////////////////////
  122. //  MAIN
  123. int main(int argc, const char* argv[])
  124. {
  125.     // Execute main application function
  126.     return CConvImageApp().AppMain(argc, argv, 0, eDS_Default, 0);
  127. }
  128. /*
  129.  * ===========================================================================
  130.  * $Log: conv_image.cpp,v $
  131.  * Revision 1000.2  2004/06/01 19:41:52  gouriano
  132.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  133.  *
  134.  * Revision 1.3  2004/05/17 21:08:03  gorelenk
  135.  * Added include of PCH ncbi_pch.hpp
  136.  *
  137.  * Revision 1.2  2003/12/16 16:16:43  dicuccio
  138.  * Added more options - raw files
  139.  *
  140.  * Revision 1.1  2003/06/03 15:17:14  dicuccio
  141.  * Initial revision of image library
  142.  *
  143.  * ===========================================================================
  144.  */