a3fc8b9141f0d5ab5870d6a09c614833fe8bc3bf
[platform/upstream/opencv.git] / modules / legacy / src / image.cpp
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/
41
42 /* ////////////////////////////////////////////////////////////////////
43 //
44 //  C++ classes for image and matrices
45 //
46 // */
47
48 #include "precomp.hpp"
49 #include "opencv2/opencv_modules.hpp"
50 #ifdef HAVE_OPENCV_HIGHGUI
51 #  include "opencv2/highgui/highgui_c.h"
52 #endif
53
54 /////////////////////////////// CvImage implementation //////////////////////////////////
55
56 static bool
57 icvIsXmlOrYaml( const char* filename )
58 {
59     const char* suffix = strrchr( filename, '.' );
60     return suffix &&
61         (strcmp( suffix, ".xml" ) == 0 ||
62         strcmp( suffix, ".Xml" ) == 0 ||
63         strcmp( suffix, ".XML" ) == 0 ||
64         strcmp( suffix, ".yml" ) == 0 ||
65         strcmp( suffix, ".Yml" ) == 0 ||
66         strcmp( suffix, ".YML" ) == 0 ||
67         strcmp( suffix, ".yaml" ) == 0 ||
68         strcmp( suffix, ".Yaml" ) == 0 ||
69         strcmp( suffix, ".YAML" ) == 0);
70 }
71
72
73 static IplImage*
74 icvRetrieveImage( void* obj )
75 {
76     IplImage* img = 0;
77
78     if( CV_IS_IMAGE(obj) )
79         img = (IplImage*)obj;
80     else if( CV_IS_MAT(obj) )
81     {
82         CvMat* m = (CvMat*)obj;
83         img = cvCreateImageHeader( cvSize(m->cols,m->rows),
84                         CV_MAT_DEPTH(m->type), CV_MAT_CN(m->type) );
85         cvSetData( img, m->data.ptr, m->step );
86         img->imageDataOrigin = (char*)m->refcount;
87         m->data.ptr = 0; m->step = 0;
88         cvReleaseMat( &m );
89     }
90     else if( obj )
91     {
92         cvRelease( &obj );
93         CV_Error( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" );
94     }
95
96     return img;
97 }
98
99
100 bool CvImage::load( const char* filename, const char* imgname, int color )
101 {
102     IplImage* img = 0;
103
104     if( icvIsXmlOrYaml(filename) )
105     {
106         img = icvRetrieveImage(cvLoad(filename,0,imgname));
107         if( (img->nChannels > 1) != (color == 0) )
108             CV_Error( CV_StsNotImplemented,
109             "RGB<->Grayscale conversion is not implemented for images stored in XML/YAML" );
110         /*{
111             IplImage* temp_img = 0;
112             temp_img = cvCreateImage( cvGetSize(img), img->depth, color > 0 ? 3 : 1 ));
113             cvCvtColor( img, temp_img, color > 0 ? CV_GRAY2BGR : CV_BGR2GRAY );
114             cvReleaseImage( &img );
115             img = temp_img;
116         }*/
117     }
118 #ifdef HAVE_OPENCV_HIGHGUI
119     else
120         img = cvLoadImage( filename, color );
121 #endif
122
123     attach( img );
124     return img != 0;
125 }
126
127
128 bool CvImage::read( CvFileStorage* fs, const char* mapname, const char* imgname )
129 {
130     void* obj = 0;
131     IplImage* img = 0;
132
133     if( mapname )
134     {
135         CvFileNode* mapnode = cvGetFileNodeByName( fs, 0, mapname );
136         if( !mapnode )
137             obj = cvReadByName( fs, mapnode, imgname );
138     }
139     else
140         obj = cvReadByName( fs, 0, imgname );
141
142     img = icvRetrieveImage(obj);
143     attach( img );
144     return img != 0;
145 }
146
147
148 bool CvImage::read( CvFileStorage* fs, const char* seqname, int idx )
149 {
150     void* obj = 0;
151     IplImage* img = 0;
152     CvFileNode* seqnode = seqname ?
153         cvGetFileNodeByName( fs, 0, seqname ) : cvGetRootFileNode(fs,0);
154
155     if( seqnode && CV_NODE_IS_SEQ(seqnode->tag) )
156         obj = cvRead( fs, (CvFileNode*)cvGetSeqElem( seqnode->data.seq, idx ));
157     img = icvRetrieveImage(obj);
158     attach( img );
159     return img != 0;
160 }
161
162
163 void CvImage::save( const char* filename, const char* imgname, const int* params )
164 {
165     if( !image )
166         return;
167     if( icvIsXmlOrYaml( filename ) )
168         cvSave( filename, image, imgname );
169 #ifdef HAVE_OPENCV_HIGHGUI
170     else
171         cvSaveImage( filename, image, params );
172 #else
173     (void)params;
174 #endif
175 }
176
177
178 void CvImage::write( CvFileStorage* fs, const char* imgname )
179 {
180     if( image )
181         cvWrite( fs, imgname, image );
182 }
183
184
185 void CvImage::show( const char* window_name )
186 {
187 #ifdef HAVE_OPENCV_HIGHGUI
188     if( image )
189         cvShowImage( window_name, image );
190 #else
191     (void)window_name;
192 #endif
193 }
194
195
196 /////////////////////////////// CvMatrix implementation //////////////////////////////////
197
198 CvMatrix::CvMatrix( int _rows, int _cols, int _type, CvMemStorage* storage, bool alloc_data )
199 {
200     if( storage )
201     {
202         matrix = (CvMat*)cvMemStorageAlloc( storage, sizeof(*matrix) );
203         cvInitMatHeader( matrix, _rows, _cols, _type, alloc_data ?
204             cvMemStorageAlloc( storage, _rows*_cols*CV_ELEM_SIZE(_type) ) : 0 );
205     }
206     else
207         matrix = 0;
208 }
209
210 static CvMat*
211 icvRetrieveMatrix( void* obj )
212 {
213     CvMat* m = 0;
214
215     if( CV_IS_MAT(obj) )
216         m = (CvMat*)obj;
217     else if( CV_IS_IMAGE(obj) )
218     {
219         IplImage* img = (IplImage*)obj;
220         CvMat hdr, *src = cvGetMat( img, &hdr );
221         m = cvCreateMat( src->rows, src->cols, src->type );
222         cvCopy( src, m );
223         cvReleaseImage( &img );
224     }
225     else if( obj )
226     {
227         cvRelease( &obj );
228         CV_Error( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" );
229     }
230
231     return m;
232 }
233
234
235 bool CvMatrix::load( const char* filename, const char* matname, int color )
236 {
237     CvMat* m = 0;
238     if( icvIsXmlOrYaml(filename) )
239     {
240         m = icvRetrieveMatrix(cvLoad(filename,0,matname));
241
242         if( (CV_MAT_CN(m->type) > 1) != (color == 0) )
243             CV_Error( CV_StsNotImplemented,
244             "RGB<->Grayscale conversion is not implemented for matrices stored in XML/YAML" );
245         /*{
246             CvMat* temp_mat;
247             temp_mat = cvCreateMat( m->rows, m->cols,
248                 CV_MAKETYPE(CV_MAT_DEPTH(m->type), color > 0 ? 3 : 1 )));
249             cvCvtColor( m, temp_mat, color > 0 ? CV_GRAY2BGR : CV_BGR2GRAY );
250             cvReleaseMat( &m );
251             m = temp_mat;
252         }*/
253     }
254 #ifdef HAVE_OPENCV_HIGHGUI
255     else
256         m = cvLoadImageM( filename, color );
257 #endif
258
259     set( m, false );
260     return m != 0;
261 }
262
263
264 bool CvMatrix::read( CvFileStorage* fs, const char* mapname, const char* matname )
265 {
266     void* obj = 0;
267     CvMat* m = 0;
268
269     if( mapname )
270     {
271         CvFileNode* mapnode = cvGetFileNodeByName( fs, 0, mapname );
272         if( !mapnode )
273             obj = cvReadByName( fs, mapnode, matname );
274     }
275     else
276         obj = cvReadByName( fs, 0, matname );
277
278     m = icvRetrieveMatrix(obj);
279     set( m, false );
280     return m != 0;
281 }
282
283
284 bool CvMatrix::read( CvFileStorage* fs, const char* seqname, int idx )
285 {
286     void* obj = 0;
287     CvMat* m = 0;
288     CvFileNode* seqnode = seqname ?
289         cvGetFileNodeByName( fs, 0, seqname ) : cvGetRootFileNode(fs,0);
290
291     if( seqnode && CV_NODE_IS_SEQ(seqnode->tag) )
292         obj = cvRead( fs, (CvFileNode*)cvGetSeqElem( seqnode->data.seq, idx ));
293     m = icvRetrieveMatrix(obj);
294     set( m, false );
295     return m != 0;
296 }
297
298
299 void CvMatrix::save( const char* filename, const char* matname, const int* params )
300 {
301     if( !matrix )
302         return;
303     if( icvIsXmlOrYaml( filename ) )
304         cvSave( filename, matrix, matname );
305 #ifdef HAVE_OPENCV_HIGHGUI
306     else
307         cvSaveImage( filename, matrix, params );
308 #else
309     (void)params;
310 #endif
311 }
312
313
314 void CvMatrix::write( CvFileStorage* fs, const char* matname )
315 {
316     if( matrix )
317         cvWrite( fs, matname, matrix );
318 }
319
320
321 void CvMatrix::show( const char* window_name )
322 {
323 #ifdef HAVE_OPENCV_HIGHGUI
324     if( matrix )
325         cvShowImage( window_name, matrix );
326 #else
327     (void)window_name;
328 #endif
329 }
330
331
332 /* End of file. */