loadsave.cpp 35.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
/*M///////////////////////////////////////////////////////////////////////////////////////
//
//  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
//  By downloading, copying, installing or using the software you agree to this license.
//  If you do not agree to this license, do not download, install,
//  copy or use the software.
//
//
//                        Intel License Agreement
//                For Open Source Computer Vision Library
//
// Copyright (C) 2000, Intel Corporation, all rights reserved.
// Third party copyrights are property of their respective owners.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
//   * Redistribution's of source code must retain the above copyright notice,
//     this list of conditions and the following disclaimer.
//
//   * Redistribution's in binary form must reproduce the above copyright notice,
//     this list of conditions and the following disclaimer in the documentation
//     and/or other materials provided with the distribution.
//
//   * The name of Intel Corporation may not be used to endorse or promote products
//     derived from this software without specific prior written permission.
//
// This software is provided by the copyright holders and contributors "as is" and
// any express or implied warranties, including, but not limited to, the implied
// warranties of merchantability and fitness for a particular purpose are disclaimed.
// In no event shall the Intel Corporation or contributors be liable for any direct,
// indirect, incidental, special, exemplary, or consequential damages
// (including, but not limited to, procurement of substitute goods or services;
// loss of use, data, or profits; or business interruption) however caused
// and on any theory of liability, whether in contract, strict liability,
// or tort (including negligence or otherwise) arising in any way out of
// the use of this software, even if advised of the possibility of such damage.
//
//M*/

//
S
Suleyman TURKMEN 已提交
43
//  Loading and saving images.
44 45 46 47
//

#include "precomp.hpp"
#include "grfmts.hpp"
48 49
#include "utils.hpp"
#include "exif.hpp"
50 51
#undef min
#undef max
52
#include <iostream>
53
#include <fstream>
54 55
#include <cerrno>
#include <opencv2/core/utils/logger.hpp>
56
#include <opencv2/core/utils/configuration.private.hpp>
57 58
#include <opencv2/imgcodecs.hpp>

59

60 61 62 63

/****************************************************************************************\
*                                      Image Codecs                                      *
\****************************************************************************************/
64 65 66

namespace cv {

67 68 69 70
static const size_t CV_IO_MAX_IMAGE_PARAMS = cv::utils::getConfigurationParameterSizeT("OPENCV_IO_MAX_IMAGE_PARAMS", 50);
static const size_t CV_IO_MAX_IMAGE_WIDTH = utils::getConfigurationParameterSizeT("OPENCV_IO_MAX_IMAGE_WIDTH", 1 << 20);
static const size_t CV_IO_MAX_IMAGE_HEIGHT = utils::getConfigurationParameterSizeT("OPENCV_IO_MAX_IMAGE_HEIGHT", 1 << 20);
static const size_t CV_IO_MAX_IMAGE_PIXELS = utils::getConfigurationParameterSizeT("OPENCV_IO_MAX_IMAGE_PIXELS", 1 << 30);
71 72 73 74

static Size validateInputImageSize(const Size& size)
{
    CV_Assert(size.width > 0);
75
    CV_Assert(static_cast<size_t>(size.width) <= CV_IO_MAX_IMAGE_WIDTH);
76
    CV_Assert(size.height > 0);
77
    CV_Assert(static_cast<size_t>(size.height) <= CV_IO_MAX_IMAGE_HEIGHT);
78 79 80 81 82 83
    uint64 pixels = (uint64)size.width * (uint64)size.height;
    CV_Assert(pixels <= CV_IO_MAX_IMAGE_PIXELS);
    return size;
}


84 85 86 87 88 89 90 91 92 93 94 95 96
namespace {

class ByteStreamBuffer: public std::streambuf
{
public:
    ByteStreamBuffer(char* base, size_t length)
    {
        setg(base, base, base + length);
    }

protected:
    virtual pos_type seekoff( off_type offset,
                              std::ios_base::seekdir dir,
97
                              std::ios_base::openmode ) CV_OVERRIDE
98
    {
B
Brian Armstrong 已提交
99
        char* whence = eback();
100 101
        if (dir == std::ios_base::cur)
        {
B
Brian Armstrong 已提交
102
            whence = gptr();
103 104 105
        }
        else if (dir == std::ios_base::end)
        {
B
Brian Armstrong 已提交
106
            whence = egptr();
107
        }
B
Brian Armstrong 已提交
108
        char* to = whence + offset;
109 110

        // check limits
B
Brian Armstrong 已提交
111
        if (to >= eback() && to <= egptr())
112
        {
B
Brian Armstrong 已提交
113
            setg(eback(), to, egptr());
114 115 116 117 118 119 120 121 122
            return gptr() - eback();
        }

        return -1;
    }
};

}

123 124 125 126 127
/**
 * @struct ImageCodecInitializer
 *
 * Container which stores the registered codecs to be used by OpenCV
*/
128 129
struct ImageCodecInitializer
{
130 131 132
    /**
     * Default Constructor for the ImageCodeInitializer
    */
133 134
    ImageCodecInitializer()
    {
135
        /// BMP Support
R
Roman Donchenko 已提交
136 137
        decoders.push_back( makePtr<BmpDecoder>() );
        encoders.push_back( makePtr<BmpEncoder>() );
138

139
    #ifdef HAVE_IMGCODEC_HDR
140 141
        decoders.push_back( makePtr<HdrDecoder>() );
        encoders.push_back( makePtr<HdrEncoder>() );
142
    #endif
143
    #ifdef HAVE_JPEG
R
Roman Donchenko 已提交
144 145
        decoders.push_back( makePtr<JpegDecoder>() );
        encoders.push_back( makePtr<JpegEncoder>() );
146 147
    #endif
    #ifdef HAVE_WEBP
R
Roman Donchenko 已提交
148 149
        decoders.push_back( makePtr<WebPDecoder>() );
        encoders.push_back( makePtr<WebPEncoder>() );
150
    #endif
151
    #ifdef HAVE_IMGCODEC_SUNRASTER
R
Roman Donchenko 已提交
152 153
        decoders.push_back( makePtr<SunRasterDecoder>() );
        encoders.push_back( makePtr<SunRasterEncoder>() );
154 155
    #endif
    #ifdef HAVE_IMGCODEC_PXM
R
Roman Donchenko 已提交
156
        decoders.push_back( makePtr<PxMDecoder>() );
157 158 159 160
        encoders.push_back( makePtr<PxMEncoder>(PXM_TYPE_AUTO) );
        encoders.push_back( makePtr<PxMEncoder>(PXM_TYPE_PBM) );
        encoders.push_back( makePtr<PxMEncoder>(PXM_TYPE_PGM) );
        encoders.push_back( makePtr<PxMEncoder>(PXM_TYPE_PPM) );
161 162 163
        decoders.push_back( makePtr<PAMDecoder>() );
        encoders.push_back( makePtr<PAMEncoder>() );
    #endif
P
pasbi 已提交
164 165 166 167
    #ifdef HAVE_IMGCODEC_PFM
        decoders.push_back( makePtr<PFMDecoder>() );
        encoders.push_back( makePtr<PFMEncoder>() );
    #endif
168
    #ifdef HAVE_TIFF
R
Roman Donchenko 已提交
169 170
        decoders.push_back( makePtr<TiffDecoder>() );
        encoders.push_back( makePtr<TiffEncoder>() );
171
    #endif
172 173 174 175
    #ifdef HAVE_SPNG
        decoders.push_back( makePtr<SPngDecoder>() );
        encoders.push_back( makePtr<SPngEncoder>() );
    #elif defined(HAVE_PNG)
R
Roman Donchenko 已提交
176 177
        decoders.push_back( makePtr<PngDecoder>() );
        encoders.push_back( makePtr<PngEncoder>() );
178
    #endif
179 180 181
    #ifdef HAVE_GDCM
        decoders.push_back( makePtr<DICOMDecoder>() );
    #endif
182
    #ifdef HAVE_JASPER
R
Roman Donchenko 已提交
183 184
        decoders.push_back( makePtr<Jpeg2KDecoder>() );
        encoders.push_back( makePtr<Jpeg2KEncoder>() );
185
    #endif
186
    #ifdef HAVE_OPENJPEG
187 188
        decoders.push_back( makePtr<Jpeg2KJP2OpjDecoder>() );
        decoders.push_back( makePtr<Jpeg2KJ2KOpjDecoder>() );
189 190
        encoders.push_back( makePtr<Jpeg2KOpjEncoder>() );
    #endif
191
    #ifdef HAVE_OPENEXR
R
Roman Donchenko 已提交
192 193
        decoders.push_back( makePtr<ExrDecoder>() );
        encoders.push_back( makePtr<ExrEncoder>() );
194
    #endif
195 196 197 198 199

    #ifdef HAVE_GDAL
        /// Attach the GDAL Decoder
        decoders.push_back( makePtr<GdalDecoder>() );
    #endif/*HAVE_GDAL*/
200 201
    }

202 203
    std::vector<ImageDecoder> decoders;
    std::vector<ImageEncoder> encoders;
204 205
};

206 207 208 209 210 211 212 213 214 215 216 217 218
static
ImageCodecInitializer& getCodecs()
{
#ifdef CV_CXX11
    static ImageCodecInitializer g_codecs;
    return g_codecs;
#else
    // C++98 doesn't guarantee correctness of multi-threaded initialization of static global variables
    // (memory leak here is not critical, use C++11 to avoid that)
    static ImageCodecInitializer* g_codecs = new ImageCodecInitializer();
    return *g_codecs;
#endif
}
219

220 221 222 223 224 225 226 227 228
/**
 * Find the decoders
 *
 * @param[in] filename File to search
 *
 * @return Image decoder to parse image file.
*/
static ImageDecoder findDecoder( const String& filename ) {

229
    size_t i, maxlen = 0;
230 231

    /// iterate through list of registered codecs
232
    ImageCodecInitializer& codecs = getCodecs();
233
    for( i = 0; i < codecs.decoders.size(); i++ )
234
    {
235
        size_t len = codecs.decoders[i]->signatureLength();
236 237 238
        maxlen = std::max(maxlen, len);
    }

239
    /// Open the file
240
    FILE* f= fopen( filename.c_str(), "rb" );
241 242

    /// in the event of a failure, return an empty image decoder
N
nickjackolson 已提交
243 244
    if( !f ) {
        CV_LOG_WARNING(NULL, "imread_('" << filename << "'): can't open/read file: check file path/integrity");
245
        return ImageDecoder();
N
nickjackolson 已提交
246
    }
247 248

    // read the file signature
249
    String signature(maxlen, ' ');
250
    maxlen = fread( (void*)signature.c_str(), 1, maxlen, f );
251 252 253
    fclose(f);
    signature = signature.substr(0, maxlen);

254
    /// compare signature against all decoders
255
    for( i = 0; i < codecs.decoders.size(); i++ )
256
    {
257 258
        if( codecs.decoders[i]->checkSignature(signature) )
            return codecs.decoders[i]->newDecoder();
259 260
    }

261
    /// If no decoder was found, return base type
262 263 264
    return ImageDecoder();
}

265
static ImageDecoder findDecoder( const Mat& buf )
266 267 268 269 270 271
{
    size_t i, maxlen = 0;

    if( buf.rows*buf.cols < 1 || !buf.isContinuous() )
        return ImageDecoder();

272
    ImageCodecInitializer& codecs = getCodecs();
273
    for( i = 0; i < codecs.decoders.size(); i++ )
274
    {
275
        size_t len = codecs.decoders[i]->signatureLength();
276 277 278
        maxlen = std::max(maxlen, len);
    }

279
    String signature(maxlen, ' ');
280 281
    size_t bufSize = buf.rows*buf.cols*buf.elemSize();
    maxlen = std::min(maxlen, bufSize);
282
    memcpy( (void*)signature.c_str(), buf.data, maxlen );
283

284
    for( i = 0; i < codecs.decoders.size(); i++ )
285
    {
286 287
        if( codecs.decoders[i]->checkSignature(signature) )
            return codecs.decoders[i]->newDecoder();
288 289 290 291 292
    }

    return ImageDecoder();
}

293
static ImageEncoder findEncoder( const String& _ext )
294 295 296 297 298 299 300 301
{
    if( _ext.size() <= 1 )
        return ImageEncoder();

    const char* ext = strrchr( _ext.c_str(), '.' );
    if( !ext )
        return ImageEncoder();
    int len = 0;
J
Julien Nabet 已提交
302
    for( ext++; len < 128 && isalnum(ext[len]); len++ )
303 304
        ;

305
    ImageCodecInitializer& codecs = getCodecs();
306
    for( size_t i = 0; i < codecs.encoders.size(); i++ )
307
    {
308
        String description = codecs.encoders[i]->getDescription();
309 310 311 312 313 314 315 316
        const char* descr = strchr( description.c_str(), '(' );

        while( descr )
        {
            descr = strchr( descr + 1, '.' );
            if( !descr )
                break;
            int j = 0;
J
Julien Nabet 已提交
317
            for( descr++; j < len && isalnum(descr[j]) ; j++ )
318 319 320 321 322 323 324
            {
                int c1 = tolower(ext[j]);
                int c2 = tolower(descr[j]);
                if( c1 != c2 )
                    break;
            }
            if( j == len && !isalnum(descr[j]))
325
                return codecs.encoders[i]->newEncoder();
326 327 328 329 330 331 332
            descr += j;
        }
    }

    return ImageEncoder();
}

333

334
static void ExifTransform(int orientation, Mat& img)
A
Arkadiusz Raj 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
{
    switch( orientation )
    {
        case    IMAGE_ORIENTATION_TL: //0th row == visual top, 0th column == visual left-hand side
            //do nothing, the image already has proper orientation
            break;
        case    IMAGE_ORIENTATION_TR: //0th row == visual top, 0th column == visual right-hand side
            flip(img, img, 1); //flip horizontally
            break;
        case    IMAGE_ORIENTATION_BR: //0th row == visual bottom, 0th column == visual right-hand side
            flip(img, img, -1);//flip both horizontally and vertically
            break;
        case    IMAGE_ORIENTATION_BL: //0th row == visual bottom, 0th column == visual left-hand side
            flip(img, img, 0); //flip vertically
            break;
        case    IMAGE_ORIENTATION_LT: //0th row == visual left-hand side, 0th column == visual top
            transpose(img, img);
            break;
        case    IMAGE_ORIENTATION_RT: //0th row == visual right-hand side, 0th column == visual top
            transpose(img, img);
            flip(img, img, 1); //flip horizontally
            break;
        case    IMAGE_ORIENTATION_RB: //0th row == visual right-hand side, 0th column == visual bottom
            transpose(img, img);
            flip(img, img, -1); //flip both horizontally and vertically
            break;
        case    IMAGE_ORIENTATION_LB: //0th row == visual left-hand side, 0th column == visual bottom
            transpose(img, img);
            flip(img, img, 0); //flip vertically
            break;
        default:
            //by default the image read has normal (JPEG_ORIENTATION_TL) orientation
            break;
    }
}
370

371
static void ApplyExifOrientation(ExifEntry_t orientationTag, Mat& img)
372 373 374
{
    int orientation = IMAGE_ORIENTATION_TL;

375
    if (orientationTag.tag != INVALID_TAG)
376
    {
377 378
        orientation = orientationTag.field_u16; //orientation is unsigned short, so check field_u16
        ExifTransform(orientation, img);
379 380 381
    }
}

382 383 384 385 386 387 388 389
/**
 * Read an image into memory and return the information
 *
 * @param[in] filename File to load
 * @param[in] flags Flags
 * @param[in] mat Reference to C++ Mat object (If LOAD_MAT)
 *
*/
390 391
static bool
imread_( const String& filename, int flags, Mat& mat )
392
{
393 394 395 396
    /// Search for the relevant decoder to handle the imagery
    ImageDecoder decoder;

#ifdef HAVE_GDAL
M
Maksim Shabunin 已提交
397
    if(flags != IMREAD_UNCHANGED && (flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL ){
398 399 400
        decoder = GdalDecoder().newDecoder();
    }else{
#endif
401
        decoder = findDecoder( filename );
402 403 404 405 406 407
#ifdef HAVE_GDAL
    }
#endif

    /// if no decoder was found, return nothing.
    if( !decoder ){
408
        return 0;
409 410
    }

411 412 413
    int scale_denom = 1;
    if( flags > IMREAD_LOAD_GDAL )
    {
414 415 416 417 418 419
        if( flags & IMREAD_REDUCED_GRAYSCALE_2 )
            scale_denom = 2;
        else if( flags & IMREAD_REDUCED_GRAYSCALE_4 )
            scale_denom = 4;
        else if( flags & IMREAD_REDUCED_GRAYSCALE_8 )
            scale_denom = 8;
420 421
    }

S
Suleyman TURKMEN 已提交
422 423 424
    /// set the scale_denom in the driver
    decoder->setScale( scale_denom );

425
    /// set the filename in the driver
426
    decoder->setSource( filename );
427

A
Alexander Alekhin 已提交
428
    try
429 430 431 432 433
    {
        // read the header to make sure it succeeds
        if( !decoder->readHeader() )
            return 0;
    }
A
Alexander Alekhin 已提交
434
    catch (const cv::Exception& e)
435 436
    {
        std::cerr << "imread_('" << filename << "'): can't read header: " << e.what() << std::endl << std::flush;
437
        return 0;
438
    }
A
Alexander Alekhin 已提交
439
    catch (...)
440 441 442 443 444
    {
        std::cerr << "imread_('" << filename << "'): can't read header: unknown exception" << std::endl << std::flush;
        return 0;
    }

445 446

    // established the required input image size
447
    Size size = validateInputImageSize(Size(decoder->width(), decoder->height()));
448

449
    // grab the decoded type
450
    int type = decoder->type();
451
    if( (flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED )
452
    {
S
Suleyman TURKMEN 已提交
453
        if( (flags & IMREAD_ANYDEPTH) == 0 )
454 455
            type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

S
Suleyman TURKMEN 已提交
456 457
        if( (flags & IMREAD_COLOR) != 0 ||
           ((flags & IMREAD_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1) )
458 459 460 461 462
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
        else
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
    }

463
    mat.create( size.height, size.width, type );
464

465
    // read the image data
466
    bool success = false;
A
Alexander Alekhin 已提交
467
    try
468
    {
469
        if (decoder->readData(mat))
470 471
            success = true;
    }
A
Alexander Alekhin 已提交
472
    catch (const cv::Exception& e)
473 474 475
    {
        std::cerr << "imread_('" << filename << "'): can't read data: " << e.what() << std::endl << std::flush;
    }
A
Alexander Alekhin 已提交
476
    catch (...)
477 478 479 480
    {
        std::cerr << "imread_('" << filename << "'): can't read data: unknown exception" << std::endl << std::flush;
    }
    if (!success)
481
    {
482 483
        mat.release();
        return false;
484 485
    }

486
    if( decoder->setScale( scale_denom ) > 1 ) // if decoder is JpegDecoder then decoder->setScale always returns 1
S
Suleyman TURKMEN 已提交
487
    {
488
        resize( mat, mat, Size( size.width / scale_denom, size.height / scale_denom ), 0, 0, INTER_LINEAR_EXACT);
S
Suleyman TURKMEN 已提交
489 490
    }

491
    /// optionally rotate the data if EXIF orientation flag says so
492
    if (!mat.empty() && (flags & IMREAD_IGNORE_ORIENTATION) == 0 && flags != IMREAD_UNCHANGED )
493
    {
494
        ApplyExifOrientation(decoder->getExifTag(ORIENTATION), mat);
495 496
    }

497
    return true;
498 499
}

500 501

static bool
502
imreadmulti_(const String& filename, int flags, std::vector<Mat>& mats, int start, int count)
503 504 505 506
{
    /// Search for the relevant decoder to handle the imagery
    ImageDecoder decoder;

507 508
    CV_CheckGE(start, 0, "Start index cannont be < 0");

509
#ifdef HAVE_GDAL
510
    if (flags != IMREAD_UNCHANGED && (flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL) {
511 512
        decoder = GdalDecoder().newDecoder();
    }
513
    else {
514 515 516 517 518 519 520
#endif
        decoder = findDecoder(filename);
#ifdef HAVE_GDAL
    }
#endif

    /// if no decoder was found, return nothing.
521
    if (!decoder) {
522 523 524
        return 0;
    }

525 526 527 528
    if (count < 0) {
        count = std::numeric_limits<int>::max();
    }

529 530 531 532
    /// set the filename in the driver
    decoder->setSource(filename);

    // read the header to make sure it succeeds
A
Alexander Alekhin 已提交
533
    try
534 535
    {
        // read the header to make sure it succeeds
536
        if (!decoder->readHeader())
537 538
            return 0;
    }
A
Alexander Alekhin 已提交
539
    catch (const cv::Exception& e)
540 541
    {
        std::cerr << "imreadmulti_('" << filename << "'): can't read header: " << e.what() << std::endl << std::flush;
542
        return 0;
543
    }
A
Alexander Alekhin 已提交
544
    catch (...)
545 546 547 548
    {
        std::cerr << "imreadmulti_('" << filename << "'): can't read header: unknown exception" << std::endl << std::flush;
        return 0;
    }
549

550 551 552 553 554 555 556 557 558 559 560 561
    int current = start;

    while (current > 0)
    {
        if (!decoder->nextPage())
        {
            return false;
        }
        --current;
    }

    while (current < count)
562 563 564
    {
        // grab the decoded type
        int type = decoder->type();
565
        if ((flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED)
566
        {
S
Suleyman TURKMEN 已提交
567
            if ((flags & IMREAD_ANYDEPTH) == 0)
568 569
                type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

S
Suleyman TURKMEN 已提交
570
            if ((flags & IMREAD_COLOR) != 0 ||
S
Suleyman TURKMEN 已提交
571
                ((flags & IMREAD_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1))
572 573 574 575 576
                type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
            else
                type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
        }

577 578 579
        // established the required input image size
        Size size = validateInputImageSize(Size(decoder->width(), decoder->height()));

580
        // read the image data
581 582
        Mat mat(size.height, size.width, type);
        bool success = false;
A
Alexander Alekhin 已提交
583
        try
584
        {
585 586 587
            if (decoder->readData(mat))
                success = true;
        }
A
Alexander Alekhin 已提交
588
        catch (const cv::Exception& e)
589 590 591
        {
            std::cerr << "imreadmulti_('" << filename << "'): can't read data: " << e.what() << std::endl << std::flush;
        }
A
Alexander Alekhin 已提交
592
        catch (...)
593 594 595 596
        {
            std::cerr << "imreadmulti_('" << filename << "'): can't read data: unknown exception" << std::endl << std::flush;
        }
        if (!success)
597
            break;
598 599

        // optionally rotate the data if EXIF' orientation flag says so
600
        if ((flags & IMREAD_IGNORE_ORIENTATION) == 0 && flags != IMREAD_UNCHANGED)
601
        {
602
            ApplyExifOrientation(decoder->getExifTag(ORIENTATION), mat);
603 604 605 606 607 608 609
        }

        mats.push_back(mat);
        if (!decoder->nextPage())
        {
            break;
        }
610
        ++current;
611 612 613 614 615
    }

    return !mats.empty();
}

616 617 618 619 620 621 622 623
/**
 * Read an image
 *
 *  This function merely calls the actual implementation above and returns itself.
 *
 * @param[in] filename File to load
 * @param[in] flags Flags you wish to set.
*/
624
Mat imread( const String& filename, int flags )
625
{
626 627
    CV_TRACE_FUNCTION();

628
    /// create the basic container
629
    Mat img;
630 631

    /// load the data
632
    imread_( filename, flags, img );
633 634

    /// return a reference to the data
635 636 637
    return img;
}

638 639 640 641 642 643 644 645 646 647 648 649
/**
* Read a multi-page image
*
*  This function merely calls the actual implementation above and returns itself.
*
* @param[in] filename File to load
* @param[in] mats Reference to C++ vector<Mat> object to hold the images
* @param[in] flags Flags you wish to set.
*
*/
bool imreadmulti(const String& filename, std::vector<Mat>& mats, int flags)
{
650 651
    CV_TRACE_FUNCTION();

652
    return imreadmulti_(filename, flags, mats, 0, -1);
653 654
}

655 656 657 658 659 660 661 662 663 664 665

bool imreadmulti(const String& filename, std::vector<Mat>& mats, int start, int count, int flags)
{
    CV_TRACE_FUNCTION();

    return imreadmulti_(filename, flags, mats, start, count);
}

static
size_t imcount_(const String& filename, int flags)
{
666 667 668 669 670
    try{
        ImageCollection collection(filename, flags);
        return collection.size();
    } catch(cv::Exception const& e) {
        // Reading header or finding decoder for the filename is failed
O
ocpalo 已提交
671
        std::cerr << "imcount_('" << filename << "'): can't read header or can't find decoder: " << e.what() << std::endl << std::flush;
672
    }
673
    return 0;
674 675 676 677 678 679 680 681 682 683
}

size_t imcount(const String& filename, int flags)
{
    CV_TRACE_FUNCTION();

    return imcount_(filename, flags);
}


684
static bool imwrite_( const String& filename, const std::vector<Mat>& img_vec,
685
                      const std::vector<int>& params, bool flipv )
686
{
687 688
    bool isMultiImg = img_vec.size() > 1;
    std::vector<Mat> write_vec;
689 690

    ImageEncoder encoder = findEncoder( filename );
R
Roman Donchenko 已提交
691
    if( !encoder )
692
        CV_Error( Error::StsError, "could not find a writer for the specified extension" );
693

694
    for (size_t page = 0; page < img_vec.size(); page++)
695
    {
696
        Mat image = img_vec[page];
697 698
        CV_Assert(!image.empty());

699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
        CV_Assert( image.channels() == 1 || image.channels() == 3 || image.channels() == 4 );

        Mat temp;
        if( !encoder->isFormatSupported(image.depth()) )
        {
            CV_Assert( encoder->isFormatSupported(CV_8U) );
            image.convertTo( temp, CV_8U );
            image = temp;
        }

        if( flipv )
        {
            flip(image, temp, 0);
            image = temp;
        }

        write_vec.push_back(image);
716 717 718
    }

    encoder->setDestination( filename );
719
    CV_Assert(params.size() <= CV_IO_MAX_IMAGE_PARAMS*2);
720 721 722 723 724 725 726
    bool code = false;
    try
    {
        if (!isMultiImg)
            code = encoder->write( write_vec[0], params );
        else
            code = encoder->writemulti( write_vec, params ); //to be implemented
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743

        if (!code)
        {
            FILE* f = fopen( filename.c_str(), "wb" );
            if ( !f )
            {
                if (errno == EACCES)
                {
                    CV_LOG_WARNING(NULL, "imwrite_('" << filename << "'): can't open file for writing: permission denied");
                }
            }
            else
            {
                fclose(f);
                remove(filename.c_str());
            }
        }
744 745 746 747 748 749 750 751 752
    }
    catch (const cv::Exception& e)
    {
        std::cerr << "imwrite_('" << filename << "'): can't write data: " << e.what() << std::endl << std::flush;
    }
    catch (...)
    {
        std::cerr << "imwrite_('" << filename << "'): can't write data: unknown exception" << std::endl << std::flush;
    }
753 754 755 756 757

    //    CV_Assert( code );
    return code;
}

758
bool imwrite( const String& filename, InputArray _img,
759
              const std::vector<int>& params )
760
{
761
    CV_TRACE_FUNCTION();
762 763 764

    CV_Assert(!_img.empty());

765
    std::vector<Mat> img_vec;
766
    if (_img.isMatVector() || _img.isUMatVector())
767
        _img.getMatVector(img_vec);
768
    else
769
        img_vec.push_back(_img.getMat());
770

771
    CV_Assert(!img_vec.empty());
772
    return imwrite_(filename, img_vec, params, false);
773 774
}

775 776
static bool
imdecode_( const Mat& buf, int flags, Mat& mat )
777
{
778 779 780 781 782
    CV_Assert(!buf.empty());
    CV_Assert(buf.isContinuous());
    CV_Assert(buf.checkVector(1, CV_8U) > 0);
    Mat buf_row = buf.reshape(1, 1);  // decoders expects single row, avoid issues with vector columns

783
    String filename;
784

785
    ImageDecoder decoder = findDecoder(buf_row);
R
Roman Donchenko 已提交
786
    if( !decoder )
787 788
        return 0;

789 790 791 792 793 794 795 796 797 798 799 800 801 802
    int scale_denom = 1;
    if( flags > IMREAD_LOAD_GDAL )
    {
        if( flags & IMREAD_REDUCED_GRAYSCALE_2 )
            scale_denom = 2;
        else if( flags & IMREAD_REDUCED_GRAYSCALE_4 )
            scale_denom = 4;
        else if( flags & IMREAD_REDUCED_GRAYSCALE_8 )
            scale_denom = 8;
    }

    /// set the scale_denom in the driver
    decoder->setScale( scale_denom );

803
    if( !decoder->setSource(buf_row) )
804
    {
R
Roy Reapor 已提交
805
        filename = tempfile();
806
        FILE* f = fopen( filename.c_str(), "wb" );
807 808
        if( !f )
            return 0;
809 810
        size_t bufSize = buf_row.total()*buf.elemSize();
        if (fwrite(buf_row.ptr(), 1, bufSize, f) != bufSize)
811 812
        {
            fclose( f );
813
            CV_Error( Error::StsError, "failed to write image data to temporary file" );
814 815 816
        }
        if( fclose(f) != 0 )
        {
817
            CV_Error( Error::StsError, "failed to write image data to temporary file" );
818
        }
819 820 821
        decoder->setSource(filename);
    }

822
    bool success = false;
A
Alexander Alekhin 已提交
823
    try
824 825 826 827
    {
        if (decoder->readHeader())
            success = true;
    }
A
Alexander Alekhin 已提交
828
    catch (const cv::Exception& e)
829 830 831
    {
        std::cerr << "imdecode_('" << filename << "'): can't read header: " << e.what() << std::endl << std::flush;
    }
A
Alexander Alekhin 已提交
832
    catch (...)
833 834 835 836
    {
        std::cerr << "imdecode_('" << filename << "'): can't read header: unknown exception" << std::endl << std::flush;
    }
    if (!success)
837
    {
838
        decoder.release();
839
        if (!filename.empty())
840
        {
841
            if (0 != remove(filename.c_str()))
842
            {
843
                std::cerr << "unable to remove temporary file:" << filename << std::endl << std::flush;
844 845
            }
        }
846 847 848
        return 0;
    }

849 850
    // established the required input image size
    Size size = validateInputImageSize(Size(decoder->width(), decoder->height()));
851 852

    int type = decoder->type();
853
    if( (flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED )
854
    {
S
Suleyman TURKMEN 已提交
855
        if( (flags & IMREAD_ANYDEPTH) == 0 )
856 857
            type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

S
Suleyman TURKMEN 已提交
858 859
        if( (flags & IMREAD_COLOR) != 0 ||
           ((flags & IMREAD_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1) )
860 861 862 863 864
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
        else
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
    }

865
    mat.create( size.height, size.width, type );
866

867
    success = false;
A
Alexander Alekhin 已提交
868
    try
869
    {
870
        if (decoder->readData(mat))
871 872
            success = true;
    }
A
Alexander Alekhin 已提交
873
    catch (const cv::Exception& e)
874 875 876
    {
        std::cerr << "imdecode_('" << filename << "'): can't read data: " << e.what() << std::endl << std::flush;
    }
A
Alexander Alekhin 已提交
877
    catch (...)
878 879 880
    {
        std::cerr << "imdecode_('" << filename << "'): can't read data: unknown exception" << std::endl << std::flush;
    }
881

882
    if (!filename.empty())
883
    {
884
        if (0 != remove(filename.c_str()))
885
        {
886
            std::cerr << "unable to remove temporary file:" << filename << std::endl << std::flush;
887 888
        }
    }
889

890
    if (!success)
891
    {
892 893
        mat.release();
        return false;
894 895
    }

896 897
    if( decoder->setScale( scale_denom ) > 1 ) // if decoder is JpegDecoder then decoder->setScale always returns 1
    {
898
        resize(mat, mat, Size( size.width / scale_denom, size.height / scale_denom ), 0, 0, INTER_LINEAR_EXACT);
899 900
    }

901
    /// optionally rotate the data if EXIF' orientation flag says so
902
    if (!mat.empty() && (flags & IMREAD_IGNORE_ORIENTATION) == 0 && flags != IMREAD_UNCHANGED)
903
    {
904
        ApplyExifOrientation(decoder->getExifTag(ORIENTATION), mat);
905 906
    }

907
    return true;
908 909 910
}


911
Mat imdecode( InputArray _buf, int flags )
912
{
913 914
    CV_TRACE_FUNCTION();

915
    Mat buf = _buf.getMat(), img;
916
    imdecode_( buf, flags, img );
917

918 919
    return img;
}
920

921 922
Mat imdecode( InputArray _buf, int flags, Mat* dst )
{
923 924
    CV_TRACE_FUNCTION();

925 926
    Mat buf = _buf.getMat(), img;
    dst = dst ? dst : &img;
927
    imdecode_( buf, flags, *dst );
928

929 930
    return *dst;
}
931

932
bool imencode( const String& ext, InputArray _image,
933
               std::vector<uchar>& buf, const std::vector<int>& params )
934
{
935 936
    CV_TRACE_FUNCTION();

937
    Mat image = _image.getMat();
938
    CV_Assert(!image.empty());
939 940 941 942 943

    int channels = image.channels();
    CV_Assert( channels == 1 || channels == 3 || channels == 4 );

    ImageEncoder encoder = findEncoder( ext );
R
Roman Donchenko 已提交
944
    if( !encoder )
945
        CV_Error( Error::StsError, "could not find encoder for the specified extension" );
946 947 948 949

    if( !encoder->isFormatSupported(image.depth()) )
    {
        CV_Assert( encoder->isFormatSupported(CV_8U) );
950
        Mat temp;
951
        image.convertTo(temp, CV_8U);
952
        image = temp;
953 954 955 956 957 958
    }

    bool code;
    if( encoder->setDestination(buf) )
    {
        code = encoder->write(image, params);
959
        encoder->throwOnEror();
960 961 962 963
        CV_Assert( code );
    }
    else
    {
964
        String filename = tempfile();
965 966
        code = encoder->setDestination(filename);
        CV_Assert( code );
967

968
        code = encoder->write(image, params);
969
        encoder->throwOnEror();
970
        CV_Assert( code );
971

972
        FILE* f = fopen( filename.c_str(), "rb" );
973 974 975 976 977 978 979
        CV_Assert(f != 0);
        fseek( f, 0, SEEK_END );
        long pos = ftell(f);
        buf.resize((size_t)pos);
        fseek( f, 0, SEEK_SET );
        buf.resize(fread( &buf[0], 1, buf.size(), f ));
        fclose(f);
980
        remove(filename.c_str());
981 982 983 984
    }
    return code;
}

985
bool haveImageReader( const String& filename )
986
{
987
    ImageDecoder decoder = cv::findDecoder(filename);
988 989 990
    return !decoder.empty();
}

991
bool haveImageWriter( const String& filename )
992 993 994 995 996
{
    cv::ImageEncoder encoder = cv::findEncoder(filename);
    return !encoder.empty();
}

997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
class ImageCollection::Impl {
public:
    Impl() = default;
    Impl(const std::string&  filename, int flags);
    void init(String const& filename, int flags);
    size_t size() const;
    Mat& at(int index);
    Mat& operator[](int index);
    void releaseCache(int index);
    ImageCollection::iterator begin(ImageCollection* ptr);
    ImageCollection::iterator end(ImageCollection* ptr);
    Mat read();
    int width() const;
    int height() const;
    bool readHeader();
    Mat readData();
    bool advance();
    int currentIndex() const;
    void reset();

private:
    String m_filename;
    int m_flags{};
    std::size_t m_size{};
    int m_width{};
    int m_height{};
    int m_current{};
    std::vector<cv::Mat> m_pages;
    ImageDecoder m_decoder;
};

ImageCollection::Impl::Impl(std::string const& filename, int flags) {
    this->init(filename, flags);
}

void ImageCollection::Impl::init(String const& filename, int flags) {
    m_filename = filename;
    m_flags = flags;

#ifdef HAVE_GDAL
    if (m_flags != IMREAD_UNCHANGED && (m_flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL) {
        m_decoder = GdalDecoder().newDecoder();
    }
    else {
#endif
    m_decoder = findDecoder(filename);
#ifdef HAVE_GDAL
    }
#endif


    CV_Assert(m_decoder);
    m_decoder->setSource(filename);
    CV_Assert(m_decoder->readHeader());

    // count the pages of the image collection
    size_t count = 1;
    while(m_decoder->nextPage()) count++;

    m_size = count;
    m_pages.resize(m_size);
    // Reinitialize the decoder because we advanced to the last page while counting the pages of the image
#ifdef HAVE_GDAL
    if (m_flags != IMREAD_UNCHANGED && (m_flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL) {
        m_decoder = GdalDecoder().newDecoder();
    }
    else {
#endif
    m_decoder = findDecoder(m_filename);
#ifdef HAVE_GDAL
    }
#endif

    m_decoder->setSource(m_filename);
    m_decoder->readHeader();
}

size_t ImageCollection::Impl::size() const { return m_size; }

Mat ImageCollection::Impl::read() {
    auto result = this->readHeader();
    if(!result) {
        return {};
    }
    return this->readData();
}

int ImageCollection::Impl::width() const {
    return m_width;
}

int ImageCollection::Impl::height() const {
    return m_height;
}

bool ImageCollection::Impl::readHeader() {
    bool status = m_decoder->readHeader();
    m_width = m_decoder->width();
    m_height = m_decoder->height();
    return status;
}

// readHeader must be called before calling this method
Mat ImageCollection::Impl::readData() {
    int type = m_decoder->type();
    if ((m_flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && m_flags != IMREAD_UNCHANGED) {
        if ((m_flags & IMREAD_ANYDEPTH) == 0)
            type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

        if ((m_flags & IMREAD_COLOR) != 0 ||
            ((m_flags & IMREAD_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1))
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
        else
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
    }

    // established the required input image size
    Size size = validateInputImageSize(Size(m_width, m_height));

    Mat mat(size.height, size.width, type);
    bool success = false;
    try {
        if (m_decoder->readData(mat))
            success = true;
    }
    catch (const cv::Exception &e) {
        std::cerr << "ImageCollection class: can't read data: " << e.what() << std::endl << std::flush;
    }
    catch (...) {
        std::cerr << "ImageCollection class:: can't read data: unknown exception" << std::endl << std::flush;
    }
    if (!success)
        return cv::Mat();

    if ((m_flags & IMREAD_IGNORE_ORIENTATION) == 0 && m_flags != IMREAD_UNCHANGED) {
        ApplyExifOrientation(m_decoder->getExifTag(ORIENTATION), mat);
    }

    return mat;
}

bool ImageCollection::Impl::advance() {  ++m_current; return m_decoder->nextPage(); }

int ImageCollection::Impl::currentIndex() const { return m_current; }

ImageCollection::iterator ImageCollection::Impl::begin(ImageCollection* ptr) { return ImageCollection::iterator(ptr); }

O
ocpalo 已提交
1144
ImageCollection::iterator ImageCollection::Impl::end(ImageCollection* ptr) { return ImageCollection::iterator(ptr, static_cast<int>(this->size())); }
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237

void ImageCollection::Impl::reset() {
    m_current = 0;
#ifdef HAVE_GDAL
    if (m_flags != IMREAD_UNCHANGED && (m_flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL) {
        m_decoder = GdalDecoder().newDecoder();
    }
    else {
#endif
    m_decoder = findDecoder(m_filename);
#ifdef HAVE_GDAL
    }
#endif

    m_decoder->setSource(m_filename);
    m_decoder->readHeader();
}

Mat& ImageCollection::Impl::at(int index) {
    CV_Assert(index >= 0 && size_t(index) < m_size);
    return operator[](index);
}

Mat& ImageCollection::Impl::operator[](int index) {
    if(m_pages.at(index).empty()) {
        // We can't go backward in multi images. If the page is not in vector yet,
        // go back to first page and advance until the desired page and read it into memory
        if(m_current != index) {
            reset();
            for(int i = 0; i != index && advance(); ++i) {}
        }
        m_pages[index] = read();
    }
    return m_pages[index];
}

void ImageCollection::Impl::releaseCache(int index) {
    CV_Assert(index >= 0 && size_t(index) < m_size);
    m_pages[index].release();
}

/* ImageCollection API*/

ImageCollection::ImageCollection() : pImpl(new Impl()) {}

ImageCollection::ImageCollection(const std::string& filename, int flags) : pImpl(new Impl(filename, flags)) {}

void ImageCollection::init(const String& img, int flags) { pImpl->init(img, flags); }

size_t ImageCollection::size() const { return pImpl->size(); }

const Mat& ImageCollection::at(int index) { return pImpl->at(index); }

const Mat& ImageCollection::operator[](int index) { return pImpl->operator[](index); }

void ImageCollection::releaseCache(int index) { pImpl->releaseCache(index); }

Ptr<ImageCollection::Impl> ImageCollection::getImpl() { return pImpl; }

/* Iterator API */

ImageCollection::iterator ImageCollection::begin() { return pImpl->begin(this); }

ImageCollection::iterator ImageCollection::end() { return pImpl->end(this); }

ImageCollection::iterator::iterator(ImageCollection* col) : m_pCollection(col), m_curr(0) {}

ImageCollection::iterator::iterator(ImageCollection* col, int end) : m_pCollection(col), m_curr(end) {}

Mat& ImageCollection::iterator::operator*() {
    CV_Assert(m_pCollection);
    return m_pCollection->getImpl()->operator[](m_curr);
}

Mat* ImageCollection::iterator::operator->() {
    CV_Assert(m_pCollection);
    return &m_pCollection->getImpl()->operator[](m_curr);
}

ImageCollection::iterator& ImageCollection::iterator::operator++() {
    if(m_pCollection->pImpl->currentIndex() == m_curr) {
        m_pCollection->pImpl->advance();
    }
    m_curr++;
    return *this;
}

ImageCollection::iterator ImageCollection::iterator::operator++(int) {
    iterator tmp = *this;
    ++(*this);
    return tmp;
}

1238 1239 1240
}

/* End of file. */