Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/imgcodecs/src/grfmt_base.cpp
16337 views
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
#include "precomp.hpp"
43
44
#include "grfmt_base.hpp"
45
#include "bitstrm.hpp"
46
47
namespace cv
48
{
49
50
BaseImageDecoder::BaseImageDecoder()
51
{
52
m_width = m_height = 0;
53
m_type = -1;
54
m_buf_supported = false;
55
m_scale_denom = 1;
56
}
57
58
bool BaseImageDecoder::setSource( const String& filename )
59
{
60
m_filename = filename;
61
m_buf.release();
62
return true;
63
}
64
65
bool BaseImageDecoder::setSource( const Mat& buf )
66
{
67
if( !m_buf_supported )
68
return false;
69
m_filename = String();
70
m_buf = buf;
71
return true;
72
}
73
74
size_t BaseImageDecoder::signatureLength() const
75
{
76
return m_signature.size();
77
}
78
79
bool BaseImageDecoder::checkSignature( const String& signature ) const
80
{
81
size_t len = signatureLength();
82
return signature.size() >= len && memcmp( signature.c_str(), m_signature.c_str(), len ) == 0;
83
}
84
85
int BaseImageDecoder::setScale( const int& scale_denom )
86
{
87
int temp = m_scale_denom;
88
m_scale_denom = scale_denom;
89
return temp;
90
}
91
92
ImageDecoder BaseImageDecoder::newDecoder() const
93
{
94
return ImageDecoder();
95
}
96
97
BaseImageEncoder::BaseImageEncoder()
98
{
99
m_buf = 0;
100
m_buf_supported = false;
101
}
102
103
bool BaseImageEncoder::isFormatSupported( int depth ) const
104
{
105
return depth == CV_8U;
106
}
107
108
String BaseImageEncoder::getDescription() const
109
{
110
return m_description;
111
}
112
113
bool BaseImageEncoder::setDestination( const String& filename )
114
{
115
m_filename = filename;
116
m_buf = 0;
117
return true;
118
}
119
120
bool BaseImageEncoder::setDestination( std::vector<uchar>& buf )
121
{
122
if( !m_buf_supported )
123
return false;
124
m_buf = &buf;
125
m_buf->clear();
126
m_filename = String();
127
return true;
128
}
129
130
bool BaseImageEncoder::writemulti(const std::vector<Mat>&, const std::vector<int>& )
131
{
132
return false;
133
}
134
135
ImageEncoder BaseImageEncoder::newEncoder() const
136
{
137
return ImageEncoder();
138
}
139
140
void BaseImageEncoder::throwOnEror() const
141
{
142
if(!m_last_error.empty())
143
{
144
String msg = "Raw image encoder error: " + m_last_error;
145
CV_Error( CV_BadImageSize, msg.c_str() );
146
}
147
}
148
149
}
150
151
/* End of file. */
152
153