loadsave.cpp 41.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 136 137 138
#ifdef HAVE_AVIF
        decoders.push_back(makePtr<AvifDecoder>());
        encoders.push_back(makePtr<AvifEncoder>());
#endif
139
        /// BMP Support
R
Roman Donchenko 已提交
140 141
        decoders.push_back( makePtr<BmpDecoder>() );
        encoders.push_back( makePtr<BmpEncoder>() );
142

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

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

206 207
    std::vector<ImageDecoder> decoders;
    std::vector<ImageEncoder> encoders;
208 209
};

210 211 212 213 214 215 216 217 218 219 220 221 222
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
}
223

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

233
    size_t i, maxlen = 0;
234 235

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

243
    /// Open the file
244
    FILE* f= fopen( filename.c_str(), "rb" );
245 246

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

    // read the file signature
253
    String signature(maxlen, ' ');
254
    maxlen = fread( (void*)signature.c_str(), 1, maxlen, f );
255 256 257
    fclose(f);
    signature = signature.substr(0, maxlen);

258
    /// compare signature against all decoders
259
    for( i = 0; i < codecs.decoders.size(); i++ )
260
    {
261 262
        if( codecs.decoders[i]->checkSignature(signature) )
            return codecs.decoders[i]->newDecoder();
263 264
    }

265
    /// If no decoder was found, return base type
266 267 268
    return ImageDecoder();
}

269
static ImageDecoder findDecoder( const Mat& buf )
270 271 272 273 274 275
{
    size_t i, maxlen = 0;

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

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

283
    String signature(maxlen, ' ');
284 285
    size_t bufSize = buf.rows*buf.cols*buf.elemSize();
    maxlen = std::min(maxlen, bufSize);
286
    memcpy( (void*)signature.c_str(), buf.data, maxlen );
287

288
    for( i = 0; i < codecs.decoders.size(); i++ )
289
    {
290 291
        if( codecs.decoders[i]->checkSignature(signature) )
            return codecs.decoders[i]->newDecoder();
292 293 294 295 296
    }

    return ImageDecoder();
}

297
static ImageEncoder findEncoder( const String& _ext )
298 299 300 301 302 303 304 305
{
    if( _ext.size() <= 1 )
        return ImageEncoder();

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

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

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

    return ImageEncoder();
}

337

338
static void ExifTransform(int orientation, Mat& img)
A
Arkadiusz Raj 已提交
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 370 371 372 373
{
    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;
    }
}
374

375
static void ApplyExifOrientation(ExifEntry_t orientationTag, Mat& img)
376 377 378
{
    int orientation = IMAGE_ORIENTATION_TL;

379
    if (orientationTag.tag != INVALID_TAG)
380
    {
381 382
        orientation = orientationTag.field_u16; //orientation is unsigned short, so check field_u16
        ExifTransform(orientation, img);
383 384 385
    }
}

386 387 388 389 390 391 392 393
/**
 * 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)
 *
*/
394 395
static bool
imread_( const String& filename, int flags, Mat& mat )
396
{
397 398 399 400
    /// Search for the relevant decoder to handle the imagery
    ImageDecoder decoder;

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

    /// if no decoder was found, return nothing.
    if( !decoder ){
412
        return 0;
413 414
    }

415 416 417
    int scale_denom = 1;
    if( flags > IMREAD_LOAD_GDAL )
    {
418 419 420 421 422 423
        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;
424 425
    }

S
Suleyman TURKMEN 已提交
426 427 428
    /// set the scale_denom in the driver
    decoder->setScale( scale_denom );

429
    /// set the filename in the driver
430
    decoder->setSource( filename );
431

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

449 450

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

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

S
Suleyman TURKMEN 已提交
460 461
        if( (flags & IMREAD_COLOR) != 0 ||
           ((flags & IMREAD_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1) )
462 463 464 465 466
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
        else
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
    }

467
    mat.create( size.height, size.width, type );
468

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

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

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

501
    return true;
502 503
}

504 505

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

511 512
    CV_CheckGE(start, 0, "Start index cannont be < 0");

513
#ifdef HAVE_GDAL
514
    if (flags != IMREAD_UNCHANGED && (flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL) {
515 516
        decoder = GdalDecoder().newDecoder();
    }
517
    else {
518 519 520 521 522 523 524
#endif
        decoder = findDecoder(filename);
#ifdef HAVE_GDAL
    }
#endif

    /// if no decoder was found, return nothing.
525
    if (!decoder) {
526 527 528
        return 0;
    }

529 530 531 532
    if (count < 0) {
        count = std::numeric_limits<int>::max();
    }

533 534 535 536
    /// set the filename in the driver
    decoder->setSource(filename);

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

554 555 556 557 558 559 560 561 562 563 564 565
    int current = start;

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

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

S
Suleyman TURKMEN 已提交
574
            if ((flags & IMREAD_COLOR) != 0 ||
S
Suleyman TURKMEN 已提交
575
                ((flags & IMREAD_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1))
576 577 578 579 580
                type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
            else
                type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
        }

581 582 583
        // established the required input image size
        Size size = validateInputImageSize(Size(decoder->width(), decoder->height()));

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

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

        mats.push_back(mat);
        if (!decoder->nextPage())
        {
            break;
        }
614
        ++current;
615 616 617 618 619
    }

    return !mats.empty();
}

620 621 622 623 624 625 626 627
/**
 * 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.
*/
628
Mat imread( const String& filename, int flags )
629
{
630 631
    CV_TRACE_FUNCTION();

632
    /// create the basic container
633
    Mat img;
634 635

    /// load the data
636
    imread_( filename, flags, img );
637 638

    /// return a reference to the data
639 640 641
    return img;
}

642 643 644 645 646 647 648 649 650 651 652 653
/**
* 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)
{
654 655
    CV_TRACE_FUNCTION();

656
    return imreadmulti_(filename, flags, mats, 0, -1);
657 658
}

659 660 661 662 663 664 665 666 667 668 669

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)
{
670 671 672 673 674
    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 已提交
675
        std::cerr << "imcount_('" << filename << "'): can't read header or can't find decoder: " << e.what() << std::endl << std::flush;
676
    }
677
    return 0;
678 679 680 681 682 683 684 685 686 687
}

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

    return imcount_(filename, flags);
}


688
static bool imwrite_( const String& filename, const std::vector<Mat>& img_vec,
689
                      const std::vector<int>& params_, bool flipv )
690
{
691 692
    bool isMultiImg = img_vec.size() > 1;
    std::vector<Mat> write_vec;
693 694

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

698
    for (size_t page = 0; page < img_vec.size(); page++)
699
    {
700
        Mat image = img_vec[page];
701 702
        CV_Assert(!image.empty());

703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
        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);
720 721 722
    }

    encoder->setDestination( filename );
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
#if CV_VERSION_MAJOR < 5 && defined(HAVE_IMGCODEC_HDR)
    bool fixed = false;
    std::vector<int> params_pair(2);
    if (dynamic_cast<HdrEncoder*>(encoder.get()))
    {
        if (params_.size() == 1)
        {
            CV_LOG_WARNING(NULL, "imwrite() accepts key-value pair of parameters, but single value is passed. "
                                 "HDR encoder behavior has been changed, please use IMWRITE_HDR_COMPRESSION key.");
            params_pair[0] = IMWRITE_HDR_COMPRESSION;
            params_pair[1] = params_[0];
            fixed = true;
        }
    }
    const std::vector<int>& params = fixed ? params_pair : params_;
#else
    const std::vector<int>& params = params_;
#endif

    CV_Check(params.size(), (params.size() & 1) == 0, "Encoding 'params' must be key-value pairs");
    CV_CheckLE(params.size(), (size_t)(CV_IO_MAX_IMAGE_PARAMS*2), "");
744 745 746 747 748 749 750
    bool code = false;
    try
    {
        if (!isMultiImg)
            code = encoder->write( write_vec[0], params );
        else
            code = encoder->writemulti( write_vec, params ); //to be implemented
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767

        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());
            }
        }
768 769 770 771 772 773 774 775 776
    }
    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;
    }
777 778 779 780 781

    //    CV_Assert( code );
    return code;
}

782
bool imwrite( const String& filename, InputArray _img,
783
              const std::vector<int>& params )
784
{
785
    CV_TRACE_FUNCTION();
786 787 788

    CV_Assert(!_img.empty());

789
    std::vector<Mat> img_vec;
790
    if (_img.isMatVector() || _img.isUMatVector())
791
        _img.getMatVector(img_vec);
792
    else
793
        img_vec.push_back(_img.getMat());
794

795
    CV_Assert(!img_vec.empty());
796
    return imwrite_(filename, img_vec, params, false);
797 798
}

799 800
static bool
imdecode_( const Mat& buf, int flags, Mat& mat )
801
{
802 803 804 805 806
    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

807
    String filename;
808

809
    ImageDecoder decoder = findDecoder(buf_row);
R
Roman Donchenko 已提交
810
    if( !decoder )
811 812
        return 0;

813 814 815 816 817 818 819 820 821 822 823 824 825 826
    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 );

827
    if( !decoder->setSource(buf_row) )
828
    {
R
Roy Reapor 已提交
829
        filename = tempfile();
830
        FILE* f = fopen( filename.c_str(), "wb" );
831 832
        if( !f )
            return 0;
833 834
        size_t bufSize = buf_row.total()*buf.elemSize();
        if (fwrite(buf_row.ptr(), 1, bufSize, f) != bufSize)
835 836
        {
            fclose( f );
837
            CV_Error( Error::StsError, "failed to write image data to temporary file" );
838 839 840
        }
        if( fclose(f) != 0 )
        {
841
            CV_Error( Error::StsError, "failed to write image data to temporary file" );
842
        }
843 844 845
        decoder->setSource(filename);
    }

846
    bool success = false;
A
Alexander Alekhin 已提交
847
    try
848 849 850 851
    {
        if (decoder->readHeader())
            success = true;
    }
A
Alexander Alekhin 已提交
852
    catch (const cv::Exception& e)
853 854 855
    {
        std::cerr << "imdecode_('" << filename << "'): can't read header: " << e.what() << std::endl << std::flush;
    }
A
Alexander Alekhin 已提交
856
    catch (...)
857 858 859 860
    {
        std::cerr << "imdecode_('" << filename << "'): can't read header: unknown exception" << std::endl << std::flush;
    }
    if (!success)
861
    {
862
        decoder.release();
863
        if (!filename.empty())
864
        {
865
            if (0 != remove(filename.c_str()))
866
            {
867
                std::cerr << "unable to remove temporary file:" << filename << std::endl << std::flush;
868 869
            }
        }
870 871 872
        return 0;
    }

873 874
    // established the required input image size
    Size size = validateInputImageSize(Size(decoder->width(), decoder->height()));
875 876

    int type = decoder->type();
877
    if( (flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED )
878
    {
S
Suleyman TURKMEN 已提交
879
        if( (flags & IMREAD_ANYDEPTH) == 0 )
880 881
            type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

S
Suleyman TURKMEN 已提交
882 883
        if( (flags & IMREAD_COLOR) != 0 ||
           ((flags & IMREAD_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1) )
884 885 886 887 888
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
        else
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
    }

889
    mat.create( size.height, size.width, type );
890

891
    success = false;
A
Alexander Alekhin 已提交
892
    try
893
    {
894
        if (decoder->readData(mat))
895 896
            success = true;
    }
A
Alexander Alekhin 已提交
897
    catch (const cv::Exception& e)
898 899 900
    {
        std::cerr << "imdecode_('" << filename << "'): can't read data: " << e.what() << std::endl << std::flush;
    }
A
Alexander Alekhin 已提交
901
    catch (...)
902 903 904
    {
        std::cerr << "imdecode_('" << filename << "'): can't read data: unknown exception" << std::endl << std::flush;
    }
905

906
    if (!filename.empty())
907
    {
908
        if (0 != remove(filename.c_str()))
909
        {
910
            std::cerr << "unable to remove temporary file:" << filename << std::endl << std::flush;
911 912
        }
    }
913

914
    if (!success)
915
    {
916 917
        mat.release();
        return false;
918 919
    }

920 921
    if( decoder->setScale( scale_denom ) > 1 ) // if decoder is JpegDecoder then decoder->setScale always returns 1
    {
922
        resize(mat, mat, Size( size.width / scale_denom, size.height / scale_denom ), 0, 0, INTER_LINEAR_EXACT);
923 924
    }

925
    /// optionally rotate the data if EXIF' orientation flag says so
926
    if (!mat.empty() && (flags & IMREAD_IGNORE_ORIENTATION) == 0 && flags != IMREAD_UNCHANGED)
927
    {
928
        ApplyExifOrientation(decoder->getExifTag(ORIENTATION), mat);
929 930
    }

931
    return true;
932 933 934
}


935
Mat imdecode( InputArray _buf, int flags )
936
{
937 938
    CV_TRACE_FUNCTION();

939
    Mat buf = _buf.getMat(), img;
940
    imdecode_( buf, flags, img );
941

942 943
    return img;
}
944

945 946
Mat imdecode( InputArray _buf, int flags, Mat* dst )
{
947 948
    CV_TRACE_FUNCTION();

949 950
    Mat buf = _buf.getMat(), img;
    dst = dst ? dst : &img;
951
    imdecode_( buf, flags, *dst );
952

953 954
    return *dst;
}
955

956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 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
static bool
imdecodemulti_(const Mat& buf, int flags, std::vector<Mat>& mats, int start, int count)
{
    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

    String filename;

    ImageDecoder decoder = findDecoder(buf_row);
    if (!decoder)
        return 0;

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

    if (!decoder->setSource(buf_row))
    {
        filename = tempfile();
        FILE* f = fopen(filename.c_str(), "wb");
        if (!f)
            return 0;
        size_t bufSize = buf_row.total() * buf.elemSize();
        if (fwrite(buf_row.ptr(), 1, bufSize, f) != bufSize)
        {
            fclose(f);
            CV_Error(Error::StsError, "failed to write image data to temporary file");
        }
        if (fclose(f) != 0)
        {
            CV_Error(Error::StsError, "failed to write image data to temporary file");
        }
        decoder->setSource(filename);
    }

    // read the header to make sure it succeeds
    bool success = false;
    try
    {
        // read the header to make sure it succeeds
        if (decoder->readHeader())
            success = true;
    }
    catch (const cv::Exception& e)
    {
        std::cerr << "imreadmulti_('" << filename << "'): can't read header: " << e.what() << std::endl << std::flush;
    }
    catch (...)
    {
        std::cerr << "imreadmulti_('" << filename << "'): can't read header: unknown exception" << std::endl << std::flush;
    }

    int current = start;
    while (success && current > 0)
    {
        if (!decoder->nextPage())
        {
            success = false;
            break;
        }
        --current;
    }

    if (!success)
    {
        decoder.release();
        if (!filename.empty())
        {
            if (0 != remove(filename.c_str()))
            {
                std::cerr << "unable to remove temporary file:" << filename << std::endl << std::flush;
            }
        }
        return 0;
    }

    while (current < count)
    {
        // grab the decoded type
        int type = decoder->type();
        if ((flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED)
        {
            if ((flags & IMREAD_ANYDEPTH) == 0)
                type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

            if ((flags & IMREAD_COLOR) != 0 ||
                ((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(decoder->width(), decoder->height()));

        // read the image data
        Mat mat(size.height, size.width, type);
        success = false;
        try
        {
            if (decoder->readData(mat))
                success = true;
        }
        catch (const cv::Exception& e)
        {
            std::cerr << "imreadmulti_('" << filename << "'): can't read data: " << e.what() << std::endl << std::flush;
        }
        catch (...)
        {
            std::cerr << "imreadmulti_('" << filename << "'): can't read data: unknown exception" << std::endl << std::flush;
        }
        if (!success)
            break;

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

        mats.push_back(mat);
        if (!decoder->nextPage())
        {
            break;
        }
        ++current;
    }

    if (!filename.empty())
    {
        if (0 != remove(filename.c_str()))
        {
            std::cerr << "unable to remove temporary file:" << filename << std::endl << std::flush;
        }
    }

    if (!success)
        mats.clear();
    return !mats.empty();
}

bool imdecodemulti(InputArray _buf, int flags, CV_OUT std::vector<Mat>& mats)
{
    CV_TRACE_FUNCTION();

    Mat buf = _buf.getMat();
    return imdecodemulti_(buf, flags, mats, 0, -1);
}

1107
bool imencode( const String& ext, InputArray _image,
1108
               std::vector<uchar>& buf, const std::vector<int>& params_ )
1109
{
1110 1111
    CV_TRACE_FUNCTION();

1112
    Mat image = _image.getMat();
1113
    CV_Assert(!image.empty());
1114 1115 1116 1117 1118

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

    ImageEncoder encoder = findEncoder( ext );
R
Roman Donchenko 已提交
1119
    if( !encoder )
1120
        CV_Error( Error::StsError, "could not find encoder for the specified extension" );
1121 1122 1123 1124

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

1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
#if CV_VERSION_MAJOR < 5 && defined(HAVE_IMGCODEC_HDR)
    bool fixed = false;
    std::vector<int> params_pair(2);
    if (dynamic_cast<HdrEncoder*>(encoder.get()))
    {
        if (params_.size() == 1)
        {
            CV_LOG_WARNING(NULL, "imwrite() accepts key-value pair of parameters, but single value is passed. "
                                 "HDR encoder behavior has been changed, please use IMWRITE_HDR_COMPRESSION key.");
            params_pair[0] = IMWRITE_HDR_COMPRESSION;
            params_pair[1] = params_[0];
            fixed = true;
        }
    }
    const std::vector<int>& params = fixed ? params_pair : params_;
#else
    const std::vector<int>& params = params_;
#endif

    CV_Check(params.size(), (params.size() & 1) == 0, "Encoding 'params' must be key-value pairs");
    CV_CheckLE(params.size(), (size_t)(CV_IO_MAX_IMAGE_PARAMS*2), "");

1152 1153 1154 1155
    bool code;
    if( encoder->setDestination(buf) )
    {
        code = encoder->write(image, params);
1156
        encoder->throwOnEror();
1157 1158 1159 1160
        CV_Assert( code );
    }
    else
    {
1161
        String filename = tempfile();
1162 1163
        code = encoder->setDestination(filename);
        CV_Assert( code );
1164

1165
        code = encoder->write(image, params);
1166
        encoder->throwOnEror();
1167
        CV_Assert( code );
1168

1169
        FILE* f = fopen( filename.c_str(), "rb" );
1170 1171 1172 1173 1174 1175 1176
        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);
1177
        remove(filename.c_str());
1178 1179 1180 1181
    }
    return code;
}

1182
bool haveImageReader( const String& filename )
1183
{
1184
    ImageDecoder decoder = cv::findDecoder(filename);
1185 1186 1187
    return !decoder.empty();
}

1188
bool haveImageWriter( const String& filename )
1189 1190 1191 1192 1193
{
    cv::ImageEncoder encoder = cv::findEncoder(filename);
    return !encoder.empty();
}

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 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
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 已提交
1341
ImageCollection::iterator ImageCollection::Impl::end(ImageCollection* ptr) { return ImageCollection::iterator(ptr, static_cast<int>(this->size())); }
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434

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;
}

1435 1436 1437
}

/* End of file. */