June 2008
Beginner to intermediate
417 pages
10h 41m
English
Several bioinformatics applications use images to represent the data. Raw data coming off of a gel sequencer is an image of vertical lanes. Expression arrays originate as an image of thousands of circles. Newer applications associate phenotypes extracted from images with genotype information.
The Python Image Library (PIL) is a third-party module that provides a decent amount of image reading, writing, and manipulation software. This chapter will review the basics of this package and explore some of the basics of digital image processing.
To employ the PIL, the module is imported in one of two ways. For Versions 1.1.5 or earlier, the command import Image is used; for Version 1.1.6, the from PIL import ...