ebook img

An Introduction to Digital Image Processing with Matlab Notes for SCM2511 Image Processing 1 PDF

264 Pages·2012·4.09 MB·English
by  
Save to my drive
Quick download
Download
Most books are stored in the elastic cloud where traffic is expensive. For this reason, we have a limit on daily download.

Preview An Introduction to Digital Image Processing with Matlab Notes for SCM2511 Image Processing 1

i An Introduction to Digital Image Processing with Matlab Notes for SCM2511 Image Processing 1 Alasdair McAndrew School of Computer Science and Mathematics Victoria University of Technology ii CONTENTS Contents 1 Introduction 1 1.1 Images and pictures. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 1.2 What is image processing? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 1.3 Images and digital images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.4 Some applications . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 1.5 Aspects of image processing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 1.6 An image processing task . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 1.7 Types of digital images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 1.8 Image File Sizes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 1.9 Image Acquisition . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 1.10 Image perception . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 2 Basic use of Matlab 15 2.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 2.2 Basic use of Matlab . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 2.3 Variables and the workspace . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 2.4 Dealing with matrices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 2.5 Plots . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 2.6 Help in Matlab . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 30 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 3 Images and Matlab 33 3.1 Greyscale images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 33 3.2 RGB Images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 3.3 Indexed colour images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 3.4 Data types and conversions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 4 Image Display 41 4.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 4.2 The imshow function . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 4.3 Bit planes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 4.4 Spatial Resolution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 47 5 Point Processing 51 5.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 51 5.2 Arithmetic operations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52 CONTENTS iii 5.3 Histograms . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 56 5.4 Thresholding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67 5.5 Applications of thresholding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 70 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71 6 Spatial Filtering 75 6.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 6.2 Notation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 6.3 Filtering in Matlab . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80 6.4 Frequencies; low and high pass (cid:28)lters . . . . . . . . . . . . . . . . . . . . . . . . . 84 6.5 Gaussian (cid:28)lters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 87 6.6 Non-linear (cid:28)lters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 89 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 7 Noise 95 7.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 7.2 Types of noise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 95 7.3 Cleaning salt and pepper noise . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98 7.4 Cleaning Gaussian noise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 102 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106 8 Edges 111 8.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 111 8.2 Di(cid:27)erences and edges . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 111 8.3 Second di(cid:27)erences . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 118 8.4 Edge enhancement . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 122 8.5 Final Remarks. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 128 9 The Fourier Transform 131 9.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131 9.2 The one-dimensional discrete Fourier transform . . . . . . . . . . . . . . . . . . . 131 9.3 Properties of the one-dimensional DFT . . . . . . . . . . . . . . . . . . . . . . . . 135 9.4 The two-dimensional DFT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 137 9.5 Fourier transforms in Matlab . . . . . . . . . . . . . . . . . . . . . . . . . . . . 142 9.6 Fourier transforms of images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 144 9.7 Filtering in the frequency domain . . . . . . . . . . . . . . . . . . . . . . . . . . . 148 9.8 Removal of periodic noise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 159 9.9 Inverse (cid:28)ltering . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 161 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167 10 The Hough and Distance Transforms 169 10.1 The Hough transform . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 169 10.2 Implementing the Hough transform in Matlab . . . . . . . . . . . . . . . . . . . 174 10.3 The distance transform . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 180 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 191 11 Morphology 195 iv CONTENTS 11.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 195 11.2 Basic ideas . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 195 11.3 Dilation and erosion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 196 11.4 Opening and closing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 203 11.5 The hit-or-miss transform . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 211 11.6 Some morphological algorithms . . . . . . . . . . . . . . . . . . . . . . . . . . . . 213 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 220 12 Colour processing 223 12.1 What is colour? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 223 12.2 Colour models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 227 12.3 Colour images in Matlab . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 234 12.4 Pseudocolouring . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 236 12.5 Processing of colour images . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 239 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 245 13 Image coding and compression 247 13.1 Lossless compression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 247 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 252 Bibliography 255 Index 257 Chapter 1 Introduction 1.1 Images and pictures As we mentioned in the preface, human beings are predominantly visual creatures: we rely heavily on our vision to make sense of the world around us. We not only look at things to identify and classify them, but we can scan for di(cid:27)erences, and obtain an overall rough (cid:16)feeling(cid:17) for a scene with a quick glance. Humans have evolved very precise visual skills: we can identify a face in an instant; we can di(cid:27)erentiate colours; we can process a large amount of visual information very quickly. However, the world is in constant motion: stare at something for long enough and it will change in some way. Even a large solid structure, like a building or a mountain, will change its appearance dependingonthetimeofday(dayornight); amountofsunlight(clearorcloudy),orvariousshadows falling upon it. We are concerned with single images: snapshots, if you like, of a visual scene. Although image processing can deal with changing scenes, we shall not discuss it in any detail in this text. For our purposes, an image is a single picture which represents something. It may be a picture of a person, of people or animals, or of an outdoor scene, or a microphotograph of an electronic component, or the result of medical imaging. Even if the picture is not immediately recognizable, it will not be just a random blur. 1.2 What is image processing? Image processing involves changing the nature of an image in order to either 1. improve its pictorial information for human interpretation, 2. render it more suitable for autonomous machine perception. We shall be concerned with digital image processing, which involves using a computer to change the nature of a digital image (see below). It is necessary to realize that these two aspects represent two separate but equally important aspects of image processing. A procedure which satis(cid:28)es condition (1)(cid:22)a procedure which makes an image (cid:16)look better(cid:17)(cid:22)may be the very worst procedure for satis- fying condition (2). Humans like their images to be sharp, clear and detailed; machines prefer their images to be simple and uncluttered. Examples of (1) may include: 1 2 CHAPTER 1. INTRODUCTION (cid:0) Enhancing theedges ofanimage tomake itappearsharper; anexample isshown in(cid:28)gure1.1. Note how the second image appears (cid:16)cleaner(cid:17); it is a more pleasant image. Sharpening edges is a vital component of printing: in order for an image to appear (cid:16)at its best(cid:17) on the printed page; some sharpening is usually performed. (a) The original image (b) Result after (cid:16)sharperning(cid:17) Figure 1.1: Image sharperning (cid:0) Removing(cid:16)noise(cid:17) fromanimage; noisebeingrandomerrorsintheimage. Anexampleisgiven in (cid:28)gure 1.2. Noise is a very common problem in data transmission: all sorts of electronic components may a(cid:27)ect data passing through them, and the results may be undesirable. As we shall see in chapter 7 noise may take many di(cid:27)erent forms;each type of noise requiring a di(cid:27)erent method of removal. (cid:0) Removing motion blur from an image. An example is given in (cid:28)gure 1.3. Note that in the deblurred image (b) it is easy to read the numberplate, and to see the spokes on the wheels of the car, as well as other details not at all clear in the original image (a). Motion blur may occur when the shutter speed of the camera is too long for the speed of the object. In photographs of fast moving objects: athletes, vehicles for example, the problem of blur may be considerable. Examples of (2) may include: (cid:0) Obtaining the edges of an image. This may be necessary for the measurement of objects in an image; an example is shown in (cid:28)gures 1.4. Once we have the edges we can measure their spread, and the area contained within them. We can also use edge detection algorithms as a (cid:28)rst step in edge enhancement, as we saw above. 1.2. WHAT IS IMAGE PROCESSING? 3 (a) The original image (b) After removing noise Figure 1.2: Removing noise from an image (a) The original image (b) After removing the blur Figure 1.3: Image deblurring 4 CHAPTER 1. INTRODUCTION From the edge result, we see that it may be necessary to enhance the original image slightly, to make the edges clearer. (a) The original image (b) Its edge image Figure 1.4: Finding edges in an image (cid:0) Removing detail from an image. For measurement or counting purposes, we may not be interestedinallthedetailinanimage. Forexample,amachineinspecteditemsonanassembly line, the only matters of interest may be shape, size or colour. For such cases, we might want to simplify the image. Figure 1.5 shows an example: in image (a) is a picture of an African bu(cid:27)alo, and image (b) shows a blurred version in which extraneous detail (like the logs of wood in the background) have been removed. Notice that in image (b) all the (cid:28)ne detail is gone; what remains is the coarse structure of the image. We could for example, measure ther size and shape of the animal without being (cid:16)distracted(cid:17) by unnecessary detail. 1.3 Images and digital images Suppose we take an image, a photo, say. For the moment, lets make things easy and suppose the photo is black and white (that is, lots of shades of grey), so no colour. We may consider this image as being a two dimensional function, where the function values give the brightness of the image at any given point, as shown in (cid:28)gure 1.6. We may assume that in such an image brightness values (cid:0)(cid:2)(cid:1)(cid:3)(cid:0) (cid:1)(cid:3)(cid:0) can be any real numbers in the range (black) to (cid:4) (white). The ranges of (cid:5) and (cid:6) will clearly depend on the image, but they can take all real values between their minima and maxima. A digital image di(cid:27)ers from a photo in that the (cid:5) , (cid:6) , and (cid:7)(cid:9)(cid:8)(cid:10)(cid:5)(cid:12)(cid:11)(cid:13)(cid:6)(cid:15)(cid:14) values are all discrete. Usually they take on only integer values, so the image shown in (cid:28)gure 1.6 will have (cid:5) and (cid:6) ranging from 1 to 256 each, and the brightness values also ranging from 0 (black) to 255 (white). A digital image can be considered as a large array of discrete dots, each of which has a brightness associated with it. These dots are called picture elements, or more simply pixels. The pixels surrounding a given pixel constitute its neighbourhood. A neighbourhood can be characterized by its shape in the same way as a matrix: we can speak of a (cid:16)(cid:18)(cid:17)(cid:19)(cid:16) neighbourhood, or of a (cid:20)(cid:21)(cid:17)(cid:23)(cid:22) neighbourhood. Except in very special circumstances, neighbourhoods have odd numbers of rows and columns; this ensures that the current pixel is in the centre of the neighbourhood. An example of a neighbourhood is 1.3. IMAGES AND DIGITAL IMAGES 5 (a) The original image (b) Blurring to remove detail Figure 1.5: Blurring an image (cid:6) (cid:0)(cid:2)(cid:1) (cid:7)(cid:9)(cid:8)(cid:10)(cid:5)(cid:12)(cid:11)(cid:13)(cid:6)(cid:15)(cid:14) (cid:3)(cid:2) (cid:1)(cid:0) (cid:5) Figure 1.6: An image as a function 6 CHAPTER 1. INTRODUCTION given in (cid:28)gure 1.7. If a neighbourhood has an even number of rows or columns (or both), it may be necessary to specify which pixel in the neighbourhood is the (cid:16)current pixel(cid:17). 48 219 168 145 244 188 120 58 49 218 87 94 133 35 17 148 174 151 74 179 224 3 252 194 77 127 87 139 44 228 149 135 138 229 136 113 250 51 108 163 Current pixel 38 210 185 177 69 76 131 53 (cid:16)(cid:21)(cid:17) (cid:20) neighbourhood 178 164 79 158 64 169 85 97 96 209 214 203 223 73 110 200 Figure 1.7: Pixels, with a neighbourhood 1.4 Some applications Imageprocessinghasanenormousrangeofapplications; almosteveryareaofscienceandtechnology can make use of image processing methods. Here is a short list just to give some indication of the range of image processing applications. 1. Medicine (cid:0) Inspection and interpretation of images obtained from X-rays, MRI or CAT scans, (cid:0) analysis of cell images, of chromosome karyotypes. 2. Agriculture (cid:0) Satellite/aerial views of land, for example to determine how much land is being used for di(cid:27)erent purposes, or to investigate the suitability of di(cid:27)erent regions for di(cid:27)erent crops, (cid:0) inspection of fruit and vegetables(cid:22)distinguishing good and fresh produce from old. 3. Industry (cid:0) Automatic inspection of items on a production line, (cid:0) inspection of paper samples. 4. Law enforcement (cid:0) Fingerprint analysis, (cid:0) sharpening or de-blurring of speed-camera images.

See more

The list of books you might like

Most books are stored in the elastic cloud where traffic is expensive. For this reason, we have a limit on daily download.