Details

A Practical Introduction to Computer Vision with OpenCV, Enhanced Edition


A Practical Introduction to Computer Vision with OpenCV, Enhanced Edition


1. Aufl.

von: Kenneth Dawson-Howe

49,48 €

Verlag: Wiley
Format: EPUB
Veröffentl.: 24.04.2014
ISBN/EAN: 9781118848814
Sprache: englisch
Anzahl Seiten: 240

DRM-geschütztes eBook, Sie benötigen z.B. Adobe Digital Editions und eine Adobe ID zum Lesen.

Beschreibungen

<p><b>Explains the theory behind basic computer vision and provides a bridge from the theory to practical implementation using the industry standard OpenCV libraries</b></p> <p>Computer Vision is a rapidly expanding area and it is becoming progressively easier for developers to make use of this field due to the ready availability of high quality libraries (such as OpenCV 2).  This text is intended to facilitate the practical use of computer vision with the goal being to bridge the gap between the theory and the practical implementation of computer vision. The book will explain how to use the relevant OpenCV library routines and will be accompanied by a full working program including the code snippets from the text. This textbook is a heavily illustrated, practical introduction to an exciting field, the applications of which are becoming almost ubiquitous.  We are now surrounded by cameras, for example cameras on computers & tablets/  cameras built into our mobile phones/  cameras in games consoles; cameras imaging difficult modalities (such as ultrasound, X-ray, MRI) in hospitals, and surveillance cameras. This book is concerned with helping the next generation of computer developers to make use of all these images in order to develop systems which are more intuitive and interact with us in more intelligent ways. </p> <ul> <li>Explains the theory behind basic computer vision and provides a bridge from the theory to practical implementation using the industry standard OpenCV libraries</li> <li>Offers an introduction to computer vision, with enough theory to make clear how the various algorithms work but with an emphasis on practical programming issues</li> <li>Provides enough material for a one semester course in computer vision at senior undergraduate and Masters levels </li> <li>Includes the basics of cameras and images and image processing to remove noise, before moving on to topics such as image histogramming; binary imaging; video processing to detect and model moving objects; geometric operations & camera models; edge detection; features detection; recognition in images</li> <li>Contains a large number of vision application problems to provide students with the opportunity to solve real problems. Images or videos for these problems are provided in the resources associated with this book which include an enhanced eBook</li> </ul>
Preface xiii <p><b>1 Introduction 1</b></p> <p>1.1 A Difficult Problem 1</p> <p>1.2 The Human Vision System 2</p> <p>1.3 Practical Applications of Computer Vision 3</p> <p>1.4 The Future of Computer Vision 5</p> <p>1.5 Material in This Textbook 6</p> <p>1.6 Going Further with Computer Vision 7</p> <p><b>2 Images 9</b></p> <p>2.1 Cameras 9</p> <p>2.1.1 The Simple Pinhole Camera Model 9</p> <p>2.2 Images 10</p> <p>2.2.1 Sampling 11</p> <p>2.2.2 Quantisation 11</p> <p>2.3 Colour Images 13</p> <p>2.3.1 Red–Green–Blue (RGB) Images 14</p> <p>2.3.2 Cyan–Magenta–Yellow (CMY) Images 17</p> <p>2.3.3 YUV Images 17</p> <p>2.3.4 Hue Luminance Saturation (HLS) Images 18</p> <p>2.3.5 Other Colour Spaces 20</p> <p>2.3.6 Some Colour Applications 20</p> <p>2.4 Noise 22</p> <p>2.4.1 Types of Noise 23</p> <p>2.4.2 Noise Models 25</p> <p>2.4.3 Noise Generation 26</p> <p>2.4.4 Noise Evaluation 26</p> <p>2.5 Smoothing 27</p> <p>2.5.1 Image Averaging 27</p> <p>2.5.2 Local Averaging and Gaussian Smoothing 28</p> <p>2.5.3 Rotating Mask 30</p> <p>2.5.4 Median Filter 31</p> <p><b>3 Histograms 35</b></p> <p>3.1 1D Histograms 35</p> <p>3.1.1 Histogram Smoothing 36</p> <p>3.1.2 Colour Histograms 37</p> <p>3.2 3D Histograms 39</p> <p>3.3 Histogram/Image Equalisation 40</p> <p>3.4 Histogram Comparison 41</p> <p>3.5 Back-projection 43</p> <p>3.6 k-means Clustering 44</p> <p><b>4 Binary Vision 49</b></p> <p>4.1 Thresholding 49</p> <p>4.1.1 Thresholding Problems 50</p> <p>4.2 Threshold Detection Methods 51</p> <p>4.2.1 Bimodal Histogram Analysis 52</p> <p>4.2.2 Optimal Thresholding 52</p> <p>4.2.3 Otsu Thresholding 54</p> <p>4.3 Variations on Thresholding 56</p> <p>4.3.1 Adaptive Thresholding 56</p> <p>4.3.2 Band Thresholding 57</p> <p>4.3.3 Semi-thresholding 58</p> <p>4.3.4 Multispectral Thresholding 58</p> <p>4.4 Mathematical Morphology 59</p> <p>4.4.1 Dilation 60</p> <p>4.4.2 Erosion 62</p> <p>4.4.3 Opening and Closing 63</p> <p>4.4.4 Grey-scale and Colour Morphology 65</p> <p>4.5 Connectivity 66</p> <p>4.5.1 Connectedness: Paradoxes and Solutions 66</p> <p>4.5.2 Connected Components Analysis 67</p> <p><b>5 Geometric Transformations 71</b></p> <p>5.1 Problem Specification and Algorithm 71</p> <p>5.2 Affine Transformations 73</p> <p>5.2.1 Known Affine Transformations 74</p> <p>5.2.2 Unknown Affine Transformations 75</p> <p>5.3 Perspective Transformations 76</p> <p>5.4 Specification of More Complex Transformations 78</p> <p>5.5 Interpolation 78</p> <p>5.5.1 Nearest Neighbour Interpolation 79</p> <p>5.5.2 Bilinear Interpolation 79</p> <p>5.5.3 Bi-Cubic Interpolation 80</p> <p>5.6 Modelling and Removing Distortion from Cameras 80</p> <p>5.6.1 Camera Distortions 81</p> <p>5.6.2 Camera Calibration and Removing Distortion 82</p> <p><b>6 Edges 83</b></p> <p>6.1 Edge Detection 83</p> <p>6.1.1 First Derivative Edge Detectors 85</p> <p>6.1.2 Second Derivative Edge Detectors 92</p> <p>6.1.3 Multispectral Edge Detection 97</p> <p>6.1.4 Image Sharpening 98</p> <p>6.2 Contour Segmentation 99</p> <p>6.2.1 Basic Representations of Edge Data 99</p> <p>6.2.2 Border Detection 102</p> <p>6.2.3 Extracting Line Segment Representations of Edge Contours 105</p> <p>6.3 Hough Transform 108</p> <p>6.3.1 Hough for Lines 109</p> <p>6.3.2 Hough for Circles 111</p> <p>6.3.3 Generalised Hough 112</p> <p><b>7 Features 115</b></p> <p>7.1 Moravec Corner Detection 117</p> <p>7.2 Harris Corner Detection 118</p> <p>7.3 FAST Corner Detection 121</p> <p>7.4 SIFT 122</p> <p>7.4.1 Scale Space Extrema Detection 123</p> <p>7.4.2 Accurate Keypoint Location 124</p> <p>7.4.3 Keypoint Orientation Assignment 126</p> <p>7.4.4 Keypoint Descriptor 127</p> <p>7.4.5 Matching Keypoints 127</p> <p>7.4.6 Recognition 127</p> <p>7.5 Other Detectors 129</p> <p>7.5.1 Minimum Eigenvalues 130</p> <p>7.5.2 SURF 130</p> <p><b>8 Recognition 131</b></p> <p>8.1 Template Matching 131</p> <p>8.1.1 Applications 131</p> <p>8.1.2 Template Matching Algorithm 133</p> <p>8.1.3 Matching Metrics 134</p> <p>8.1.4 Finding Local Maxima or Minima 135</p> <p>8.1.5 Control Strategies for Matching 137</p> <p>8.2 Chamfer Matching 137</p> <p>8.2.1 Chamfering Algorithm 137</p> <p>8.2.2 Chamfer Matching Algorithm 139</p> <p>8.3 Statistical Pattern Recognition 140</p> <p>8.3.1 Probability Review 142</p> <p>8.3.2 Sample Features 143</p> <p>8.3.3 Statistical Pattern Recognition Technique 149</p> <p>8.4 Cascade of Haar Classifiers 152</p> <p>8.4.1 Features 154</p> <p>8.4.2 Training 156</p> <p>8.4.3 Classifiers 156</p> <p>8.4.4 Recognition 158</p> <p>8.5 Other Recognition Techniques 158</p> <p>8.5.1 Support Vector Machines (SVM) 158</p> <p>8.5.2 Histogram of Oriented Gradients (HoG) 159</p> <p>8.6 Performance 160</p> <p>8.6.1 Image and Video Datasets 160</p> <p>8.6.2 Ground Truth 161</p> <p>8.6.3 Metrics for Assessing Classification Performance 162</p> <p>8.6.4 Improving Computation Time 165</p> <p><b>9 Video 167</b></p> <p>9.1 Moving Object Detection 167</p> <p>9.1.1 Object of Interest 168</p> <p>9.1.2 Common Problems 168</p> <p>9.1.3 Difference Images 169</p> <p>9.1.4 Background Models 171</p> <p>9.1.5 Shadow Detection 179</p> <p>9.2 Tracking 180</p> <p>9.2.1 Exhaustive Search 181</p> <p>9.2.2 Mean Shift 181</p> <p>9.2.3 Dense Optical Flow 182</p> <p>9.2.4 Feature Based Optical Flow 185</p> <p>9.3 Performance 186</p> <p>9.3.1 Video Datasets (and Formats) 186</p> <p>9.3.2 Metrics for Assessing Video Tracking Performance 187</p> <p><b>10 Vision Problems 189</b></p> <p>10.1 Baby Food 189</p> <p>10.2 Labels on Glue 190</p> <p>10.3 O-rings 191</p> <p>10.4 Staying in Lane 192</p> <p>10.5 Reading Notices 193</p> <p>10.6 Mailboxes 194</p> <p>10.7 Abandoned and Removed Object Detection 195</p> <p>10.8 Surveillance 196</p> <p>10.9 Traffic Lights 197</p> <p>10.10 Real Time Face Tracking 198</p> <p>10.11 Playing Pool 199</p> <p>10.12 Open Windows 200</p> <p>10.13 Modelling Doors 201</p> <p>10.14 Determining the Time from Analogue Clocks 202</p> <p>10.15 Which Page 203</p> <p>10.16 Nut/Bolt/Washer Classification 204</p> <p>10.17 Road Sign Recognition 205</p> <p>10.18 License Plates 206</p> <p>10.19 Counting Bicycles 207</p> <p>10.20 Recognise Paintings 208</p> <p>References 209</p> <p>Index 213</p>
<p>“Although there are many computer vision books on the market that offer a more comprehensive approach to explaining the computer vision concepts, extremely few offer such comprehensive practical examples. In this context, the book would be very welcome by beginner code developers."  (<i>Computing Reviews</i>, 8 August 2014)</p> <p> </p>
<b>Kenneth Dawson-Howe, School of Computer Science and Statistics, Trinity College Dublin, Ireland<br /></b>Dr. Dawson-Howe is a Lecturer in the School of Computer Science and Statistics and part of the Graphics, Vision and Visualisation (GV2) Research Group at Trinity College Dublin. He currently teaches the course <i>Computer Vision/Vision Systems</i> to final year undergraduate and Masters students. He has been teaching courses in the area of computer vision for over 20 years. He is co-author of the <i>Dictionary of Computer Vision & Image Processing </i>published by Wiley in 2005 (2<sup>nd</sup> Edition to publish December 2013).
<p>Computer Vision is a rapidly expanding area and it is becoming progressively easier for developers to make use of this field due to the ready availability of high quality libraries such as OpenCV3. This book discusses the theory behind basic computer vision and provides a bridge from the theory to practical implementation using the industry standard OpenCV libraries. It explains how to use the relevant OpenCV library routines and is accompanied by a full working program including the code snippets from the text. It is a heavily illustrated, practical introduction to an exciting field, the applications of which are becoming ubiquitous.</p> <p>Key features:</p> <ul> <li>Offers an introduction to computer vision, with enough theory to make clear how the various<br />  algorithms work but with an emphasis on practical programming issues.</li> <li>Explains the basics of cameras and images and image processing to remove noise, before moving on to topics such as image histogramming; binary imaging; video processing to detect and model moving objects; geometric operations & camera models; edge detection; feature detection; and recognition in images.</li> <li>Contains a large number of vision application problems to provide students with the opportunity to solve real problems. </li> <li>Includes a companion website hosting images and code from the book, as well as application problem videos and images which allow students to attempt to solve the problems presented in the book.</li> </ul>

Diese Produkte könnten Sie auch interessieren:

Strategies to the Prediction, Mitigation and Management of Product Obsolescence
Strategies to the Prediction, Mitigation and Management of Product Obsolescence
von: Bjoern Bartels, Ulrich Ermel, Peter Sandborn, Michael G. Pecht
PDF ebook
116,99 €