0
votes
0answers
51 views

Improper Tiff image generated from RGB888 data

I'm trying to convert RGB888 image data to TIFF image. But code generates improper image. I'm reading the RGB data from text file.Here is the output image the black region shouldn't be there it ...
0
votes
0answers
38 views

Can't properly write a tiff file

I have a program which has the following function to write to a tiff file. However, the files produced are not recognized by any picture viewing software. What is wrong in this code, why is it not ...
1
vote
0answers
151 views

C/C++ library for TIFF 6.0 and TTN2

Does anyone here know of a library where we could encode/decode TIFFv6 and TTN2? It should be something we could use to ateast be able to convert bmp to these files and v.v. Thanks.
0
votes
1answer
123 views

How to check the invalid format error for a tiff file

I am using a program which outputs TIFF file. However when I try to open that tiff file from paint or picture viewer or any other image viewer program, I get the responce that the tiff file has ...
1
vote
1answer
381 views

Using ANSI C to extract binary image data from database into a .jpg file

I am using an ANSI C compiler (LabWindows/CVI version 2010) to extract integer, string and floating point data from an existing Access 2010 database with good success. However, I have not been able ...
2
votes
1answer
574 views

How to write coordinate to a TIF file using libgeotiff

I'm trying to create a tif file using the GeoTiff library. I managed to write all the data into a normal tif file using the standard TIF function of the library, but I can't figure out how to use the ...
1
vote
1answer
112 views

Can't find implementation for struct tiff

I'm learning a package named tiff for dealing with images: https://launchpad.net/ubuntu/+source/tiff/3.8.2-11 After doing configure, make, make install... I'm able to use the TIFF data structure. ...
0
votes
1answer
399 views

Access TIFF image

I am trying to read a TIFF image to perform processing. The ideal would be to be able to import this image in a OpenCV structure, but even having it accessible in a different way would be great. If I ...
1
vote
2answers
2k views

How can I simply load a greyscale tiff in libtiff and get an array of pixel intensities?

I am trying to understand images some more, and I'm having a great deal of trouble. From using matlab, I have experience in using imread('test.tif'), and getting a beautiful matrix of rows vs. ...
5
votes
1answer
242 views

Library support for very high dynamic range TIFF files?

I work with satellite radar, and have been provided with a (very) large TIFF file containing 32 bpp greyscale data. Unfortunately, libtiff, the standard Linux library for working with TIFF files, ...
2
votes
6answers
2k views

LibTIFF: Extract all tags from a TIFF image

I'm currently working on a project which requires me to split a TIFF image into a file containing all tags and a file containing all image data and to reconstruct a TIFF image from these files. The ...
0
votes
1answer
214 views

How can I get a libtiff TIFF object from a MagickWand object (in C)?

How can I get a libtiff TIFF object from a MagickWand object (in C)? I want to open any given image type with ImageMagick and run tesseract on it. Tesseract seems to use libtiff for it's IO, ...
0
votes
1answer
215 views

Extracting Spot Color equivalents from TIFF

I'm trying to get the Spot color information from a TIFF file, it normally shows up under 'channels' in Photoshop. Each extra channel would have a name, which is usually a Pantone swatch name, and a ...
0
votes
2answers
2k views

reading 16-bit greyscale TIFF

I'm trying to read a 16-bit greyscale TIFF file (BitsPerSample=16) using a small C program to convert into an array of floating point numbers for further analysis. The pixel data are, according to ...
3
votes
3answers
1k views

Automatic image rotation based on a logo

We're looking for a package to help identify and automatically rotate faxed TIFF images based on a watermark or logo. We use libtiff for rotation currently, but don't know of any other libraries ...