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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sub_image.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:41:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sub_image.cpp,v 1000.3 2004/06/01 19:41:56 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.  *    Test app -- tests various aspects of image conversion / manipulation
  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 CImageTestApp : 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 CImageTestApp::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->AddDefaultPositional("image", "Image to crop",
  64.                                    CArgDescriptions::eInputFile, "-");
  65.     arg_desc->AddOptionalKey("out", "OutFile",
  66.                              "File name of resultant JPEG image",
  67.                              CArgDescriptions::eString);
  68.     arg_desc->AddKey("x", "PosX", "Crop X Position",
  69.                      CArgDescriptions::eInteger);
  70.     arg_desc->AddKey("y", "PosX", "Crop X Position",
  71.                      CArgDescriptions::eInteger);
  72.     arg_desc->AddKey("wd", "Width", "Crop Width",
  73.                      CArgDescriptions::eInteger);
  74.     arg_desc->AddKey("ht", "Height", "Crop Height",
  75.                      CArgDescriptions::eInteger);
  76.     // Setup arg.descriptions for this application
  77.     SetupArgDescriptions(arg_desc.release());
  78. }
  79. int CImageTestApp::Run(void)
  80. {
  81.     CArgs args = GetArgs();
  82.     CNcbiIstream& istr = args["image"].AsInputFile();
  83.     int x = args["x"].AsInteger();
  84.     int y = args["y"].AsInteger();
  85.     int w = args["wd"].AsInteger();
  86.     int h = args["ht"].AsInteger();
  87.     CStopWatch sw;
  88.     sw.Start();
  89.     CRef<CImage> image(CImageIO::ReadSubImage(istr, x, y, w, h));
  90.     double read_time = sw.Elapsed();
  91.     if ( !image ) {
  92.         LOG_POST(Error << "error: can't get subimage");
  93.         return 1;
  94.     }
  95.     LOG_POST(Info << "read (" << x << ", " << y << ", " << x+w
  96.              << ", " << y+h << ") in " << read_time << " seconds");
  97.     if (args["out"]) {
  98.         CImageIO::WriteImage(*image, args["out"].AsString());
  99.         double write_time = sw.Elapsed();
  100.         LOG_POST(Info << "wrote image in " << write_time - read_time
  101.                  << " seconds");
  102.     }
  103.     return 0;
  104. }
  105. /////////////////////////////////////////////////////////////////////////////
  106. //  Cleanup
  107. void CImageTestApp::Exit(void)
  108. {
  109.     SetDiagStream(0);
  110. }
  111. /////////////////////////////////////////////////////////////////////////////
  112. //  MAIN
  113. int main(int argc, const char* argv[])
  114. {
  115.     // Execute main application function
  116.     return CImageTestApp().AppMain(argc, argv, 0, eDS_Default, 0);
  117. }
  118. /*
  119.  * ===========================================================================
  120.  * $Log: sub_image.cpp,v $
  121.  * Revision 1000.3  2004/06/01 19:41:56  gouriano
  122.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  123.  *
  124.  * Revision 1.5  2004/05/17 21:08:03  gorelenk
  125.  * Added include of PCH ncbi_pch.hpp
  126.  *
  127.  * Revision 1.4  2003/12/20 17:49:25  dicuccio
  128.  * Changed sub_image to use streams instead of file names.  Changed to us implicit
  129.  * format guessing.
  130.  *
  131.  * Revision 1.3  2003/12/16 16:16:43  dicuccio
  132.  * Added more options - raw files
  133.  *
  134.  * Revision 1.2  2003/11/03 15:19:57  dicuccio
  135.  * Added optional compression parameter
  136.  *
  137.  * Revision 1.1  2003/06/03 15:17:14  dicuccio
  138.  * Initial revision of image library
  139.  *
  140.  * ===========================================================================
  141.  */