Tagged Questions
0
votes
1answer
21 views
downsampling images as a function in Python
I am trying to resample some tiff files from 2000*2000 to 500*500.
I have created a function and I tried for one file and it worked nicely. Now I want to apply it for all the available file I have.
I ...
0
votes
0answers
46 views
Need a pure python library for reading a group3 TIFF (fax image)
I am trying to decode a group3 TIFF. This TIFF data is 1bit group3 compressed. It's what is generated by a FAX machine aka CCIT T.4 - http://www.fileformat.info/mirror/egff/ch09_05.htm
I can not ...
0
votes
0answers
43 views
Inverted tiff images and photometric interpretation tag in PIL?
I'm creating black and white TIF images from scratch and drawing text on them using Python's Imaging Library. Using Python 2.7, PIL 1.1.7 on Windows 7.
To create each image, I use this code
def ...
1
vote
1answer
244 views
Python PIL struggles with uncompressed 16-bit TIFF images
My system is Mac OS X v10.8.2. I have several 2560x500 uncompressed 16-bit TIFF images (grayscale, unsigned 16-bit integers). I first attempt to load them using PIL (installed via Homebrew, version ...
1
vote
1answer
83 views
How to detect if an tif image has layers with python preferably with pil
Im trying to find out if file (tif) has multiple layers. Ive looked though the pil documentation but couldn't seen anything that points to it. Has anyone got any ideas?
2
votes
1answer
149 views
Python.exe crashes when saving CMYK tif image with PIL
I'm having troubles only with CMYK tif images in PIL. The thing is that everything seems to be going fine, I can load the file, save it, but when I crop it and try to save it python.exe just hangs. ...
0
votes
0answers
138 views
Problems converting a multi-layered TIFF image to JPG using PIL
I am doing some image processing on images. I use PIL to resize the images.
The image in question is a multilayered TIFF image. When I run it through my code, all I get is an image with a green ...
12
votes
1answer
371 views
Python PIL incorrectly decoding TIFF colors (using incorrect colorspace)?
When I use PIL==1.1.7 to load TIFF images, it seems to get the colorspace wrong:
What's going on?
The .tiff was created using convert test.jpg test.tiff (but seems to happen with other tiff files ...
0
votes
0answers
62 views
Missing data when I import a tiff file in PIL
Good afternoon experts
I'm reading a tiff image with PIL, this image was generate in ARCGIS, I can open the image in Irfanview or GIMP without problem, but when I read the image using PIL a narrow ...
0
votes
1answer
195 views
Converting an image instance (file) to an array (python)
I have an image sequence and I am trying to run a script on a specific frame. I need to switch to this frame and convert it to an array. However, I am unable to as the frame is an instance ...
1
vote
1answer
361 views
PIL group4 decoder not found
I've installed PIL 1.1.7 with the windows installer for Python 2.7 and I'm trying to use it to open a TIFF file. However, I keep receiving IOError: decoder group4 not available.
What bit is missing? ...
1
vote
1answer
259 views
Using TIFF G4 image in PIL
I wrote a pure python TIFF G4 decompress for use with tifffile.py. I know there are ways to add libtiff to a custom PIL, but I never could get that working very well in a mixed virtualenv. I want to ...
0
votes
1answer
181 views
View tif file using PIL, poor quality when resized
I wish to view tif files in python. I tried using PIL and resizing the image to fit the screen but the quality was poor.
im = image.resize((600, 950), Image.ANTIALIAS)
I converted the tif to jpg ...
0
votes
2answers
270 views
Py2exe'd Python script cant save image in TIFF format
There is a python script i'm working on which processes an Image and converts and saves it from a GIF image into a TIFF format with extension ".tif"...
The script works fine and even gives me the ...
0
votes
4answers
776 views
Split multi-page tiff with python
What's the best way to split a multi-page TIFF with python? PIL doesn't seem to have support for multi-page images, and I haven't found an exact port for libtiff for python. Would PyLibTiff be the ...
0
votes
1answer
411 views
Python Image Library (PIL) error with floating point tiff
I am writing a script that changes the resolution of a floating point 2K (2048x2048) tiff image to 1024x1024.
But I get the following error:
File "C:\Python26\lib\site-packages\PIL\Image.py", line ...
3
votes
2answers
1k views
numpy.array of an “I;16” Image file
I want to use TIFF images to effectively save large arrays of measurement data. With setting them to mode="I;16" (corresponding to my 16 bit data range), they yield 2MB files (~1000x1000 "pixel"). ...
0
votes
0answers
225 views
Tkinter and TIFF
As i don't seem to be able to understand this interaction: Whats the deal with TIFF files and Tkinter?
I can generate a PhotoImage instance with ImageTk, but when I want to display it on a Tk frame I ...
3
votes
3answers
5k views
Working TIFFs with Python
I need a python routine that can open and import TIFF images into numpy arrays, so I can analyze and modify the contained data and afterwards save them as TIFFs again. (They are basically light ...
4
votes
3answers
3k views
Python: Manipulating a 16-bit .tiff image in PIL &/or pygame: convert to 8-bit somehow?
Hello all,
I am working on a program which determines the average colony size of yeast from a photograph, and it is working fine with the .bmp images I tested it on. The program uses pygame, and ...