00001 /*!@file Corba/tests/EchoImageClient.C a test program to send an image using corba: 00002 This is the client that sends and receives the image */ 00003 00004 //////////////////////////////////////////////////////////////////// // 00005 // The iLab Neuromorphic Vision C++ Toolkit - Copyright (C) 2001 by the // 00006 // University of Southern California (USC) and the iLab at USC. // 00007 // See http://iLab.usc.edu for information about this project. // 00008 // //////////////////////////////////////////////////////////////////// // 00009 // Major portions of the iLab Neuromorphic Vision Toolkit are protected // 00010 // under the U.S. patent ``Computation of Intrinsic Perceptual Saliency // 00011 // in Visual Environments, and Applications'' by Christof Koch and // 00012 // Laurent Itti, California Institute of Technology, 2001 (patent // 00013 // pending; application number 09/912,225 filed July 23, 2001; see // 00014 // http://pair.uspto.gov/cgi-bin/final/home.pl for current status). // 00015 // //////////////////////////////////////////////////////////////////// // 00016 // This file is part of the iLab Neuromorphic Vision C++ Toolkit. // 00017 // // 00018 // The iLab Neuromorphic Vision C++ Toolkit is free software; you can // 00019 // redistribute it and/or modify it under the terms of the GNU General // 00020 // Public License as published by the Free Software Foundation; either // 00021 // version 2 of the License, or (at your option) any later version. // 00022 // // 00023 // The iLab Neuromorphic Vision C++ Toolkit is distributed in the hope // 00024 // that it will be useful, but WITHOUT ANY WARRANTY; without even the // 00025 // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // 00026 // PURPOSE. See the GNU General Public License for more details. // 00027 // // 00028 // You should have received a copy of the GNU General Public License // 00029 // along with the iLab Neuromorphic Vision C++ Toolkit; if not, write // 00030 // to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, // 00031 // Boston, MA 02111-1307 USA. // 00032 // //////////////////////////////////////////////////////////////////// // 00033 // 00034 // Primary maintainer for this file: Lior Elazary <lelazary@yahoo.com> 00035 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/Corba/tests/EchoImageClient.C $ 00036 // $Id: EchoImageClient.C 6795 2006-06-29 20:45:32Z rjpeters $ 00037 // 00038 00039 00040 00041 00042 #include <iostream> 00043 #include "GUI/XWinManaged.H" 00044 #include "Image/Pixels.H" 00045 #include "Image/ShapeOps.H" 00046 #include "Image/ColorOps.H" 00047 #include "SIFT/ScaleSpace.H" 00048 #include "Raster/Raster.H" 00049 #include <time.h> 00050 #include "Corba/Objects/EchoImageServerSK.hh" 00051 #include "Corba/ImageOrbUtil.H" 00052 #include "Corba/CorbaUtil.H" 00053 00054 00055 int main(int argc, char **argv) 00056 { 00057 CORBA::ORB_ptr orb = CORBA::ORB_init(argc,argv,"omniORB4"); 00058 00059 CORBA::Object_ptr objEchoImageRef[10]; int nEchoImageObj; 00060 if (!getMultiObjectRef(orb, "saliency.EchoImage", 00061 objEchoImageRef, nEchoImageObj)) 00062 { 00063 LFATAL("Can not find any object to bind with"); 00064 } 00065 00066 EchoImageServer_var echoImage = 00067 EchoImageServer::_narrow(objEchoImageRef[0]); 00068 00069 Image< PixRGB<byte> > image; 00070 if (argc < 2) 00071 LFATAL("USAGE: EchoImageClient <image>"); 00072 else 00073 image = Raster::ReadRGB(argv[1]); 00074 00075 LINFO("Sending image size %ix%i", image.getWidth(), image.getHeight()); 00076 //envoke the methods from the object 00077 ImageOrb *orbImg = echoImage->echo(*image2Orb(image)); 00078 LINFO("Got ImageOrb"); 00079 00080 //convert the result to an Image 00081 Image< PixRGB<byte> > image2; 00082 orb2Image(*orbImg, image2); 00083 LINFO("Convert ImgOrb to image size %ix%i", 00084 image2.getWidth(), image2.getHeight()); 00085 00086 orb->destroy(); 00087 return 0; 00088 } 00089 00090 // ###################################################################### 00091 /* So things look consistent in everyone's emacs... */ 00092 /* Local Variables: */ 00093 /* indent-tabs-mode: nil */ 00094 /* End: */