root/branches/Carsten_PtrWork2/Tools/osgBench/Image.cpp

Revision 213, 4.2 kB (checked in by dirk, 2 years ago)

Added simple benchmarking toolkit. Not for permanent use, just for now.

Line 
1 /*---------------------------------------------------------------------------*\
2  *                                OpenSG                                     *
3  *                                                                           *
4  *                                                                           *
5  *             Copyright (C) 2000,2001 by the OpenSG Forum                   *
6  *                                                                           *
7  *                            www.opensg.org                                 *
8  *                                                                           *
9  *   contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de          *
10  *                                                                           *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
13  *                                License                                    *
14  *                                                                           *
15  * This library is free software; you can redistribute it and/or modify it   *
16  * under the terms of the GNU Library General Public License as published    *
17  * by the Free Software Foundation, version 2.                               *
18  *                                                                           *
19  * This library is distributed in the hope that it will be useful, but       *
20  * WITHOUT ANY WARRANTY; without even the implied warranty of                *
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU         *
22  * Library General Public License for more details.                          *
23  *                                                                           *
24  * You should have received a copy of the GNU Library General Public         *
25  * License along with this library; if not, write to the Free Software       *
26  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                 *
27  *                                                                           *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
30  *                                Changes                                    *
31  *                                                                           *
32  *                                                                           *
33  *                                                                           *
34  *                                                                           *
35  *                                                                           *
36  *                                                                           *
37 \*---------------------------------------------------------------------------*/
38
39 //---------------------------------------------------------------------------
40 //  Includes
41 //---------------------------------------------------------------------------
42
43 #include <OpenSG/OSGLog.h>
44 #include <Image.h>
45
46
47 Image::Image(void)
48 {
49     _image = OSG::NullFC;
50 }
51
52 Image::Image(const Image &copy)
53 {
54     _image = copy._image;
55 }
56
57 Image::Image(OSG::ImagePtr image)
58 {
59     _image = image;
60 }
61
62 Image::~Image()
63 {
64 }
65
66
67 void Image::write(std::string filename)
68 {
69     _image->write(filename.c_str());
70 }
71    
72 Image Image::clone(void)
73 {
74     Image clone;
75    
76     clone._image = OSG::Image::create();
77     // beginEditCP(clone._image);
78     clone._image->set(_image);
79     // endEditCP(clone._image);
80     
81     return clone;
82 }
83
84    
85 void Image::diff(Image img)
86 {
87     if( _image->getWidth() != img._image->getWidth() ||
88         _image->getHeight() != img._image->getHeight() ||
89         _image->getPixelFormat() != img._image->getPixelFormat())
90     {
91         FWARNING(("Image::diff: incompatible images!"));
92         return;
93     }
94    
95     // beginEditCP(_image);
96
97     const OSG::UInt8 *sdata = img._image->getData();
98           OSG::UInt8 *ddata = _image->editData();
99  
100     OSG::UInt32 nb = _image->getSize(false,false,false);
101    
102     for(OSG::UInt32 i = 0; i < nb; ++i, ++sdata, ++ddata)
103     {
104         *ddata = OSG::osgabs(*ddata - *sdata);
105     }
106    
107     // endEditCP(_image);
108 }
109
Note: See TracBrowser for help on using the browser.