mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 22:44:02 +08:00
added support for uncompressed parameters to tiff image format as described here: expertland.net/question/b6o3n6p9a72341db823b48nl98m91dx8n1/detail.html
This commit is contained in:
parent
6447c7b2f4
commit
a07d7a70a0
@ -574,13 +574,19 @@ bool TiffEncoder::writeLibTiff( const Mat& img, const std::vector<int>& params)
|
|||||||
|| !TIFFSetField(pTiffHandle, TIFFTAG_SAMPLESPERPIXEL, channels)
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_SAMPLESPERPIXEL, channels)
|
||||||
|| !TIFFSetField(pTiffHandle, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG)
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG)
|
||||||
|| !TIFFSetField(pTiffHandle, TIFFTAG_ROWSPERSTRIP, rowsPerStrip)
|
|| !TIFFSetField(pTiffHandle, TIFFTAG_ROWSPERSTRIP, rowsPerStrip)
|
||||||
|| !TIFFSetField(pTiffHandle, TIFFTAG_PREDICTOR, predictor)
|
// || !TIFFSetField(pTiffHandle, TIFFTAG_PREDICTOR, predictor)
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
TIFFClose(pTiffHandle);
|
TIFFClose(pTiffHandle);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (compression != COMPRESSION_NONE && !TIFFSetField(pTiffHandle, TIFFTAG_PREDICTOR, predictor) )
|
||||||
|
{
|
||||||
|
TIFFClose(pTiffHandle);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// row buffer, because TIFFWriteScanline modifies the original data!
|
// row buffer, because TIFFWriteScanline modifies the original data!
|
||||||
size_t scanlineSize = TIFFScanlineSize(pTiffHandle);
|
size_t scanlineSize = TIFFScanlineSize(pTiffHandle);
|
||||||
AutoBuffer<uchar> _buffer(scanlineSize+32);
|
AutoBuffer<uchar> _buffer(scanlineSize+32);
|
||||||
|
Loading…
Reference in New Issue
Block a user