~paparazzi-uav/paparazzi/v5.0-manual

« back to all changes in this revision

Viewing changes to sw/ext/opencv_bebop/opencv/modules/imgcodecs/src/grfmt_base.cpp

  • Committer: Paparazzi buildbot
  • Date: 2016-05-18 15:00:29 UTC
  • Revision ID: felix.ruess+docbot@gmail.com-20160518150029-e8lgzi5kvb4p7un9
Manual import commit 4b8bbb730080dac23cf816b98908dacfabe2a8ec from v5.0 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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_supported = false;
 
100
}
 
101
 
 
102
bool  BaseImageEncoder::isFormatSupported( int depth ) const
 
103
{
 
104
    return depth == CV_8U;
 
105
}
 
106
 
 
107
String BaseImageEncoder::getDescription() const
 
108
{
 
109
    return m_description;
 
110
}
 
111
 
 
112
bool BaseImageEncoder::setDestination( const String& filename )
 
113
{
 
114
    m_filename = filename;
 
115
    m_buf = 0;
 
116
    return true;
 
117
}
 
118
 
 
119
bool BaseImageEncoder::setDestination( std::vector<uchar>& buf )
 
120
{
 
121
    if( !m_buf_supported )
 
122
        return false;
 
123
    m_buf = &buf;
 
124
    m_buf->clear();
 
125
    m_filename = String();
 
126
    return true;
 
127
}
 
128
 
 
129
ImageEncoder BaseImageEncoder::newEncoder() const
 
130
{
 
131
    return ImageEncoder();
 
132
}
 
133
 
 
134
void BaseImageEncoder::throwOnEror() const
 
135
{
 
136
    if(!m_last_error.empty())
 
137
    {
 
138
        String msg = "Raw image encoder error: " + m_last_error;
 
139
        CV_Error( CV_BadImageSize, msg.c_str() );
 
140
    }
 
141
}
 
142
 
 
143
}
 
144
 
 
145
/* End of file. */