Digital image processing using MATLAB:
Gespeichert in:
Hauptverfasser: | , , |
---|---|
Format: | Buch |
Sprache: | English |
Veröffentlicht: |
Natick, Mass.
Gatesmark Publ.
2009
|
Ausgabe: | 2. ed. |
Schlagworte: | |
Online-Zugang: | Inhaltsverzeichnis |
Beschreibung: | XVIII, 826 S. Ill., graph. Darst. |
ISBN: | 9780982085400 0982085400 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV035629632 | ||
003 | DE-604 | ||
005 | 20130207 | ||
007 | t | ||
008 | 090715s2009 ad|| |||| 00||| eng d | ||
010 | |a 2009902793 | ||
020 | |a 9780982085400 |9 978-0-9820854-0-0 | ||
020 | |a 0982085400 |9 0-9-820854-0-0 | ||
035 | |a (OCoLC)603713944 | ||
035 | |a (DE-599)BSZ307657795 | ||
040 | |a DE-604 |b ger | ||
041 | 0 | |a eng | |
049 | |a DE-91G |a DE-706 |a DE-91 |a DE-29T |a DE-M347 |a DE-83 |a DE-Aug4 |a DE-20 |a DE-703 | ||
050 | 0 | |a TA1632 | |
050 | 0 | |a TA1637 | |
082 | 0 | |a 621.3678 |b G559m |2 21 | |
084 | |a ST 330 |0 (DE-625)143663: |2 rvk | ||
084 | |a ST 601 |0 (DE-625)143682: |2 rvk | ||
084 | |a DAT 306f |2 stub | ||
084 | |a DAT 760f |2 stub | ||
100 | 1 | |a Gonzalez, Rafael C. |e Verfasser |0 (DE-588)136376770 |4 aut | |
245 | 1 | 0 | |a Digital image processing using MATLAB |c Rafael C. Gonzalez ; Richard E. Woods ; Steven L. Eddins |
250 | |a 2. ed. | ||
264 | 1 | |a Natick, Mass. |b Gatesmark Publ. |c 2009 | |
300 | |a XVIII, 826 S. |b Ill., graph. Darst. | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
630 | 0 | 4 | |a MATLAB |x Image processing |x Digital techniques |
630 | 0 | 4 | |a MATLAB |x Image processing |x Mathematics |
630 | 0 | 4 | |a MATLAB |
650 | 4 | |a Mathematik | |
650 | 0 | 7 | |a MATLAB |0 (DE-588)4329066-8 |2 gnd |9 rswk-swf |
650 | 0 | 7 | |a Bildverarbeitung |0 (DE-588)4006684-8 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Bildverarbeitung |0 (DE-588)4006684-8 |D s |
689 | 0 | 1 | |a MATLAB |0 (DE-588)4329066-8 |D s |
689 | 0 | |5 DE-604 | |
700 | 1 | |a Woods, Richard E. |d 1954- |e Verfasser |0 (DE-588)136376762 |4 aut | |
700 | 1 | |a Eddins, Steven L. |e Verfasser |4 aut | |
856 | 4 | 2 | |m HBZ Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017684612&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
999 | |a oai:aleph.bib-bvb.de:BVB01-017684612 |
Datensatz im Suchindex
_version_ | 1804139304941780992 |
---|---|
adam_text | Titel: Digital image processing using MATLAB
Autor: Gonzalez, Rafael C
Jahr: 2009
Contents
Preface xi
About the Author*
I Introduction 1
Prcrtac 1
1.1 Background 1
1.2 What Is Digital Image Processing? 2
1.3 Background on MATLAB and the Image Processing Toolbox
1.4 Areas of Image Processing Covered in the Book 5
1.5 The Book Web Site 7
1.6 Notation 7
1.7 The MATLAB Desktop 7
1.7.1 Using the MATLAB Editor/Debugger 10
1.7.2 Getting Help 10
1.7.3 Saving and Retrieving Work Session Data 11
1.8 How References Are Organized in the Book 11
Summary 12
L Fundamentals 13
Prci iew 13
2.1 Digital Image Representation 13
2.1.1 Coordinate Conventions 14
2.1.2 Images as Matrices 15
2.2 Reading Images 15
2.3 Displaying Images 18
2.4 Writing Images 21
2.5 Classes 26
2.6 Image Types 27
2.6.1 Gray-scale Images 27
2.6.2 Binary Images 27
2.6.3 A Note on Terminology 28
2.7 Converting between Classes 28
2.8 Array Indexing 33
2.8.1 Indexing Vectors 33
2.8.2 Indexing Matrices 35
2.8.3 Indexing with a Single Colon 37
2.8.4 Logical Indexing 38
2.8.5 Linear Indexing 39
2.8.6 Selecting Array Dimensions 42
vi ¦ Contents
2.8.7 Sparse Matrices 42
2.9 Some Important Standard Arrays 43
2.10 Introduction to M-Function Programming 44
2.10.1 M-Files 44
2.10.2 Operators 46
2.10.3 Flow Control 57
2.10.4 Function Handles 63
2.10.5 Code Optimization 65
2.10.6 Interactive I/O 71
2.10.7 An Introduction to Cell Arrays and Structures 74
Summary 79
J Intensity Transformations and
Spatial Filtering 80
Preview 80
3.1 Background 80
3.2 Intensity Transformation Functions 81
3.2.1 Functions imadjust and stretchlim 82
3.2.2 Logarithmic and Contrast-Stretching Transformations 84
3.2.3 Specifying Arbitrary Intensity Transformations 86
3.2.4 Some Utility M-functions for Intensity Transformations 87
3.3 Histogram Processing and Function Plotting 93
3.3.1 Generating and Plotting Image Histograms 94
3.3.2 Histogram Equalization 99
3.3.3 Histogram Matching (Specification) 102
3.3.4 Function adapt histeq 107
3.4 Spatial Filtering 109
3.4.1 Linear Spatial Filtering 109
3.4.2 Nonlinear Spatial Filtering 117
3.5 Image Processing Toolbox Standard Spatial Filters 120
3.5.1 Linear Spatial Filters 120
3.5.2 Nonlinear Spatial Filters 124
3.6 Using Fuzzy Techniques for Intensity Transformations and Spatial
Filtering 128
3.6.1 Background 128
3.6.2 Introduction to Fuzzy Sets 128
3.6.3 Using Fuzzy Sets 133
3.6.4 A Set of Custom Fuzzy M-functions 140
3.6.5 Using Fuzzy Sets for Intensity Transformations 155
3.6.6 Using Fuzzy Sets for Spatial Filtering 158
Summary 163
4
Filtering in the Frequency Domain 164
Preview 164
Contents vii
4.1 The 2-D Discrete Fourier Transform 164
4.2 Computing and Visualizing the 2-D DFT in MATLAB 168
4.3 Filtering in the Frequency Domain 172
4.3.1 Fundamentals 173
4.3.2 Basic Steps in DFT Filtering 178
4.3.3 An M-function for Filtering in the Frequency Domain 179
4.4 Obtaining Frequency Domain Filters from Spatial Filters 180
4.5 Generating Filters Directly in the Frequency Domain 185
4.5.1 Creating Meshgrid Arrays for Use in Implementing Filters
in the Frequency Domain 186
4.5.2 Lowpass (Smoothing) Frequency Domain Filters 187
4.5.3 Wireframe and Surface Plotting 190
4.6 Highpass (Sharpening) Frequency Domain Filters 194
4.6.1 A Function for Highpass Filtering 194
4.6.2 High-Frequency Emphasis Filtering 197
4.7 Selective Filtering 199
4.7.1 Bandreject and Bandpass Filters 199
4.7.2 Notchreject and Notchpass Filters 202
Summary 208
J Image Restoration and Reconstruction 209
Preview 209
5.1 A Model of the Image Degradation/Restoration Process 210
5.2 Noise Models 211
5.2.1 Adding Noise to Images with Function imnoise 211
5.2.2 Generating Spatial Random Noise with a Specified
Distribution 212
5.2.3 Periodic Noise 220
5.2.4 Estimating Noise Parameters 224
5.3 Restoration in the Presence of Noise Only?Spatial Filtering 229
5.3.1 Spatial Noise Filters 229
5.3.2 Adaptive Spatial Filters 233
5.4 Periodic Noise Reduction Using Frequency Domain Filtering 236
5.5 Modeling the Degradation Function 237
5.6 Direct Inverse Filtering 240
5.7 Wiener Filtering 240
5.8 Constrained Least Squares (Regularized) Filtering 244
5.9 Iterative Nonlinear Restoration Using the Lucy-Richardson
Algorithm 246
5.10 Blind Deconvolution 250
5.11 Image Reconstruction from Projections 251
5.11.1 Background 252
5.11.2 Parallel-Beam Projections and the Radon Transform 254
5.11.3 The Fourier Slice Theorem and Filtered Backprojections 257
5.11.4 Filter Implementation 258
iii ¦ Contents
5.11.5 Reconstruction Using Fan-Beam Filtered Backprojections 259
5.11.6 Function radon 260
5.11.7 Function iradon 263
5.11.8 Working with Fan-Beam Data 268
Summary 277
0 Geometric Transformations and Image
Registration 278
Preview 278
6.1 Transforming Points 278
6.2 Affine Transformations 283
6.3 Projective Transformations 287
6.4 Applying Geometric Transformations to Images 288
6.5 Image Coordinate Systems in MATLAB 291
6.5.1 Output Image Location 293
6.5.2 Controlling the Output Grid 297
6.6 Image Interpolation 299
6.6.1 Interpolation in Two Dimensions 302
6.6.2 Comparing Interpolation Methods 302
6.7 Image Registration 305
6.7.1 Registration Process 306
6.7.2 Manual Feature Selection and Matching Using cpselect 306
6.7.3 Inferring Transformation Parameters Using cp2t form 307
6.7.4 Visualizing Aligned Images 307
6.7.5 Area-Based Registration 311
6.7.6 Automatic Feature-Based Registration 316
Summary 317
7
Color Image Processing 318
Preview 318
7.1 Color Image Representation in MATLAB 318
7.1.1 RGB Images 318
7.1.2 Indexed Images 321
7.1.3 Functions for Manipulating RGB and Indexed Images 323
7.2 Converting Between Color Spaces 328
7.2.1 NTSC Color Space 328
7.2.2 The YCbCr Color Space 329
7.2.3 The HSV Color Space 329
7.2.4 The CMY and CMYK Color Spaces 330
7.2.5 The HSI Color Space 331
7.2.6 Device-Independent Color Spaces 340
73 The Basics of Color Image Processing 349
7.4 Color Transformations 350
7.5 Spatial Filtering of Color Images 360
Contents ix
7.5.1 Color Image Smoothing 360
7.5.2 Color Image Sharpening 365
7.6 Working Directly in RGB Vector Space 366
7.6.1 Color Edge Detection Using the Gradient 366
7.6.2 Image Segmentation in RGB Vector Space 372
Summary 376
0 Wavelets 377
Preview 377
8.1 Background 377
8.2 The Fast Wavelet Transform 380
8.2.1 FWTs Using the Wavelet Toolbox 381
8.2.2 FWTs without the Wavelet Toolbox 387
8.3 Working with Wavelet Decomposition Structures 396
8.3.1 Editing Wavelet Decomposition Coefficients without the
Wavelet Toolbox 399
8.3.2 Displaying Wavelet Decomposition Coefficients 404
8.4 The Inverse Fast Wavelet Transform 408
8.5 Wavelets in Image Processing 414
Summary 419
J Image Compression 420
Preview 420
9.1 Background 421
9.2 Coding Redundancy 424
9.2.1 Huffman Codes 427
9.2.2 Huffman Encoding 433
9.2.3 Huffman Decoding 439
9.3 Spatial Redundancy 446
9.4 Irrelevant Information 453
9.5 JPEG Compression 456
9.5.1 JPEG 456
9.5.2 JPEG 2000 464
9.6 Video Compression 472
9.6.1 MATLAB Image Sequences and Movies 473
9.6.2 Temporal Redundancy and Motion Compensation 476
Summary 485
IU Morphological Image Processing 486
Preview 486
10.1 Preliminaries 487
10.1.1 Some Basic Concepts from Set Theory 487
10.1.2 Binary Images, Sets, and Logical Operators 489
10.2 Dilation and Erosion 490
Contents
10.2.1 Dilation 490
10.2.2 Structuring Element Decomposition 493
10.2.3 The st rel Function 494
10.2.4 Erosion 497
10.3 Combining Dilation and Erosion 500
10.3.1 Opening and Closing 500
10.3.2 The Hit-or-Miss Transformation 503
10.3.3 Using Lookup Tables 506
10.3.4 Function bwmorph 511
10.4 Labeling Connected Components 514
10.5 Morphological Reconstruction 518
10.5.1 Opening by Reconstruction 518
10.5.2 Filling Holes 520
10.5.3 Clearing Border Objects 521
10.6 Gray-Scale Morphology 521
10.6.1 Dilation and Erosion 521
10.6.2 Opening and Closing 524
10.6.3 Reconstruction 530
Summary 534
11 Image Segmentation 535
Preview 535
11.1 Point, Line, and Edge Detection 536
11.1.1 Point Detection 536
11.1.2 Line Detection 538
11.1.3 Edge Detection Using Function edge 541
11.2 Line Detection Using the Hough Transform 549
11.2.1 Background 551
11.2.2 Toolbox Hough Functions 552
11.3 Thresholding 557
11.3.1 Foundation 557
11.3.2 Basic Global Thresholding 559
11.3.3 Optimum Global Thresholding Using Otsu s Method 561
11.3.4 Using Image Smoothing to Improve Global Thresholding 565
11.3.5 Using Edges to Improve Global Thresholding 567
11.3.6 Variable Thresholding Based on Local Statistics 571
11.3.7 Image Thresholding Using Moving Averages 575
11.4 Region-Based Segmentation 578
11.4.1 Basic Formulation 578
11.4.2 Region Growing 578
11.4.3 Region Splitting and Merging 582
11.5 Segmentation Using the Watershed Transform 588
11.5.1 Watershed Segmentation Using the Distance Transform 589
11.5.2 Watershed Segmentation Using Gradients 591
11.5.3 Marker-Controlled Watershed Segmentation 593
Summary 596
IL Representation and Description 597
Preview 597
12.1 Background 597
12.1.1 Functions for Extracting Regions and Their Boundaries 598
12.1.2 Some Additional MATLAB and Toolbox Functions Used
in This Chapter 603
12.1.3 Some Basic Utility M-Functions 604
12.2 Representation 606
12.2.1 Chain Codes 606
12.2.2 Polygonal Approximations Using Minimum-Perimeter
Polygons 610
12.2.3 Signatures 619
12.2.4 Boundary Segments 622
12.2.5 Skeletons 623
12.3 Boundary Descriptors 625
12.3.1 Some Simple Descriptors 625
12.3.2 Shape Numbers 626
12.3.3 Fourier Descriptors 627
12.3.4 Statistical Moments 632
12.3.5 Corners 633
12.4 Regional Descriptors 641
12.4.1 Function regionprops 642
12.4.2 Texture 644
12.4.3 Moment Invariants 656
12.5 Using Principal Components for Description 661
Summary 672
IJ Object Recognition 674
Preview 674
13.1 Background 674
13.2 Computing Distance Measures in MATLAB 675
13.3 Recognition Based on Decision-Theoretic Methods 679
13.3.1 Forming Pattern Vectors 680
13.3.2 Pattern Matching Using Minimum-Distance Classifiers 680
13.3.3 Matching by Correlation 681
13.3.4 Optimum Statistical Classifiers 684
13.3.5 Adaptive Learning Systems 691
13.4 Structural Recognition 691
13.4.1 Working with Strings in MATLAB 692
13.4.2 String Matching 701
Summary 706
XI
Appendix A M-Function Sugary 707
Appendix B ICE and MATLAB Graphical User
Interfaces 724
Appendix C Additional Custom
M-functions 750
Bibliography 813
Index 817
|
any_adam_object | 1 |
author | Gonzalez, Rafael C. Woods, Richard E. 1954- Eddins, Steven L. |
author_GND | (DE-588)136376770 (DE-588)136376762 |
author_facet | Gonzalez, Rafael C. Woods, Richard E. 1954- Eddins, Steven L. |
author_role | aut aut aut |
author_sort | Gonzalez, Rafael C. |
author_variant | r c g rc rcg r e w re rew s l e sl sle |
building | Verbundindex |
bvnumber | BV035629632 |
callnumber-first | T - Technology |
callnumber-label | TA1632 |
callnumber-raw | TA1632 TA1637 |
callnumber-search | TA1632 TA1637 |
callnumber-sort | TA 41632 |
callnumber-subject | TA - General and Civil Engineering |
classification_rvk | ST 330 ST 601 |
classification_tum | DAT 306f DAT 760f |
ctrlnum | (OCoLC)603713944 (DE-599)BSZ307657795 |
dewey-full | 621.3678 |
dewey-hundreds | 600 - Technology (Applied sciences) |
dewey-ones | 621 - Applied physics |
dewey-raw | 621.3678 |
dewey-search | 621.3678 |
dewey-sort | 3621.3678 |
dewey-tens | 620 - Engineering and allied operations |
discipline | Informatik Elektrotechnik / Elektronik / Nachrichtentechnik |
edition | 2. ed. |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01959nam a2200517 c 4500</leader><controlfield tag="001">BV035629632</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20130207 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">090715s2009 ad|| |||| 00||| eng d</controlfield><datafield tag="010" ind1=" " ind2=" "><subfield code="a">2009902793</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9780982085400</subfield><subfield code="9">978-0-9820854-0-0</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">0982085400</subfield><subfield code="9">0-9-820854-0-0</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)603713944</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)BSZ307657795</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">eng</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-91G</subfield><subfield code="a">DE-706</subfield><subfield code="a">DE-91</subfield><subfield code="a">DE-29T</subfield><subfield code="a">DE-M347</subfield><subfield code="a">DE-83</subfield><subfield code="a">DE-Aug4</subfield><subfield code="a">DE-20</subfield><subfield code="a">DE-703</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">TA1632</subfield></datafield><datafield tag="050" ind1=" " ind2="0"><subfield code="a">TA1637</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">621.3678</subfield><subfield code="b">G559m</subfield><subfield code="2">21</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 330</subfield><subfield code="0">(DE-625)143663:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 601</subfield><subfield code="0">(DE-625)143682:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 306f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 760f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Gonzalez, Rafael C.</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)136376770</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Digital image processing using MATLAB</subfield><subfield code="c">Rafael C. Gonzalez ; Richard E. Woods ; Steven L. Eddins</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">2. ed.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Natick, Mass.</subfield><subfield code="b">Gatesmark Publ.</subfield><subfield code="c">2009</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">XVIII, 826 S.</subfield><subfield code="b">Ill., graph. Darst.</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="630" ind1="0" ind2="4"><subfield code="a">MATLAB</subfield><subfield code="x">Image processing</subfield><subfield code="x">Digital techniques</subfield></datafield><datafield tag="630" ind1="0" ind2="4"><subfield code="a">MATLAB</subfield><subfield code="x">Image processing</subfield><subfield code="x">Mathematics</subfield></datafield><datafield tag="630" ind1="0" ind2="4"><subfield code="a">MATLAB</subfield></datafield><datafield tag="650" ind1=" " ind2="4"><subfield code="a">Mathematik</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">MATLAB</subfield><subfield code="0">(DE-588)4329066-8</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Bildverarbeitung</subfield><subfield code="0">(DE-588)4006684-8</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Bildverarbeitung</subfield><subfield code="0">(DE-588)4006684-8</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2="1"><subfield code="a">MATLAB</subfield><subfield code="0">(DE-588)4329066-8</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Woods, Richard E.</subfield><subfield code="d">1954-</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)136376762</subfield><subfield code="4">aut</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Eddins, Steven L.</subfield><subfield code="e">Verfasser</subfield><subfield code="4">aut</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">HBZ Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017684612&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-017684612</subfield></datafield></record></collection> |
id | DE-604.BV035629632 |
illustrated | Illustrated |
indexdate | 2024-07-09T21:41:58Z |
institution | BVB |
isbn | 9780982085400 0982085400 |
language | English |
lccn | 2009902793 |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-017684612 |
oclc_num | 603713944 |
open_access_boolean | |
owner | DE-91G DE-BY-TUM DE-706 DE-91 DE-BY-TUM DE-29T DE-M347 DE-83 DE-Aug4 DE-20 DE-703 |
owner_facet | DE-91G DE-BY-TUM DE-706 DE-91 DE-BY-TUM DE-29T DE-M347 DE-83 DE-Aug4 DE-20 DE-703 |
physical | XVIII, 826 S. Ill., graph. Darst. |
publishDate | 2009 |
publishDateSearch | 2009 |
publishDateSort | 2009 |
publisher | Gatesmark Publ. |
record_format | marc |
spelling | Gonzalez, Rafael C. Verfasser (DE-588)136376770 aut Digital image processing using MATLAB Rafael C. Gonzalez ; Richard E. Woods ; Steven L. Eddins 2. ed. Natick, Mass. Gatesmark Publ. 2009 XVIII, 826 S. Ill., graph. Darst. txt rdacontent n rdamedia nc rdacarrier MATLAB Image processing Digital techniques MATLAB Image processing Mathematics MATLAB Mathematik MATLAB (DE-588)4329066-8 gnd rswk-swf Bildverarbeitung (DE-588)4006684-8 gnd rswk-swf Bildverarbeitung (DE-588)4006684-8 s MATLAB (DE-588)4329066-8 s DE-604 Woods, Richard E. 1954- Verfasser (DE-588)136376762 aut Eddins, Steven L. Verfasser aut HBZ Datenaustausch application/pdf http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017684612&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA Inhaltsverzeichnis |
spellingShingle | Gonzalez, Rafael C. Woods, Richard E. 1954- Eddins, Steven L. Digital image processing using MATLAB MATLAB Image processing Digital techniques MATLAB Image processing Mathematics MATLAB Mathematik MATLAB (DE-588)4329066-8 gnd Bildverarbeitung (DE-588)4006684-8 gnd |
subject_GND | (DE-588)4329066-8 (DE-588)4006684-8 |
title | Digital image processing using MATLAB |
title_auth | Digital image processing using MATLAB |
title_exact_search | Digital image processing using MATLAB |
title_full | Digital image processing using MATLAB Rafael C. Gonzalez ; Richard E. Woods ; Steven L. Eddins |
title_fullStr | Digital image processing using MATLAB Rafael C. Gonzalez ; Richard E. Woods ; Steven L. Eddins |
title_full_unstemmed | Digital image processing using MATLAB Rafael C. Gonzalez ; Richard E. Woods ; Steven L. Eddins |
title_short | Digital image processing using MATLAB |
title_sort | digital image processing using matlab |
topic | MATLAB Image processing Digital techniques MATLAB Image processing Mathematics MATLAB Mathematik MATLAB (DE-588)4329066-8 gnd Bildverarbeitung (DE-588)4006684-8 gnd |
topic_facet | MATLAB Image processing Digital techniques MATLAB Image processing Mathematics MATLAB Mathematik Bildverarbeitung |
url | http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=017684612&sequence=000002&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT gonzalezrafaelc digitalimageprocessingusingmatlab AT woodsricharde digitalimageprocessingusingmatlab AT eddinsstevenl digitalimageprocessingusingmatlab |