7a7e569f4e70a5ab9db84c03c9fa00707d16837d
[opencv] / src / highgui / grfmt_jpeg.h
1 /*M///////////////////////////////////////////////////////////////////////////////////////\r
2 //\r
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.\r
4 //\r
5 //  By downloading, copying, installing or using the software you agree to this license.\r
6 //  If you do not agree to this license, do not download, install,\r
7 //  copy or use the software.\r
8 //\r
9 //\r
10 //                           License Agreement\r
11 //                For Open Source Computer Vision Library\r
12 //\r
13 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.\r
14 // Copyright (C) 2009, Willow Garage Inc., all rights reserved.\r
15 // Third party copyrights are property of their respective owners.\r
16 //\r
17 // Redistribution and use in source and binary forms, with or without modification,\r
18 // are permitted provided that the following conditions are met:\r
19 //\r
20 //   * Redistribution's of source code must retain the above copyright notice,\r
21 //     this list of conditions and the following disclaimer.\r
22 //\r
23 //   * Redistribution's in binary form must reproduce the above copyright notice,\r
24 //     this list of conditions and the following disclaimer in the documentation\r
25 //     and/or other materials provided with the distribution.\r
26 //\r
27 //   * The name of the copyright holders may not be used to endorse or promote products\r
28 //     derived from this software without specific prior written permission.\r
29 //\r
30 // This software is provided by the copyright holders and contributors "as is" and\r
31 // any express or implied warranties, including, but not limited to, the implied\r
32 // warranties of merchantability and fitness for a particular purpose are disclaimed.\r
33 // In no event shall the Intel Corporation or contributors be liable for any direct,\r
34 // indirect, incidental, special, exemplary, or consequential damages\r
35 // (including, but not limited to, procurement of substitute goods or services;\r
36 // loss of use, data, or profits; or business interruption) however caused\r
37 // and on any theory of liability, whether in contract, strict liability,\r
38 // or tort (including negligence or otherwise) arising in any way out of\r
39 // the use of this software, even if advised of the possibility of such damage.\r
40 //\r
41 //M*/\r
42 \r
43 #ifndef _GRFMT_JPEG_H_\r
44 #define _GRFMT_JPEG_H_\r
45 \r
46 #include "grfmt_base.h"\r
47 #include "bitstrm.h"\r
48 \r
49 #ifdef HAVE_JPEG\r
50 \r
51 // IJG-based Jpeg codec\r
52 \r
53 namespace cv\r
54 {\r
55 \r
56 class JpegDecoder : public BaseImageDecoder\r
57 {\r
58 public:\r
59 \r
60     JpegDecoder();\r
61     virtual ~JpegDecoder();\r
62 \r
63     bool  readData( Mat& img );\r
64     bool  readHeader();\r
65     void  close();\r
66 \r
67     ImageDecoder newDecoder() const;\r
68 \r
69 protected:\r
70 \r
71     FILE* m_f;\r
72     void* m_state;\r
73 };\r
74 \r
75 \r
76 class JpegEncoder : public BaseImageEncoder\r
77 {\r
78 public:\r
79     JpegEncoder();\r
80     virtual ~JpegEncoder();\r
81 \r
82     bool  write( const Mat& img, const vector<int>& params );\r
83     ImageEncoder newEncoder() const;\r
84 };\r
85 \r
86 }\r
87 \r
88 #endif\r
89 \r
90 #endif/*_GRFMT_JPEG_H_*/\r