2010-05-12 01:44:00 +08:00
|
|
|
/*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.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// License Agreement
|
|
|
|
// For Open Source Computer Vision Library
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
|
|
|
|
// Copyright (C) 2009, Willow Garage Inc., 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 the copyright holders 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*/
|
|
|
|
|
|
|
|
/****************************************************************************************\
|
|
|
|
A part of the file implements TIFF reader on base of libtiff library
|
|
|
|
(see otherlibs/_graphics/readme.txt for copyright notice)
|
|
|
|
\****************************************************************************************/
|
|
|
|
|
|
|
|
#include "precomp.hpp"
|
2017-09-25 06:28:36 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_TIFF
|
2010-05-12 01:44:00 +08:00
|
|
|
#include "grfmt_tiff.hpp"
|
2014-10-09 05:31:30 +08:00
|
|
|
#include <limits>
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2017-09-25 06:28:36 +08:00
|
|
|
// TODO FIXIT Conflict declarations for common types like int64/uint64
|
|
|
|
namespace tiff_dummy_namespace {
|
|
|
|
#include "tiff.h"
|
|
|
|
#include "tiffio.h"
|
|
|
|
}
|
|
|
|
using namespace tiff_dummy_namespace;
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
namespace cv
|
|
|
|
{
|
|
|
|
|
|
|
|
|
2017-09-25 06:28:36 +08:00
|
|
|
static const char fmtSignTiffII[] = "II\x2a\x00";
|
2014-10-17 20:46:47 +08:00
|
|
|
static const char fmtSignTiffMM[] = "MM\x00\x2a";
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
static int grfmt_tiff_err_handler_init = 0;
|
|
|
|
static void GrFmtSilentTIFFErrorHandler( const char*, const char*, va_list ) {}
|
|
|
|
|
|
|
|
TiffDecoder::TiffDecoder()
|
|
|
|
{
|
|
|
|
m_tif = 0;
|
|
|
|
if( !grfmt_tiff_err_handler_init )
|
|
|
|
{
|
|
|
|
grfmt_tiff_err_handler_init = 1;
|
|
|
|
|
|
|
|
TIFFSetErrorHandler( GrFmtSilentTIFFErrorHandler );
|
|
|
|
TIFFSetWarningHandler( GrFmtSilentTIFFErrorHandler );
|
|
|
|
}
|
2013-09-24 03:40:06 +08:00
|
|
|
m_hdr = false;
|
2017-07-28 04:46:20 +08:00
|
|
|
m_buf_supported = true;
|
|
|
|
m_buf_pos = 0;
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void TiffDecoder::close()
|
|
|
|
{
|
|
|
|
if( m_tif )
|
|
|
|
{
|
|
|
|
TIFF* tif = (TIFF*)m_tif;
|
|
|
|
TIFFClose( tif );
|
|
|
|
m_tif = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TiffDecoder::~TiffDecoder()
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t TiffDecoder::signatureLength() const
|
|
|
|
{
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2013-03-23 00:37:49 +08:00
|
|
|
bool TiffDecoder::checkSignature( const String& signature ) const
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
return signature.size() >= 4 &&
|
|
|
|
(memcmp(signature.c_str(), fmtSignTiffII, 4) == 0 ||
|
|
|
|
memcmp(signature.c_str(), fmtSignTiffMM, 4) == 0);
|
|
|
|
}
|
|
|
|
|
2013-02-10 07:22:49 +08:00
|
|
|
int TiffDecoder::normalizeChannelsNumber(int channels) const
|
|
|
|
{
|
|
|
|
return channels > 4 ? 4 : channels;
|
|
|
|
}
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
ImageDecoder TiffDecoder::newDecoder() const
|
|
|
|
{
|
2013-08-13 20:47:18 +08:00
|
|
|
return makePtr<TiffDecoder>();
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
2017-07-28 04:46:20 +08:00
|
|
|
class TiffDecoderBufHelper
|
|
|
|
{
|
2017-09-25 06:28:36 +08:00
|
|
|
Mat& m_buf;
|
|
|
|
size_t& m_buf_pos;
|
2017-07-28 04:46:20 +08:00
|
|
|
public:
|
2017-09-25 06:28:36 +08:00
|
|
|
TiffDecoderBufHelper(Mat& buf, size_t& buf_pos) :
|
|
|
|
m_buf(buf), m_buf_pos(buf_pos)
|
|
|
|
{}
|
2017-07-28 04:46:20 +08:00
|
|
|
static tmsize_t read( thandle_t handle, void* buffer, tmsize_t n )
|
|
|
|
{
|
2017-09-25 06:28:36 +08:00
|
|
|
TiffDecoderBufHelper *helper = reinterpret_cast<TiffDecoderBufHelper*>(handle);
|
|
|
|
const Mat& buf = helper->m_buf;
|
2017-07-28 04:46:20 +08:00
|
|
|
const tmsize_t size = buf.cols*buf.rows*buf.elemSize();
|
2017-09-25 06:28:36 +08:00
|
|
|
tmsize_t pos = helper->m_buf_pos;
|
2017-07-28 04:46:20 +08:00
|
|
|
if ( n > (size - pos) )
|
|
|
|
{
|
|
|
|
n = size - pos;
|
|
|
|
}
|
|
|
|
memcpy(buffer, buf.ptr() + pos, n);
|
2017-09-25 06:28:36 +08:00
|
|
|
helper->m_buf_pos += n;
|
2017-07-28 04:46:20 +08:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static tmsize_t write( thandle_t /*handle*/, void* /*buffer*/, tmsize_t /*n*/ )
|
|
|
|
{
|
|
|
|
// Not used for decoding.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static toff_t seek( thandle_t handle, toff_t offset, int whence )
|
|
|
|
{
|
2017-09-25 06:28:36 +08:00
|
|
|
TiffDecoderBufHelper *helper = reinterpret_cast<TiffDecoderBufHelper*>(handle);
|
|
|
|
const Mat& buf = helper->m_buf;
|
2017-07-28 04:46:20 +08:00
|
|
|
const toff_t size = buf.cols*buf.rows*buf.elemSize();
|
2017-09-25 06:28:36 +08:00
|
|
|
toff_t new_pos = helper->m_buf_pos;
|
2017-07-28 04:46:20 +08:00
|
|
|
switch (whence)
|
|
|
|
{
|
|
|
|
case SEEK_SET:
|
|
|
|
new_pos = offset;
|
|
|
|
break;
|
|
|
|
case SEEK_CUR:
|
|
|
|
new_pos += offset;
|
|
|
|
break;
|
|
|
|
case SEEK_END:
|
|
|
|
new_pos = size + offset;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
new_pos = std::min(new_pos, size);
|
2017-09-25 06:28:36 +08:00
|
|
|
helper->m_buf_pos = (size_t)new_pos;
|
2017-07-28 04:46:20 +08:00
|
|
|
return new_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int map( thandle_t handle, void** base, toff_t* size )
|
|
|
|
{
|
2017-09-25 06:28:36 +08:00
|
|
|
TiffDecoderBufHelper *helper = reinterpret_cast<TiffDecoderBufHelper*>(handle);
|
|
|
|
Mat& buf = helper->m_buf;
|
2017-07-28 04:46:20 +08:00
|
|
|
*base = buf.ptr();
|
|
|
|
*size = buf.cols*buf.rows*buf.elemSize();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static toff_t size( thandle_t handle )
|
|
|
|
{
|
2017-09-25 06:28:36 +08:00
|
|
|
TiffDecoderBufHelper *helper = reinterpret_cast<TiffDecoderBufHelper*>(handle);
|
|
|
|
const Mat& buf = helper->m_buf;
|
2017-07-28 04:46:20 +08:00
|
|
|
return buf.cols*buf.rows*buf.elemSize();
|
|
|
|
}
|
|
|
|
|
2017-09-25 06:28:36 +08:00
|
|
|
static int close( thandle_t handle )
|
2017-07-28 04:46:20 +08:00
|
|
|
{
|
2017-09-25 06:28:36 +08:00
|
|
|
TiffDecoderBufHelper *helper = reinterpret_cast<TiffDecoderBufHelper*>(handle);
|
|
|
|
delete helper;
|
2017-07-28 04:46:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
bool TiffDecoder::readHeader()
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
|
2014-12-29 23:50:03 +08:00
|
|
|
TIFF* tif = static_cast<TIFF*>(m_tif);
|
|
|
|
if (!m_tif)
|
|
|
|
{
|
|
|
|
// TIFFOpen() mode flags are different to fopen(). A 'b' in mode "rb" has no effect when reading.
|
|
|
|
// http://www.remotesensing.org/libtiff/man/TIFFOpen.3tiff.html
|
2017-07-28 04:46:20 +08:00
|
|
|
if ( !m_buf.empty() )
|
|
|
|
{
|
|
|
|
m_buf_pos = 0;
|
2017-09-25 06:28:36 +08:00
|
|
|
TiffDecoderBufHelper* buf_helper = new TiffDecoderBufHelper(this->m_buf, this->m_buf_pos);
|
|
|
|
tif = TIFFClientOpen( "", "r", reinterpret_cast<thandle_t>(buf_helper), &TiffDecoderBufHelper::read,
|
2017-07-28 04:46:20 +08:00
|
|
|
&TiffDecoderBufHelper::write, &TiffDecoderBufHelper::seek,
|
|
|
|
&TiffDecoderBufHelper::close, &TiffDecoderBufHelper::size,
|
|
|
|
&TiffDecoderBufHelper::map, /*unmap=*/0 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tif = TIFFOpen(m_filename.c_str(), "r");
|
|
|
|
}
|
2014-12-29 23:50:03 +08:00
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
if( tif )
|
|
|
|
{
|
2014-02-12 20:41:38 +08:00
|
|
|
uint32 wdth = 0, hght = 0;
|
|
|
|
uint16 photometric = 0;
|
2010-05-12 01:44:00 +08:00
|
|
|
m_tif = tif;
|
|
|
|
|
2012-06-09 23:00:04 +08:00
|
|
|
if( TIFFGetField( tif, TIFFTAG_IMAGEWIDTH, &wdth ) &&
|
|
|
|
TIFFGetField( tif, TIFFTAG_IMAGELENGTH, &hght ) &&
|
2010-11-22 05:50:45 +08:00
|
|
|
TIFFGetField( tif, TIFFTAG_PHOTOMETRIC, &photometric ))
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2014-02-12 20:41:38 +08:00
|
|
|
uint16 bpp=8, ncn = photometric > 1 ? 3 : 1;
|
2010-11-22 05:50:45 +08:00
|
|
|
TIFFGetField( tif, TIFFTAG_BITSPERSAMPLE, &bpp );
|
|
|
|
TIFFGetField( tif, TIFFTAG_SAMPLESPERPIXEL, &ncn );
|
2012-06-09 23:00:04 +08:00
|
|
|
|
|
|
|
m_width = wdth;
|
|
|
|
m_height = hght;
|
2013-09-24 03:40:06 +08:00
|
|
|
if((bpp == 32 && ncn == 3) || photometric == PHOTOMETRIC_LOGLUV)
|
|
|
|
{
|
|
|
|
m_type = CV_32FC3;
|
|
|
|
m_hdr = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
m_hdr = false;
|
2013-06-23 18:19:09 +08:00
|
|
|
|
2010-11-22 05:50:45 +08:00
|
|
|
if( bpp > 8 &&
|
2017-09-06 11:43:33 +08:00
|
|
|
((photometric > 2) ||
|
2010-11-22 05:50:45 +08:00
|
|
|
(ncn != 1 && ncn != 3 && ncn != 4)))
|
|
|
|
bpp = 8;
|
2011-06-02 20:35:52 +08:00
|
|
|
|
2013-02-10 07:22:49 +08:00
|
|
|
int wanted_channels = normalizeChannelsNumber(ncn);
|
2011-06-02 20:35:52 +08:00
|
|
|
switch(bpp)
|
|
|
|
{
|
2018-11-01 19:34:34 +08:00
|
|
|
case 1:
|
|
|
|
m_type = CV_MAKETYPE(CV_8U, photometric > 1 ? wanted_channels : 1);
|
|
|
|
result = true;
|
|
|
|
break;
|
2011-06-02 20:35:52 +08:00
|
|
|
case 8:
|
2013-02-10 07:22:49 +08:00
|
|
|
m_type = CV_MAKETYPE(CV_8U, photometric > 1 ? wanted_channels : 1);
|
2018-07-24 19:14:13 +08:00
|
|
|
result = true;
|
2011-06-02 20:35:52 +08:00
|
|
|
break;
|
|
|
|
case 16:
|
2014-07-27 22:14:54 +08:00
|
|
|
m_type = CV_MAKETYPE(CV_16U, photometric > 1 ? wanted_channels : 1);
|
2018-07-24 19:14:13 +08:00
|
|
|
result = true;
|
2011-06-02 20:35:52 +08:00
|
|
|
break;
|
|
|
|
case 32:
|
|
|
|
m_type = CV_MAKETYPE(CV_32F, photometric > 1 ? 3 : 1);
|
2018-07-24 19:14:13 +08:00
|
|
|
result = true;
|
2011-06-02 20:35:52 +08:00
|
|
|
break;
|
|
|
|
case 64:
|
|
|
|
m_type = CV_MAKETYPE(CV_64F, photometric > 1 ? 3 : 1);
|
2018-07-24 19:14:13 +08:00
|
|
|
result = true;
|
2011-06-02 20:35:52 +08:00
|
|
|
break;
|
2018-11-01 19:34:34 +08:00
|
|
|
default:
|
|
|
|
CV_Error(cv::Error::StsError, "Invalid bitsperpixel value read from TIFF header! Must be 1, 8, 16, 32 or 64.");
|
2011-06-02 20:35:52 +08:00
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !result )
|
|
|
|
close();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-12-29 23:50:03 +08:00
|
|
|
bool TiffDecoder::nextPage()
|
|
|
|
{
|
|
|
|
// Prepare the next page, if any.
|
|
|
|
return m_tif &&
|
2014-12-29 23:51:27 +08:00
|
|
|
TIFFReadDirectory(static_cast<TIFF*>(m_tif)) &&
|
2014-12-29 23:50:03 +08:00
|
|
|
readHeader();
|
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
bool TiffDecoder::readData( Mat& img )
|
|
|
|
{
|
2013-09-24 03:40:06 +08:00
|
|
|
if(m_hdr && img.type() == CV_32FC3)
|
|
|
|
{
|
2018-01-04 20:51:58 +08:00
|
|
|
return readData_32FC3(img);
|
|
|
|
}
|
|
|
|
if(img.type() == CV_32FC1)
|
|
|
|
{
|
|
|
|
return readData_32FC1(img);
|
2013-09-24 03:40:06 +08:00
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
bool result = false;
|
|
|
|
bool color = img.channels() > 1;
|
2012-06-09 23:00:04 +08:00
|
|
|
|
2011-06-02 20:35:52 +08:00
|
|
|
if( img.depth() != CV_8U && img.depth() != CV_16U && img.depth() != CV_32F && img.depth() != CV_64F )
|
2010-11-22 05:50:45 +08:00
|
|
|
return false;
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
if( m_tif && m_width && m_height )
|
|
|
|
{
|
|
|
|
TIFF* tif = (TIFF*)m_tif;
|
2014-02-12 20:41:38 +08:00
|
|
|
uint32 tile_width0 = m_width, tile_height0 = 0;
|
2010-05-12 01:44:00 +08:00
|
|
|
int x, y, i;
|
|
|
|
int is_tiled = TIFFIsTiled(tif);
|
2014-02-12 20:41:38 +08:00
|
|
|
uint16 photometric;
|
2010-11-22 05:50:45 +08:00
|
|
|
TIFFGetField( tif, TIFFTAG_PHOTOMETRIC, &photometric );
|
2014-02-12 20:41:38 +08:00
|
|
|
uint16 bpp = 8, ncn = photometric > 1 ? 3 : 1;
|
2010-11-22 05:50:45 +08:00
|
|
|
TIFFGetField( tif, TIFFTAG_BITSPERSAMPLE, &bpp );
|
|
|
|
TIFFGetField( tif, TIFFTAG_SAMPLESPERPIXEL, &ncn );
|
2018-01-31 21:24:24 +08:00
|
|
|
uint16 img_orientation = ORIENTATION_TOPLEFT;
|
|
|
|
TIFFGetField( tif, TIFFTAG_ORIENTATION, &img_orientation);
|
|
|
|
bool vert_flip = (img_orientation == ORIENTATION_BOTRIGHT) || (img_orientation == ORIENTATION_RIGHTBOT) ||
|
|
|
|
(img_orientation == ORIENTATION_BOTLEFT) || (img_orientation == ORIENTATION_LEFTBOT);
|
2011-06-02 20:35:52 +08:00
|
|
|
const int bitsPerByte = 8;
|
2011-07-19 20:27:07 +08:00
|
|
|
int dst_bpp = (int)(img.elemSize1() * bitsPerByte);
|
2013-02-10 07:22:49 +08:00
|
|
|
int wanted_channels = normalizeChannelsNumber(img.channels());
|
2011-06-02 20:35:52 +08:00
|
|
|
|
|
|
|
if(dst_bpp == 8)
|
|
|
|
{
|
|
|
|
char errmsg[1024];
|
|
|
|
if(!TIFFRGBAImageOK( tif, errmsg ))
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2012-10-11 18:38:25 +08:00
|
|
|
if( (!is_tiled) ||
|
2010-05-12 01:44:00 +08:00
|
|
|
(is_tiled &&
|
|
|
|
TIFFGetField( tif, TIFFTAG_TILEWIDTH, &tile_width0 ) &&
|
|
|
|
TIFFGetField( tif, TIFFTAG_TILELENGTH, &tile_height0 )))
|
|
|
|
{
|
2012-10-11 18:38:25 +08:00
|
|
|
if(!is_tiled)
|
|
|
|
TIFFGetField( tif, TIFFTAG_ROWSPERSTRIP, &tile_height0 );
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
if( tile_width0 <= 0 )
|
|
|
|
tile_width0 = m_width;
|
|
|
|
|
2014-10-09 05:31:30 +08:00
|
|
|
if( tile_height0 <= 0 ||
|
|
|
|
(!is_tiled && tile_height0 == std::numeric_limits<uint32>::max()) )
|
2010-05-12 01:44:00 +08:00
|
|
|
tile_height0 = m_height;
|
|
|
|
|
2015-09-17 04:04:42 +08:00
|
|
|
if(dst_bpp == 8) {
|
|
|
|
// we will use TIFFReadRGBA* functions, so allocate temporary buffer for 32bit RGBA
|
|
|
|
bpp = 8;
|
|
|
|
ncn = 4;
|
|
|
|
}
|
|
|
|
const size_t buffer_size = (bpp/bitsPerByte) * ncn * tile_height0 * tile_width0;
|
2014-10-19 07:22:04 +08:00
|
|
|
AutoBuffer<uchar> _buffer( buffer_size );
|
2018-06-11 06:42:00 +08:00
|
|
|
uchar* buffer = _buffer.data();
|
2010-11-22 05:50:45 +08:00
|
|
|
ushort* buffer16 = (ushort*)buffer;
|
2011-06-02 20:35:52 +08:00
|
|
|
float* buffer32 = (float*)buffer;
|
|
|
|
double* buffer64 = (double*)buffer;
|
2010-11-22 05:50:45 +08:00
|
|
|
int tileidx = 0;
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2018-01-31 21:24:24 +08:00
|
|
|
for( y = 0; y < m_height; y += tile_height0 )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
int tile_height = tile_height0;
|
|
|
|
|
|
|
|
if( y + tile_height > m_height )
|
|
|
|
tile_height = m_height - y;
|
|
|
|
|
2018-01-31 21:24:24 +08:00
|
|
|
uchar* data = img.ptr(vert_flip ? m_height - y - tile_height : y);
|
|
|
|
|
2010-11-22 05:50:45 +08:00
|
|
|
for( x = 0; x < m_width; x += tile_width0, tileidx++ )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
int tile_width = tile_width0, ok;
|
|
|
|
|
|
|
|
if( x + tile_width > m_width )
|
|
|
|
tile_width = m_width - x;
|
|
|
|
|
2011-06-02 20:35:52 +08:00
|
|
|
switch(dst_bpp)
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2011-06-02 20:35:52 +08:00
|
|
|
case 8:
|
2010-11-22 05:50:45 +08:00
|
|
|
{
|
2014-02-21 04:12:22 +08:00
|
|
|
uchar * bstart = buffer;
|
2011-06-02 20:35:52 +08:00
|
|
|
if( !is_tiled )
|
|
|
|
ok = TIFFReadRGBAStrip( tif, y, (uint32*)buffer );
|
2010-11-22 05:50:45 +08:00
|
|
|
else
|
2014-02-21 04:12:22 +08:00
|
|
|
{
|
2011-06-02 20:35:52 +08:00
|
|
|
ok = TIFFReadRGBATile( tif, x, y, (uint32*)buffer );
|
2014-02-21 04:12:22 +08:00
|
|
|
//Tiles fill the buffer from the bottom up
|
|
|
|
bstart += (tile_height0 - tile_height) * tile_width0 * 4;
|
|
|
|
}
|
2011-06-02 20:35:52 +08:00
|
|
|
if( !ok )
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( i = 0; i < tile_height; i++ )
|
|
|
|
if( color )
|
2013-02-10 07:22:49 +08:00
|
|
|
{
|
|
|
|
if (wanted_channels == 4)
|
|
|
|
{
|
2014-02-24 18:35:34 +08:00
|
|
|
icvCvt_BGRA2RGBA_8u_C4R( bstart + i*tile_width0*4, 0,
|
2013-02-10 07:22:49 +08:00
|
|
|
data + x*4 + img.step*(tile_height - i - 1), 0,
|
|
|
|
cvSize(tile_width,1) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-24 18:35:34 +08:00
|
|
|
icvCvt_BGRA2BGR_8u_C4C3R( bstart + i*tile_width0*4, 0,
|
2013-01-30 00:29:31 +08:00
|
|
|
data + x*3 + img.step*(tile_height - i - 1), 0,
|
2011-06-02 20:35:52 +08:00
|
|
|
cvSize(tile_width,1), 2 );
|
2013-02-10 07:22:49 +08:00
|
|
|
}
|
|
|
|
}
|
2011-06-02 20:35:52 +08:00
|
|
|
else
|
2014-01-24 19:03:47 +08:00
|
|
|
icvCvt_BGRA2Gray_8u_C4C1R( bstart + i*tile_width0*4, 0,
|
2013-01-30 00:29:31 +08:00
|
|
|
data + x + img.step*(tile_height - i - 1), 0,
|
2011-06-02 20:35:52 +08:00
|
|
|
cvSize(tile_width,1), 2 );
|
|
|
|
break;
|
2010-11-22 05:50:45 +08:00
|
|
|
}
|
2011-06-02 20:35:52 +08:00
|
|
|
|
|
|
|
case 16:
|
2010-11-22 05:50:45 +08:00
|
|
|
{
|
2011-06-02 20:35:52 +08:00
|
|
|
if( !is_tiled )
|
2014-10-19 07:22:04 +08:00
|
|
|
ok = (int)TIFFReadEncodedStrip( tif, tileidx, (uint32*)buffer, buffer_size ) >= 0;
|
2011-06-02 20:35:52 +08:00
|
|
|
else
|
2014-10-19 07:22:04 +08:00
|
|
|
ok = (int)TIFFReadEncodedTile( tif, tileidx, (uint32*)buffer, buffer_size ) >= 0;
|
2011-06-02 20:35:52 +08:00
|
|
|
|
|
|
|
if( !ok )
|
2010-11-22 05:50:45 +08:00
|
|
|
{
|
2011-06-02 20:35:52 +08:00
|
|
|
close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( i = 0; i < tile_height; i++ )
|
|
|
|
{
|
|
|
|
if( color )
|
2010-11-22 05:50:45 +08:00
|
|
|
{
|
2011-06-02 20:35:52 +08:00
|
|
|
if( ncn == 1 )
|
|
|
|
{
|
2014-02-21 04:12:22 +08:00
|
|
|
icvCvt_Gray2BGR_16u_C1C3R(buffer16 + i*tile_width0*ncn, 0,
|
2013-01-30 00:29:31 +08:00
|
|
|
(ushort*)(data + img.step*i) + x*3, 0,
|
2011-06-02 20:35:52 +08:00
|
|
|
cvSize(tile_width,1) );
|
|
|
|
}
|
|
|
|
else if( ncn == 3 )
|
|
|
|
{
|
2014-02-21 04:12:22 +08:00
|
|
|
icvCvt_RGB2BGR_16u_C3R(buffer16 + i*tile_width0*ncn, 0,
|
2013-01-30 00:29:31 +08:00
|
|
|
(ushort*)(data + img.step*i) + x*3, 0,
|
2011-06-02 20:35:52 +08:00
|
|
|
cvSize(tile_width,1) );
|
|
|
|
}
|
2014-07-27 22:14:54 +08:00
|
|
|
else if (ncn == 4)
|
|
|
|
{
|
|
|
|
if (wanted_channels == 4)
|
|
|
|
{
|
|
|
|
icvCvt_BGRA2RGBA_16u_C4R(buffer16 + i*tile_width0*ncn, 0,
|
|
|
|
(ushort*)(data + img.step*i) + x * 4, 0,
|
|
|
|
cvSize(tile_width, 1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
icvCvt_BGRA2BGR_16u_C4C3R(buffer16 + i*tile_width0*ncn, 0,
|
|
|
|
(ushort*)(data + img.step*i) + x * 3, 0,
|
|
|
|
cvSize(tile_width, 1), 2);
|
|
|
|
}
|
|
|
|
}
|
2011-06-02 20:35:52 +08:00
|
|
|
else
|
|
|
|
{
|
2014-02-21 04:12:22 +08:00
|
|
|
icvCvt_BGRA2BGR_16u_C4C3R(buffer16 + i*tile_width0*ncn, 0,
|
2013-01-30 00:29:31 +08:00
|
|
|
(ushort*)(data + img.step*i) + x*3, 0,
|
2011-06-02 20:35:52 +08:00
|
|
|
cvSize(tile_width,1), 2 );
|
|
|
|
}
|
2010-11-22 05:50:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-06-02 20:35:52 +08:00
|
|
|
if( ncn == 1 )
|
|
|
|
{
|
2013-01-30 00:29:31 +08:00
|
|
|
memcpy((ushort*)(data + img.step*i)+x,
|
2014-02-21 04:12:22 +08:00
|
|
|
buffer16 + i*tile_width0*ncn,
|
2011-06-02 20:35:52 +08:00
|
|
|
tile_width*sizeof(buffer16[0]));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-21 04:12:22 +08:00
|
|
|
icvCvt_BGRA2Gray_16u_CnC1R(buffer16 + i*tile_width0*ncn, 0,
|
2013-01-30 00:29:31 +08:00
|
|
|
(ushort*)(data + img.step*i) + x, 0,
|
2011-06-02 20:35:52 +08:00
|
|
|
cvSize(tile_width,1), ncn, 2 );
|
|
|
|
}
|
2010-11-22 05:50:45 +08:00
|
|
|
}
|
|
|
|
}
|
2011-06-02 20:35:52 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 32:
|
|
|
|
case 64:
|
|
|
|
{
|
|
|
|
if( !is_tiled )
|
2014-10-19 07:22:04 +08:00
|
|
|
ok = (int)TIFFReadEncodedStrip( tif, tileidx, buffer, buffer_size ) >= 0;
|
2010-11-22 05:50:45 +08:00
|
|
|
else
|
2014-10-19 07:22:04 +08:00
|
|
|
ok = (int)TIFFReadEncodedTile( tif, tileidx, buffer, buffer_size ) >= 0;
|
2011-06-02 20:35:52 +08:00
|
|
|
|
|
|
|
if( !ok || ncn != 1 )
|
2010-11-22 05:50:45 +08:00
|
|
|
{
|
2011-06-02 20:35:52 +08:00
|
|
|
close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for( i = 0; i < tile_height; i++ )
|
|
|
|
{
|
|
|
|
if(dst_bpp == 32)
|
2010-11-22 05:50:45 +08:00
|
|
|
{
|
2013-01-30 00:29:31 +08:00
|
|
|
memcpy((float*)(data + img.step*i)+x,
|
2014-02-21 04:12:22 +08:00
|
|
|
buffer32 + i*tile_width0*ncn,
|
2011-06-02 20:35:52 +08:00
|
|
|
tile_width*sizeof(buffer32[0]));
|
2010-11-22 05:50:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-30 00:29:31 +08:00
|
|
|
memcpy((double*)(data + img.step*i)+x,
|
2014-02-21 04:12:22 +08:00
|
|
|
buffer64 + i*tile_width0*ncn,
|
2011-06-02 20:35:52 +08:00
|
|
|
tile_width*sizeof(buffer64[0]));
|
2010-11-22 05:50:45 +08:00
|
|
|
}
|
|
|
|
}
|
2011-06-02 20:35:52 +08:00
|
|
|
|
|
|
|
break;
|
2010-11-22 05:50:45 +08:00
|
|
|
}
|
2011-06-02 20:35:52 +08:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-01-04 20:51:58 +08:00
|
|
|
bool TiffDecoder::readData_32FC3(Mat& img)
|
2013-06-23 18:19:09 +08:00
|
|
|
{
|
2013-09-24 03:40:06 +08:00
|
|
|
int rows_per_strip = 0, photometric = 0;
|
|
|
|
if(!m_tif)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
TIFF *tif = static_cast<TIFF*>(m_tif);
|
|
|
|
TIFFGetField(tif, TIFFTAG_ROWSPERSTRIP, &rows_per_strip);
|
2013-06-23 18:19:09 +08:00
|
|
|
TIFFGetField( tif, TIFFTAG_PHOTOMETRIC, &photometric );
|
2013-09-24 03:40:06 +08:00
|
|
|
TIFFSetField(tif, TIFFTAG_SGILOGDATAFMT, SGILOGDATAFMT_FLOAT);
|
|
|
|
int size = 3 * m_width * m_height * sizeof (float);
|
2013-10-04 21:03:15 +08:00
|
|
|
tstrip_t strip_size = 3 * m_width * rows_per_strip;
|
2013-09-24 03:40:06 +08:00
|
|
|
float *ptr = img.ptr<float>();
|
2013-10-04 21:03:15 +08:00
|
|
|
for (tstrip_t i = 0; i < TIFFNumberOfStrips(tif); i++, ptr += strip_size)
|
2013-09-24 03:40:06 +08:00
|
|
|
{
|
|
|
|
TIFFReadEncodedStrip(tif, i, ptr, size);
|
|
|
|
size -= strip_size * sizeof(float);
|
|
|
|
}
|
|
|
|
close();
|
|
|
|
if(photometric == PHOTOMETRIC_LOGLUV)
|
|
|
|
{
|
|
|
|
cvtColor(img, img, COLOR_XYZ2BGR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cvtColor(img, img, COLOR_RGB2BGR);
|
|
|
|
}
|
|
|
|
return true;
|
2013-06-23 18:19:09 +08:00
|
|
|
}
|
|
|
|
|
2018-01-04 20:51:58 +08:00
|
|
|
bool TiffDecoder::readData_32FC1(Mat& img)
|
|
|
|
{
|
|
|
|
if(!m_tif)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
TIFF *tif = static_cast<TIFF*>(m_tif);
|
|
|
|
|
|
|
|
uint32 img_width, img_height;
|
|
|
|
TIFFGetField(tif,TIFFTAG_IMAGEWIDTH, &img_width);
|
|
|
|
TIFFGetField(tif,TIFFTAG_IMAGELENGTH, &img_height);
|
|
|
|
if(img.size() != Size(img_width,img_height))
|
|
|
|
{
|
|
|
|
close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
tsize_t scanlength = TIFFScanlineSize(tif);
|
|
|
|
tdata_t buf = _TIFFmalloc(scanlength);
|
|
|
|
float* data;
|
2018-02-22 18:20:35 +08:00
|
|
|
bool result = true;
|
2018-01-04 20:51:58 +08:00
|
|
|
for (uint32 row = 0; row < img_height; row++)
|
|
|
|
{
|
|
|
|
if (TIFFReadScanline(tif, buf, row) != 1)
|
|
|
|
{
|
2018-02-22 18:20:35 +08:00
|
|
|
result = false;
|
|
|
|
break;
|
2018-01-04 20:51:58 +08:00
|
|
|
}
|
|
|
|
data=(float*)buf;
|
|
|
|
for (uint32 i=0; i<img_width; i++)
|
|
|
|
{
|
|
|
|
img.at<float>(row,i) = data[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_TIFFfree(buf);
|
|
|
|
close();
|
|
|
|
|
2018-02-22 18:20:35 +08:00
|
|
|
return result;
|
2018-01-04 20:51:58 +08:00
|
|
|
}
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
TiffEncoder::TiffEncoder()
|
|
|
|
{
|
|
|
|
m_description = "TIFF Files (*.tiff;*.tif)";
|
|
|
|
m_buf_supported = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
TiffEncoder::~TiffEncoder()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageEncoder TiffEncoder::newEncoder() const
|
|
|
|
{
|
2013-08-13 20:47:18 +08:00
|
|
|
return makePtr<TiffEncoder>();
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
2011-04-25 18:46:06 +08:00
|
|
|
bool TiffEncoder::isFormatSupported( int depth ) const
|
|
|
|
{
|
2013-06-23 18:19:09 +08:00
|
|
|
return depth == CV_8U || depth == CV_16U || depth == CV_32F;
|
2011-04-25 18:46:06 +08:00
|
|
|
}
|
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
void TiffEncoder::writeTag( WLByteStream& strm, TiffTag tag,
|
|
|
|
TiffFieldType fieldType,
|
|
|
|
int count, int value )
|
|
|
|
{
|
|
|
|
strm.putWord( tag );
|
|
|
|
strm.putWord( fieldType );
|
|
|
|
strm.putDWord( count );
|
|
|
|
strm.putDWord( value );
|
|
|
|
}
|
|
|
|
|
2017-07-28 04:46:20 +08:00
|
|
|
class TiffEncoderBufHelper
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
TiffEncoderBufHelper(std::vector<uchar> *buf)
|
|
|
|
: m_buf(buf), m_buf_pos(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
TIFF* open ()
|
|
|
|
{
|
|
|
|
return TIFFClientOpen( "", "w", reinterpret_cast<thandle_t>(this), &TiffEncoderBufHelper::read,
|
|
|
|
&TiffEncoderBufHelper::write, &TiffEncoderBufHelper::seek,
|
|
|
|
&TiffEncoderBufHelper::close, &TiffEncoderBufHelper::size,
|
|
|
|
/*map=*/0, /*unmap=*/0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
static tmsize_t read( thandle_t /*handle*/, void* /*buffer*/, tmsize_t /*n*/ )
|
|
|
|
{
|
|
|
|
// Not used for encoding.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static tmsize_t write( thandle_t handle, void* buffer, tmsize_t n )
|
|
|
|
{
|
|
|
|
TiffEncoderBufHelper *helper = reinterpret_cast<TiffEncoderBufHelper*>(handle);
|
2017-08-24 21:07:12 +08:00
|
|
|
size_t begin = (size_t)helper->m_buf_pos;
|
2017-07-28 04:46:20 +08:00
|
|
|
size_t end = begin + n;
|
|
|
|
if ( helper->m_buf->size() < end )
|
|
|
|
{
|
|
|
|
helper->m_buf->resize(end);
|
|
|
|
}
|
|
|
|
memcpy(&(*helper->m_buf)[begin], buffer, n);
|
|
|
|
helper->m_buf_pos = end;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
static toff_t seek( thandle_t handle, toff_t offset, int whence )
|
|
|
|
{
|
|
|
|
TiffEncoderBufHelper *helper = reinterpret_cast<TiffEncoderBufHelper*>(handle);
|
|
|
|
const toff_t size = helper->m_buf->size();
|
|
|
|
toff_t new_pos = helper->m_buf_pos;
|
|
|
|
switch (whence)
|
|
|
|
{
|
|
|
|
case SEEK_SET:
|
|
|
|
new_pos = offset;
|
|
|
|
break;
|
|
|
|
case SEEK_CUR:
|
|
|
|
new_pos += offset;
|
|
|
|
break;
|
|
|
|
case SEEK_END:
|
|
|
|
new_pos = size + offset;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
helper->m_buf_pos = new_pos;
|
|
|
|
return new_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
static toff_t size( thandle_t handle )
|
|
|
|
{
|
|
|
|
TiffEncoderBufHelper *helper = reinterpret_cast<TiffEncoderBufHelper*>(handle);
|
|
|
|
return helper->m_buf->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
static int close( thandle_t /*handle*/ )
|
|
|
|
{
|
|
|
|
// Do nothing.
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::vector<uchar>* m_buf;
|
|
|
|
toff_t m_buf_pos;
|
|
|
|
};
|
|
|
|
|
2013-02-25 00:14:01 +08:00
|
|
|
static void readParam(const std::vector<int>& params, int key, int& value)
|
2013-01-30 00:13:09 +08:00
|
|
|
{
|
|
|
|
for(size_t i = 0; i + 1 < params.size(); i += 2)
|
|
|
|
if(params[i] == key)
|
|
|
|
{
|
|
|
|
value = params[i+1];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
bool TiffEncoder::writeLibTiff( const std::vector<Mat>& img_vec, const std::vector<int>& params)
|
2011-06-02 17:06:00 +08:00
|
|
|
{
|
|
|
|
// do NOT put "wb" as the mode, because the b means "big endian" mode, not "binary" mode.
|
|
|
|
// http://www.remotesensing.org/libtiff/man/TIFFOpen.3tiff.html
|
2017-07-28 04:46:20 +08:00
|
|
|
TIFF* pTiffHandle;
|
|
|
|
|
|
|
|
TiffEncoderBufHelper buf_helper(m_buf);
|
|
|
|
if ( m_buf )
|
|
|
|
{
|
|
|
|
pTiffHandle = buf_helper.open();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pTiffHandle = TIFFOpen(m_filename.c_str(), "w");
|
|
|
|
}
|
2011-06-02 17:06:00 +08:00
|
|
|
if (!pTiffHandle)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-06-09 23:00:04 +08:00
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
//Settings that matter to all images
|
2011-06-02 17:06:00 +08:00
|
|
|
// defaults for now, maybe base them on params in the future
|
2017-12-21 04:14:10 +08:00
|
|
|
int compression = COMPRESSION_LZW;
|
|
|
|
int predictor = PREDICTOR_HORIZONTAL;
|
2018-04-05 12:20:16 +08:00
|
|
|
int resUnit = -1, dpiX = -1, dpiY = -1;
|
2011-06-02 17:06:00 +08:00
|
|
|
|
2013-01-30 00:13:09 +08:00
|
|
|
readParam(params, TIFFTAG_COMPRESSION, compression);
|
|
|
|
readParam(params, TIFFTAG_PREDICTOR, predictor);
|
2018-04-05 12:20:16 +08:00
|
|
|
readParam(params, IMWRITE_TIFF_RESUNIT, resUnit);
|
|
|
|
readParam(params, IMWRITE_TIFF_XDPI, dpiX);
|
|
|
|
readParam(params, IMWRITE_TIFF_YDPI, dpiY);
|
2013-01-30 00:13:09 +08:00
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
//Iterate through each image in the vector and write them out as Tiff directories
|
|
|
|
for (size_t page = 0; page < img_vec.size(); page++)
|
2015-02-23 23:15:34 +08:00
|
|
|
{
|
2017-12-21 04:14:10 +08:00
|
|
|
const Mat& img = img_vec[page];
|
|
|
|
int channels = img.channels();
|
|
|
|
int width = img.cols, height = img.rows;
|
|
|
|
int depth = img.depth();
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
int bitsPerChannel = -1;
|
|
|
|
switch (depth)
|
2011-06-02 17:06:00 +08:00
|
|
|
{
|
2017-12-21 04:14:10 +08:00
|
|
|
case CV_8U:
|
2011-06-02 17:06:00 +08:00
|
|
|
{
|
2017-12-21 04:14:10 +08:00
|
|
|
bitsPerChannel = 8;
|
2011-06-02 17:06:00 +08:00
|
|
|
break;
|
|
|
|
}
|
2017-12-21 04:14:10 +08:00
|
|
|
case CV_16U:
|
2011-06-02 17:06:00 +08:00
|
|
|
{
|
2017-12-21 04:14:10 +08:00
|
|
|
bitsPerChannel = 16;
|
2012-10-01 12:33:56 +08:00
|
|
|
break;
|
2011-06-02 17:06:00 +08:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2018-02-26 05:16:02 +08:00
|
|
|
TIFFClose(pTiffHandle);
|
2011-06-02 17:06:00 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
const int bitsPerByte = 8;
|
|
|
|
size_t fileStep = (width * channels * bitsPerChannel) / bitsPerByte;
|
|
|
|
|
|
|
|
int rowsPerStrip = (int)((1 << 13) / fileStep);
|
|
|
|
readParam(params, TIFFTAG_ROWSPERSTRIP, rowsPerStrip);
|
|
|
|
|
|
|
|
if (rowsPerStrip < 1)
|
|
|
|
rowsPerStrip = 1;
|
|
|
|
|
|
|
|
if (rowsPerStrip > height)
|
|
|
|
rowsPerStrip = height;
|
|
|
|
|
|
|
|
int colorspace = channels > 1 ? PHOTOMETRIC_RGB : PHOTOMETRIC_MINISBLACK;
|
|
|
|
|
|
|
|
if (!TIFFSetField(pTiffHandle, TIFFTAG_IMAGEWIDTH, width)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_IMAGELENGTH, height)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_BITSPERSAMPLE, bitsPerChannel)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_COMPRESSION, compression)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_PHOTOMETRIC, colorspace)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_SAMPLESPERPIXEL, channels)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_ROWSPERSTRIP, rowsPerStrip)
|
|
|
|
|| (img_vec.size() > 1 && (
|
|
|
|
!TIFFSetField(pTiffHandle, TIFFTAG_SUBFILETYPE, FILETYPE_PAGE)
|
|
|
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_PAGENUMBER, page, img_vec.size() )))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
TIFFClose(pTiffHandle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (compression != COMPRESSION_NONE && !TIFFSetField(pTiffHandle, TIFFTAG_PREDICTOR, predictor))
|
|
|
|
{
|
|
|
|
TIFFClose(pTiffHandle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-05 12:20:16 +08:00
|
|
|
if (((resUnit >= RESUNIT_NONE && resUnit <= RESUNIT_CENTIMETER) && !TIFFSetField(pTiffHandle, TIFFTAG_RESOLUTIONUNIT, resUnit))
|
|
|
|
|| (dpiX >= 0 && !TIFFSetField(pTiffHandle, TIFFTAG_XRESOLUTION, (float)dpiX))
|
|
|
|
|| (dpiY >= 0 && !TIFFSetField(pTiffHandle, TIFFTAG_YRESOLUTION, (float)dpiY))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
TIFFClose(pTiffHandle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
// row buffer, because TIFFWriteScanline modifies the original data!
|
|
|
|
size_t scanlineSize = TIFFScanlineSize(pTiffHandle);
|
|
|
|
AutoBuffer<uchar> _buffer(scanlineSize + 32);
|
2018-06-11 06:42:00 +08:00
|
|
|
uchar* buffer = _buffer.data();
|
2017-12-21 04:14:10 +08:00
|
|
|
if (!buffer)
|
2011-06-02 17:06:00 +08:00
|
|
|
{
|
|
|
|
TIFFClose(pTiffHandle);
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-21 04:14:10 +08:00
|
|
|
|
|
|
|
for (int y = 0; y < height; ++y)
|
|
|
|
{
|
|
|
|
switch (channels)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
memcpy(buffer, img.ptr(y), scanlineSize);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
if (depth == CV_8U)
|
|
|
|
icvCvt_BGR2RGB_8u_C3R( img.ptr(y), 0, buffer, 0, cvSize(width, 1));
|
|
|
|
else
|
|
|
|
icvCvt_BGR2RGB_16u_C3R( img.ptr<ushort>(y), 0, (ushort*)buffer, 0, cvSize(width, 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 4:
|
|
|
|
{
|
|
|
|
if (depth == CV_8U)
|
|
|
|
icvCvt_BGRA2RGBA_8u_C4R( img.ptr(y), 0, buffer, 0, cvSize(width, 1));
|
|
|
|
else
|
|
|
|
icvCvt_BGRA2RGBA_16u_C4R( img.ptr<ushort>(y), 0, (ushort*)buffer, 0, cvSize(width, 1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
TIFFClose(pTiffHandle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int writeResult = TIFFWriteScanline(pTiffHandle, buffer, y, 0);
|
|
|
|
if (writeResult != 1)
|
|
|
|
{
|
|
|
|
TIFFClose(pTiffHandle);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TIFFWriteDirectory(pTiffHandle);
|
|
|
|
|
2011-06-02 17:06:00 +08:00
|
|
|
}
|
2012-06-09 23:00:04 +08:00
|
|
|
|
2011-06-02 17:06:00 +08:00
|
|
|
TIFFClose(pTiffHandle);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-04 20:51:58 +08:00
|
|
|
bool TiffEncoder::write_32FC3(const Mat& _img)
|
2013-06-23 18:19:09 +08:00
|
|
|
{
|
2013-09-24 03:40:06 +08:00
|
|
|
Mat img;
|
|
|
|
cvtColor(_img, img, COLOR_BGR2XYZ);
|
2017-07-28 04:46:20 +08:00
|
|
|
|
|
|
|
TIFF* tif;
|
|
|
|
|
|
|
|
TiffEncoderBufHelper buf_helper(m_buf);
|
|
|
|
if ( m_buf )
|
|
|
|
{
|
|
|
|
tif = buf_helper.open();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tif = TIFFOpen(m_filename.c_str(), "w");
|
|
|
|
}
|
|
|
|
|
2013-09-24 03:40:06 +08:00
|
|
|
if (!tif)
|
|
|
|
{
|
2013-06-23 18:19:09 +08:00
|
|
|
return false;
|
|
|
|
}
|
2013-09-24 03:40:06 +08:00
|
|
|
TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, img.cols);
|
|
|
|
TIFFSetField(tif, TIFFTAG_IMAGELENGTH, img.rows);
|
|
|
|
TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 3);
|
|
|
|
TIFFSetField(tif, TIFFTAG_COMPRESSION, COMPRESSION_SGILOG);
|
|
|
|
TIFFSetField(tif, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_LOGLUV);
|
|
|
|
TIFFSetField(tif, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);
|
|
|
|
TIFFSetField(tif, TIFFTAG_SGILOGDATAFMT, SGILOGDATAFMT_FLOAT);
|
|
|
|
TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, 1);
|
|
|
|
int strip_size = 3 * img.cols;
|
|
|
|
float *ptr = const_cast<float*>(img.ptr<float>());
|
|
|
|
for (int i = 0; i < img.rows; i++, ptr += strip_size)
|
|
|
|
{
|
|
|
|
TIFFWriteEncodedStrip(tif, i, ptr, strip_size * sizeof(float));
|
|
|
|
}
|
|
|
|
TIFFClose(tif);
|
|
|
|
return true;
|
2013-06-23 18:19:09 +08:00
|
|
|
}
|
|
|
|
|
2018-01-04 20:51:58 +08:00
|
|
|
bool TiffEncoder::write_32FC1(const Mat& _img)
|
|
|
|
{
|
|
|
|
|
|
|
|
TIFF* tif;
|
|
|
|
|
|
|
|
TiffEncoderBufHelper buf_helper(m_buf);
|
|
|
|
if ( m_buf )
|
|
|
|
{
|
|
|
|
tif = buf_helper.open();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tif = TIFFOpen(m_filename.c_str(), "w");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tif)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, _img.cols);
|
|
|
|
TIFFSetField(tif, TIFFTAG_IMAGELENGTH, _img.rows);
|
|
|
|
TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 1);
|
|
|
|
TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, 32);
|
|
|
|
TIFFSetField(tif, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK);
|
|
|
|
TIFFSetField(tif, TIFFTAG_SAMPLEFORMAT, SAMPLEFORMAT_IEEEFP);
|
|
|
|
TIFFSetField(tif, TIFFTAG_COMPRESSION, COMPRESSION_NONE);
|
|
|
|
for (uint32 row = 0; row < (uint32)_img.rows; row++)
|
|
|
|
{
|
|
|
|
if (TIFFWriteScanline(tif, (tdata_t)_img.ptr<float>(row), row, 1) != 1)
|
|
|
|
{
|
|
|
|
TIFFClose(tif);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
TIFFWriteDirectory(tif);
|
|
|
|
TIFFClose(tif);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
bool TiffEncoder::writemulti(const std::vector<Mat>& img_vec, const std::vector<int>& params)
|
|
|
|
{
|
|
|
|
return writeLibTiff(img_vec, params);
|
|
|
|
}
|
|
|
|
|
2013-02-25 00:14:01 +08:00
|
|
|
bool TiffEncoder::write( const Mat& img, const std::vector<int>& params)
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2011-04-25 18:46:06 +08:00
|
|
|
int depth = img.depth();
|
2017-09-25 06:28:36 +08:00
|
|
|
|
2013-09-24 03:40:06 +08:00
|
|
|
if(img.type() == CV_32FC3)
|
|
|
|
{
|
2018-01-04 20:51:58 +08:00
|
|
|
return write_32FC3(img);
|
|
|
|
}
|
|
|
|
if(img.type() == CV_32FC1)
|
|
|
|
{
|
|
|
|
return write_32FC1(img);
|
2013-09-24 03:40:06 +08:00
|
|
|
}
|
2011-04-25 18:46:06 +08:00
|
|
|
|
2017-09-25 06:28:36 +08:00
|
|
|
CV_Assert(depth == CV_8U || depth == CV_16U);
|
2011-04-25 18:46:06 +08:00
|
|
|
|
2017-12-21 04:14:10 +08:00
|
|
|
std::vector<Mat> img_vec;
|
|
|
|
img_vec.push_back(img);
|
|
|
|
return writeLibTiff(img_vec, params);
|
2017-09-25 06:28:36 +08:00
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2017-09-25 06:28:36 +08:00
|
|
|
} // namespace
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2017-07-28 04:46:20 +08:00
|
|
|
#endif
|