loadsave.cpp 20.1 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 43 44 45 46 47 48 49
/*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*/

//
//  Loading and saving IPL images.
//

#include "precomp.hpp"
#include "grfmts.hpp"
#undef min
#undef max
50
#include <iostream>
51 52 53 54 55 56 57

/****************************************************************************************\
*                                      Image Codecs                                      *
\****************************************************************************************/
namespace cv
{

58 59 60 61 62
/**
 * @struct ImageCodecInitializer
 *
 * Container which stores the registered codecs to be used by OpenCV
*/
63 64
struct ImageCodecInitializer
{
65 66 67
    /**
     * Default Constructor for the ImageCodeInitializer
    */
68 69
    ImageCodecInitializer()
    {
70
        /// BMP Support
R
Roman Donchenko 已提交
71 72
        decoders.push_back( makePtr<BmpDecoder>() );
        encoders.push_back( makePtr<BmpEncoder>() );
73

74 75
        decoders.push_back( makePtr<HdrDecoder>() );
        encoders.push_back( makePtr<HdrEncoder>() );
76
    #ifdef HAVE_JPEG
R
Roman Donchenko 已提交
77 78
        decoders.push_back( makePtr<JpegDecoder>() );
        encoders.push_back( makePtr<JpegEncoder>() );
79 80
    #endif
    #ifdef HAVE_WEBP
R
Roman Donchenko 已提交
81 82
        decoders.push_back( makePtr<WebPDecoder>() );
        encoders.push_back( makePtr<WebPEncoder>() );
83
    #endif
R
Roman Donchenko 已提交
84 85 86 87
        decoders.push_back( makePtr<SunRasterDecoder>() );
        encoders.push_back( makePtr<SunRasterEncoder>() );
        decoders.push_back( makePtr<PxMDecoder>() );
        encoders.push_back( makePtr<PxMEncoder>() );
88
    #ifdef HAVE_TIFF
R
Roman Donchenko 已提交
89
        decoders.push_back( makePtr<TiffDecoder>() );
90
    #endif
R
Roman Donchenko 已提交
91
        encoders.push_back( makePtr<TiffEncoder>() );
92
    #ifdef HAVE_PNG
R
Roman Donchenko 已提交
93 94
        decoders.push_back( makePtr<PngDecoder>() );
        encoders.push_back( makePtr<PngEncoder>() );
95
    #endif
96 97 98
    #ifdef HAVE_GDCM
        decoders.push_back( makePtr<DICOMDecoder>() );
    #endif
99
    #ifdef HAVE_JASPER
R
Roman Donchenko 已提交
100 101
        decoders.push_back( makePtr<Jpeg2KDecoder>() );
        encoders.push_back( makePtr<Jpeg2KEncoder>() );
102 103
    #endif
    #ifdef HAVE_OPENEXR
R
Roman Donchenko 已提交
104 105
        decoders.push_back( makePtr<ExrDecoder>() );
        encoders.push_back( makePtr<ExrEncoder>() );
106
    #endif
107 108 109 110 111

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

114 115
    std::vector<ImageDecoder> decoders;
    std::vector<ImageEncoder> encoders;
116 117 118
};

static ImageCodecInitializer codecs;
119

120 121 122 123 124 125 126 127 128
/**
 * Find the decoders
 *
 * @param[in] filename File to search
 *
 * @return Image decoder to parse image file.
*/
static ImageDecoder findDecoder( const String& filename ) {

129
    size_t i, maxlen = 0;
130 131

    /// iterate through list of registered codecs
132
    for( i = 0; i < codecs.decoders.size(); i++ )
133
    {
134
        size_t len = codecs.decoders[i]->signatureLength();
135 136 137
        maxlen = std::max(maxlen, len);
    }

138
    /// Open the file
139
    FILE* f= fopen( filename.c_str(), "rb" );
140 141

    /// in the event of a failure, return an empty image decoder
142 143
    if( !f )
        return ImageDecoder();
144 145

    // read the file signature
146
    String signature(maxlen, ' ');
147
    maxlen = fread( (void*)signature.c_str(), 1, maxlen, f );
148 149 150
    fclose(f);
    signature = signature.substr(0, maxlen);

151
    /// compare signature against all decoders
152
    for( i = 0; i < codecs.decoders.size(); i++ )
153
    {
154 155
        if( codecs.decoders[i]->checkSignature(signature) )
            return codecs.decoders[i]->newDecoder();
156 157
    }

158
    /// If no decoder was found, return base type
159 160 161
    return ImageDecoder();
}

162
static ImageDecoder findDecoder( const Mat& buf )
163 164 165 166 167 168
{
    size_t i, maxlen = 0;

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

169
    for( i = 0; i < codecs.decoders.size(); i++ )
170
    {
171
        size_t len = codecs.decoders[i]->signatureLength();
172 173 174
        maxlen = std::max(maxlen, len);
    }

175
    String signature(maxlen, ' ');
176 177
    size_t bufSize = buf.rows*buf.cols*buf.elemSize();
    maxlen = std::min(maxlen, bufSize);
178
    memcpy( (void*)signature.c_str(), buf.data, maxlen );
179

180
    for( i = 0; i < codecs.decoders.size(); i++ )
181
    {
182 183
        if( codecs.decoders[i]->checkSignature(signature) )
            return codecs.decoders[i]->newDecoder();
184 185 186 187 188
    }

    return ImageDecoder();
}

189
static ImageEncoder findEncoder( const String& _ext )
190 191 192 193 194 195 196 197
{
    if( _ext.size() <= 1 )
        return ImageEncoder();

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

201
    for( size_t i = 0; i < codecs.encoders.size(); i++ )
202
    {
203
        String description = codecs.encoders[i]->getDescription();
204 205 206 207 208 209 210 211
        const char* descr = strchr( description.c_str(), '(' );

        while( descr )
        {
            descr = strchr( descr + 1, '.' );
            if( !descr )
                break;
            int j = 0;
J
Julien Nabet 已提交
212
            for( descr++; j < len && isalnum(descr[j]) ; j++ )
213 214 215 216 217 218 219
            {
                int c1 = tolower(ext[j]);
                int c2 = tolower(descr[j]);
                if( c1 != c2 )
                    break;
            }
            if( j == len && !isalnum(descr[j]))
220
                return codecs.encoders[i]->newEncoder();
221 222 223 224 225 226 227 228 229
            descr += j;
        }
    }

    return ImageEncoder();
}

enum { LOAD_CVMAT=0, LOAD_IMAGE=1, LOAD_MAT=2 };

230 231 232 233 234 235 236 237 238 239
/**
 * Read an image into memory and return the information
 *
 * @param[in] filename File to load
 * @param[in] flags Flags
 * @param[in] hdrtype { LOAD_CVMAT=0,
 *                      LOAD_IMAGE=1,
 *                      LOAD_MAT=2
 *                    }
 * @param[in] mat Reference to C++ Mat object (If LOAD_MAT)
S
Suleyman TURKMEN 已提交
240
 * @param[in] scale_denom Scale value
241 242
 *
*/
243
static void*
244
imread_( const String& filename, int flags, int hdrtype, Mat* mat=0 )
245 246 247 248 249
{
    IplImage* image = 0;
    CvMat *matrix = 0;
    Mat temp, *data = &temp;

250 251 252 253
    /// Search for the relevant decoder to handle the imagery
    ImageDecoder decoder;

#ifdef HAVE_GDAL
M
Maksim Shabunin 已提交
254
    if(flags != IMREAD_UNCHANGED && (flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL ){
255 256 257
        decoder = GdalDecoder().newDecoder();
    }else{
#endif
258
        decoder = findDecoder( filename );
259 260 261 262 263 264
#ifdef HAVE_GDAL
    }
#endif

    /// if no decoder was found, return nothing.
    if( !decoder ){
265
        return 0;
266 267
    }

268 269 270
    int scale_denom = 1;
    if( flags > IMREAD_LOAD_GDAL )
    {
S
Suleyman TURKMEN 已提交
271
    if( flags & IMREAD_REDUCED_GRAYSCALE_2 )
272
        scale_denom = 2;
S
Suleyman TURKMEN 已提交
273
    else if( flags & IMREAD_REDUCED_GRAYSCALE_4 )
274
        scale_denom = 4;
S
Suleyman TURKMEN 已提交
275
    else if( flags & IMREAD_REDUCED_GRAYSCALE_8 )
276 277 278
        scale_denom = 8;
    }

S
Suleyman TURKMEN 已提交
279 280 281
    /// set the scale_denom in the driver
    decoder->setScale( scale_denom );

282
    /// set the filename in the driver
283
    decoder->setSource( filename );
284 285 286

   // read the header to make sure it succeeds
   if( !decoder->readHeader() )
287
        return 0;
288 289

    // established the required input image size
290 291 292 293
    CvSize size;
    size.width = decoder->width();
    size.height = decoder->height();

294
    // grab the decoded type
295
    int type = decoder->type();
296
    if( (flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED )
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
    {
        if( (flags & CV_LOAD_IMAGE_ANYDEPTH) == 0 )
            type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

        if( (flags & CV_LOAD_IMAGE_COLOR) != 0 ||
           ((flags & CV_LOAD_IMAGE_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1) )
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
        else
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
    }

    if( hdrtype == LOAD_CVMAT || hdrtype == LOAD_MAT )
    {
        if( hdrtype == LOAD_CVMAT )
        {
            matrix = cvCreateMat( size.height, size.width, type );
313
            temp = cvarrToMat( matrix );
314 315 316 317 318 319 320 321 322 323
        }
        else
        {
            mat->create( size.height, size.width, type );
            data = mat;
        }
    }
    else
    {
        image = cvCreateImage( size, cvIplDepth(type), CV_MAT_CN(type) );
324
        temp = cvarrToMat( image );
325 326
    }

327
    // read the image data
328 329 330 331 332 333 334 335 336
    if( !decoder->readData( *data ))
    {
        cvReleaseImage( &image );
        cvReleaseMat( &matrix );
        if( mat )
            mat->release();
        return 0;
    }

337
    if( decoder->setScale( scale_denom ) > 1 ) // if decoder is JpegDecoder then decoder->setScale always returns 1
S
Suleyman TURKMEN 已提交
338
    {
339
        resize( *mat, *mat, Size( size.width / scale_denom, size.height / scale_denom ) );
S
Suleyman TURKMEN 已提交
340 341
    }

342 343 344 345
    return hdrtype == LOAD_CVMAT ? (void*)matrix :
        hdrtype == LOAD_IMAGE ? (void*)image : (void*)mat;
}

346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361

/**
* Read an image into memory and return the information
*
* @param[in] filename File to load
* @param[in] flags Flags
* @param[in] mats Reference to C++ vector<Mat> object to hold the images
*
*/
static bool
imreadmulti_(const String& filename, int flags, std::vector<Mat>& mats)
{
    /// Search for the relevant decoder to handle the imagery
    ImageDecoder decoder;

#ifdef HAVE_GDAL
M
Maksim Shabunin 已提交
362
    if (flags != IMREAD_UNCHANGED && (flags & IMREAD_LOAD_GDAL) == IMREAD_LOAD_GDAL){
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
        decoder = GdalDecoder().newDecoder();
    }
    else{
#endif
        decoder = findDecoder(filename);
#ifdef HAVE_GDAL
    }
#endif

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

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

    // read the header to make sure it succeeds
    if (!decoder->readHeader())
        return 0;

    for (;;)
    {
        // grab the decoded type
        int type = decoder->type();
388
        if( (flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED )
389 390 391 392 393 394 395 396 397 398 399 400
        {
            if ((flags & CV_LOAD_IMAGE_ANYDEPTH) == 0)
                type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

            if ((flags & CV_LOAD_IMAGE_COLOR) != 0 ||
                ((flags & CV_LOAD_IMAGE_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1))
                type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
            else
                type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
        }

        // read the image data
401
        Mat mat(decoder->height(), decoder->width(), type);
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
        if (!decoder->readData(mat))
        {
            break;
        }

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

    return !mats.empty();
}

417 418 419 420 421 422 423 424
/**
 * 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.
*/
425
Mat imread( const String& filename, int flags )
426
{
427
    /// create the basic container
428
    Mat img;
429 430

    /// load the data
431
    imread_( filename, flags, LOAD_MAT, &img );
432 433

    /// return a reference to the data
434 435 436
    return img;
}

437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
/**
* 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)
{
    return imreadmulti_(filename, flags, mats);
}

452
static bool imwrite_( const String& filename, const Mat& image,
453
                      const std::vector<int>& params, bool flipv )
454 455 456 457 458 459 460
{
    Mat temp;
    const Mat* pimage = &image;

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

    ImageEncoder encoder = findEncoder( filename );
R
Roman Donchenko 已提交
461
    if( !encoder )
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
        CV_Error( CV_StsError, "could not find a writer for the specified extension" );
    if( !encoder->isFormatSupported(image.depth()) )
    {
        CV_Assert( encoder->isFormatSupported(CV_8U) );
        image.convertTo( temp, CV_8U );
        pimage = &temp;
    }

    if( flipv )
    {
        flip(*pimage, temp, 0);
        pimage = &temp;
    }

    encoder->setDestination( filename );
    bool code = encoder->write( *pimage, params );

    //    CV_Assert( code );
    return code;
}

483
bool imwrite( const String& filename, InputArray _img,
484
              const std::vector<int>& params )
485
{
486
    Mat img = _img.getMat();
487 488 489 490 491 492
    return imwrite_(filename, img, params, false);
}

static void*
imdecode_( const Mat& buf, int flags, int hdrtype, Mat* mat=0 )
{
493
    CV_Assert(!buf.empty() && buf.isContinuous());
494 495 496
    IplImage* image = 0;
    CvMat *matrix = 0;
    Mat temp, *data = &temp;
497
    String filename;
498 499

    ImageDecoder decoder = findDecoder(buf);
R
Roman Donchenko 已提交
500
    if( !decoder )
501 502 503 504
        return 0;

    if( !decoder->setSource(buf) )
    {
R
Roy Reapor 已提交
505
        filename = tempfile();
506
        FILE* f = fopen( filename.c_str(), "wb" );
507 508 509
        if( !f )
            return 0;
        size_t bufSize = buf.cols*buf.rows*buf.elemSize();
510
        fwrite( buf.ptr(), 1, bufSize, f );
511 512 513 514 515 516
        fclose(f);
        decoder->setSource(filename);
    }

    if( !decoder->readHeader() )
    {
R
Roy Reapor 已提交
517
        if( !filename.empty() )
518
            remove(filename.c_str());
519 520 521 522 523 524 525 526
        return 0;
    }

    CvSize size;
    size.width = decoder->width();
    size.height = decoder->height();

    int type = decoder->type();
527
    if( (flags & IMREAD_LOAD_GDAL) != IMREAD_LOAD_GDAL && flags != IMREAD_UNCHANGED )
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
    {
        if( (flags & CV_LOAD_IMAGE_ANYDEPTH) == 0 )
            type = CV_MAKETYPE(CV_8U, CV_MAT_CN(type));

        if( (flags & CV_LOAD_IMAGE_COLOR) != 0 ||
           ((flags & CV_LOAD_IMAGE_ANYCOLOR) != 0 && CV_MAT_CN(type) > 1) )
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 3);
        else
            type = CV_MAKETYPE(CV_MAT_DEPTH(type), 1);
    }

    if( hdrtype == LOAD_CVMAT || hdrtype == LOAD_MAT )
    {
        if( hdrtype == LOAD_CVMAT )
        {
            matrix = cvCreateMat( size.height, size.width, type );
            temp = cvarrToMat(matrix);
        }
        else
        {
            mat->create( size.height, size.width, type );
            data = mat;
        }
    }
    else
    {
        image = cvCreateImage( size, cvIplDepth(type), CV_MAT_CN(type) );
        temp = cvarrToMat(image);
    }

    bool code = decoder->readData( *data );
R
Roy Reapor 已提交
559
    if( !filename.empty() )
560
        remove(filename.c_str());
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575

    if( !code )
    {
        cvReleaseImage( &image );
        cvReleaseMat( &matrix );
        if( mat )
            mat->release();
        return 0;
    }

    return hdrtype == LOAD_CVMAT ? (void*)matrix :
        hdrtype == LOAD_IMAGE ? (void*)image : (void*)mat;
}


576
Mat imdecode( InputArray _buf, int flags )
577
{
578
    Mat buf = _buf.getMat(), img;
579 580 581
    imdecode_( buf, flags, LOAD_MAT, &img );
    return img;
}
582

583 584 585 586 587 588 589
Mat imdecode( InputArray _buf, int flags, Mat* dst )
{
    Mat buf = _buf.getMat(), img;
    dst = dst ? dst : &img;
    imdecode_( buf, flags, LOAD_MAT, dst );
    return *dst;
}
590

591
bool imencode( const String& ext, InputArray _image,
592
               std::vector<uchar>& buf, const std::vector<int>& params )
593
{
594
    Mat image = _image.getMat();
595 596 597 598 599

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

    ImageEncoder encoder = findEncoder( ext );
R
Roman Donchenko 已提交
600
    if( !encoder )
601 602 603 604 605
        CV_Error( CV_StsError, "could not find encoder for the specified extension" );

    if( !encoder->isFormatSupported(image.depth()) )
    {
        CV_Assert( encoder->isFormatSupported(CV_8U) );
606
        Mat temp;
607
        image.convertTo(temp, CV_8U);
608
        image = temp;
609 610 611 612 613 614
    }

    bool code;
    if( encoder->setDestination(buf) )
    {
        code = encoder->write(image, params);
615
        encoder->throwOnEror();
616 617 618 619
        CV_Assert( code );
    }
    else
    {
620
        String filename = tempfile();
621 622
        code = encoder->setDestination(filename);
        CV_Assert( code );
623

624
        code = encoder->write(image, params);
625
        encoder->throwOnEror();
626
        CV_Assert( code );
627

628
        FILE* f = fopen( filename.c_str(), "rb" );
629 630 631 632 633 634 635
        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);
636
        remove(filename.c_str());
637 638 639 640 641 642 643
    }
    return code;
}

}

/****************************************************************************************\
644
*                         Imgcodecs loading & saving function implementation            *
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
\****************************************************************************************/

CV_IMPL int
cvHaveImageReader( const char* filename )
{
    cv::ImageDecoder decoder = cv::findDecoder(filename);
    return !decoder.empty();
}

CV_IMPL int cvHaveImageWriter( const char* filename )
{
    cv::ImageEncoder encoder = cv::findEncoder(filename);
    return !encoder.empty();
}

CV_IMPL IplImage*
cvLoadImage( const char* filename, int iscolor )
{
    return (IplImage*)cv::imread_(filename, iscolor, cv::LOAD_IMAGE );
}

CV_IMPL CvMat*
cvLoadImageM( const char* filename, int iscolor )
{
    return (CvMat*)cv::imread_( filename, iscolor, cv::LOAD_CVMAT );
}

CV_IMPL int
cvSaveImage( const char* filename, const CvArr* arr, const int* _params )
{
    int i = 0;
    if( _params )
    {
        for( ; _params[i] > 0; i += 2 )
            ;
    }
    return cv::imwrite_(filename, cv::cvarrToMat(arr),
682
        i > 0 ? std::vector<int>(_params, _params+i) : std::vector<int>(),
683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
        CV_IS_IMAGE(arr) && ((const IplImage*)arr)->origin == IPL_ORIGIN_BL );
}

/* decode image stored in the buffer */
CV_IMPL IplImage*
cvDecodeImage( const CvMat* _buf, int iscolor )
{
    CV_Assert( _buf && CV_IS_MAT_CONT(_buf->type) );
    cv::Mat buf(1, _buf->rows*_buf->cols*CV_ELEM_SIZE(_buf->type), CV_8U, _buf->data.ptr);
    return (IplImage*)cv::imdecode_(buf, iscolor, cv::LOAD_IMAGE );
}

CV_IMPL CvMat*
cvDecodeImageM( const CvMat* _buf, int iscolor )
{
    CV_Assert( _buf && CV_IS_MAT_CONT(_buf->type) );
    cv::Mat buf(1, _buf->rows*_buf->cols*CV_ELEM_SIZE(_buf->type), CV_8U, _buf->data.ptr);
    return (CvMat*)cv::imdecode_(buf, iscolor, cv::LOAD_CVMAT );
}

CV_IMPL CvMat*
cvEncodeImage( const char* ext, const CvArr* arr, const int* _params )
{
    int i = 0;
    if( _params )
    {
        for( ; _params[i] > 0; i += 2 )
            ;
    }
    cv::Mat img = cv::cvarrToMat(arr);
    if( CV_IS_IMAGE(arr) && ((const IplImage*)arr)->origin == IPL_ORIGIN_BL )
    {
        cv::Mat temp;
        cv::flip(img, temp, 0);
        img = temp;
    }
719
    std::vector<uchar> buf;
720 721 722 723 724 725 726 727 728 729 730 731

    bool code = cv::imencode(ext, img, buf,
        i > 0 ? std::vector<int>(_params, _params+i) : std::vector<int>() );
    if( !code )
        return 0;
    CvMat* _buf = cvCreateMat(1, (int)buf.size(), CV_8U);
    memcpy( _buf->data.ptr, &buf[0], buf.size() );

    return _buf;
}

/* End of file. */