SlideShare une entreprise Scribd logo
1  sur  80
Introduction toIntroduction to
Digital ImageDigital Image
ProcessingProcessing
Digital Image ProcessingDigital Image Processing
• Digital image processing is the use of computer
algorithms to perform image processing on
digital images.
Taken from Wikipedia
Why should we care?Why should we care?
• Everyone has a digital camera
• Everyone shares photos and videos
• Concepts can be used in videogames
• Robotics
• New technologies (Google Glass, Oculus Rift)
• Useful in other fields of science (medical
imaging, astronomy)
• Many frameworks for image processing
• It’s just fun
What is a digital image?What is a digital image?
A Pixel!!!!A Pixel!!!!
Pixel!!!!Pixel!!!!
IR y UVIR y UV
Representing PixelsRepresenting Pixels
Representing Pixels: 2Representing Pixels: 2
Representing Pixels: 4Representing Pixels: 4
Representing Pixels: 8Representing Pixels: 8
Representing Pixels: 16Representing Pixels: 16
Representing Pixels: 32Representing Pixels: 32
Representing Pixels: 64Representing Pixels: 64
Representing Pixels: 128Representing Pixels: 128
Representing Pixels: 256Representing Pixels: 256
Colors: RGB spaceColors: RGB space
Colors: RGBColors: RGB
Lab: Image loading, colorLab: Image loading, color
channelschannels
img = imread ( 'Desktop/guitarra.jpg' );
img_size = size ( img )
img_red = uint8 ( zeros ( img_size ) );
img_green = uint8 ( zeros (img_size) );
img_blue = uint8 ( zeros ( img_size ) );
Lab: Image loading, colorLab: Image loading, color
channelschannels
img_red (:, :, 1 ) = img ( :, :, 1 );
img_green (:, :, 2 ) = img ( :, :, 2 );
img_blue (:, :, 3 ) = img ( :, :, 3 );
imshow ( img );
imshow ( img_red );
imshow ( img_green );
imshow ( img_blue );
Lab: Image loading, colorLab: Image loading, color
channelschannels
img = rgb2gray ( img );
imshow ( img );
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Imagen: Matriz de PixelesImagen: Matriz de Pixeles
Imagen: Matriz de PixelesImagen: Matriz de Pixeles
Imagen: Matriz de PixelesImagen: Matriz de Pixeles
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Lab: Gamma CorrectLab: Gamma Correct
function output = gcorrect ( i, g )
i = double ( i );
output = ( i / 255).^g * 255;
output = uint8 ( output );
end;
imshow ( gcorrect (img, 2 ) );
imshow ( gcorrect (img, 0.5 ) );
Guess the PixelGuess the Pixel
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Imagen: Matriz de PixelesImagen: Matriz de Pixeles
Image: Matrix of Pixel ValuesImage: Matrix of Pixel Values
Image: Pixel NeighborhoodImage: Pixel Neighborhood
• Every pixel has neighbors
Image: Pixel NeighborhoodImage: Pixel Neighborhood
Image: Pixel NeighborhoodImage: Pixel Neighborhood
Image: Pixel NeighborhoodImage: Pixel Neighborhood
5 8 7
4 1 6
3 2 9
1 2 3 4 5 6 7 8 95
Lab: Median FilterLab: Median Filter
img_noise = imnoise (img, 'salt & pepper', 0.4);
imshow ( img_noise );
img_filt = medfilt2 ( img_noise );
imshow ( img_filt );
Image: Pixel NeighborhoodImage: Pixel Neighborhood
Image: Pixel NeighborhoodImage: Pixel Neighborhood
5x5 9x9 13x13 17x17 21x21 25x25 29x29
Image: Pixel NeighborhoodImage: Pixel Neighborhood
Image: Pixel NeighborhoodImage: Pixel Neighborhood
Image: Pixel NeighborhoodImage: Pixel Neighborhood
Image: f(x,y)Image: f(x,y)
Imagen: f(x,y)Imagen: f(x,y)
Image: f(x,y)Image: f(x,y)
Image: f(x,y)Image: f(x,y)
Image: f(x,y)Image: f(x,y)
Image: f(x,y)Image: f(x,y)
Image: f(x,y)Image: f(x,y)
Laplacian Derivative
Imagen: f(x,y)Imagen: f(x,y)
Image: f(x,y)Image: f(x,y)
Image: f(x,y)Image: f(x,y)
Image: f(x,y), Gradients, SobelImage: f(x,y), Gradients, Sobel
Image: f(x,y), Gradients, SobelImage: f(x,y), Gradients, Sobel
Image: f(x,y), Gradients, SobelImage: f(x,y), Gradients, Sobel
Image: f(x,y), Gradients, SobelImage: f(x,y), Gradients, Sobel
Image: f(x,y), Gradients, SobelImage: f(x,y), Gradients, Sobel
Image: f(x,y), Gradients, SobelImage: f(x,y), Gradients, Sobel
Lab: Edge DetectionLab: Edge Detection
Step 1: Create a Gauss filter
gauss_fil = [
2 4 5 4 2
4 9 12 9 4
5 12 15 12 5
4 9 12 9 4
2 4 5 4 2 ]
sum ( sum (gauss_fil ) )
gauss_fil = gauss_fil / 159
Lab: Edge DetectionLab: Edge Detection
Step 2: Apply Gauss filter
img_blur = conv2 ( double ( img ), gauss_fil );
img_blur = uint8 ( img_blur );
figure, imshow ( img ), figure, imshow ( img_blur );
Lab: Edge DetectionLab: Edge Detection
Step 3: Create kernels to calculate gradient
ker_gx = [
-1 0 1
-2 0 2
-1 0 1 ]
ker_gy = [
1 2 1
0 0 0
-1 -2 -1]
Lab: Edge DetectionLab: Edge Detection
Step 4: Calculate gradient
gx = conv2 ( double ( img ), ker_gx );
gy = conv2 ( double ( img ), ker_gy );
img_g = abs( gx ) + abs( gy );
img_g = uint8 ( img_g );
imshow ( img_g );
Lab: Edge DetectionLab: Edge Detection
Step 5: Suppression of non-maxima
Lab: Edge DetectionLab: Edge Detection
Step 6: Two thresholds
Step 7: Hysteresis
img_c = edge (img, 'canny' );
figure, imshow(img_g), figure, imshow ( img_c );
Image: f(x,y), Hough TransformImage: f(x,y), Hough Transform
Image: f(x,y), Hough TransformImage: f(x,y), Hough Transform
0 45 90 135
1
2
3
4
5
6
7
Imagen: f(x,y), Transformada deImagen: f(x,y), Transformada de
HoughHough
Image: f(x,y), Hough TransformImage: f(x,y), Hough Transform
Lab: Segment DetectionLab: Segment Detection
• Visit: www.ipol.im
• Segmentation and Edges
• LDS: a Line Segment Detector
Lab: SegmentationLab: Segmentation
• Visit: www.ipol.im
• Segmentation and Edges
• Chan-Vese Segmentation
• Consider: A Real Time Morphological Snakes
Algorithm
Things to ConsiderThings to Consider
• Quadtrees
• Review Graph Theory (Laplace, Gradiantes,
Watersheds)
– Strongly Connected Components
– Minimum Cut Algorithm
• Gather feedback from the user (make the user
select areas or faces)
• Sparse Modeling
• Machine Learning
WatershedsWatersheds
Solving a Maze with ImageSolving a Maze with Image
Processing?Processing?
Solving a Maze with ImageSolving a Maze with Image
Processing?Processing?
Solving a Maze with ImageSolving a Maze with Image
Processing?Processing?
Usefool ToolsUsefool Tools
• Matlab / Octave
• Mathematica
• OpenCV
• ipol.im
• Python
• Photoshop
Thanks for watching.Thanks for watching.
• Email: jseaman@squadventure.com
• Twitter: @jseaman76
• G+: jseaman76@gmail.com
• FB: www.facebook.com/julio.seaman

Contenu connexe

En vedette

Design a passion project in three hours using Lean Start-up methods
Design a passion project in three hours using Lean Start-up methodsDesign a passion project in three hours using Lean Start-up methods
Design a passion project in three hours using Lean Start-up methodsKate Rutter
 
AAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognitionAAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognitionzukun
 
Digital Hologram Image Processing
Digital Hologram Image ProcessingDigital Hologram Image Processing
Digital Hologram Image ProcessingConor Mc Elhinney
 
Performance of Statistics Based Line Segmentation System for Unconstrained H...
Performance of Statistics Based Line Segmentation  System for Unconstrained H...Performance of Statistics Based Line Segmentation  System for Unconstrained H...
Performance of Statistics Based Line Segmentation System for Unconstrained H...AM Publications
 
/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1
/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1
/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1Dr. Jai Sakthi
 
Unified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-Connection
Unified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-ConnectionUnified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-Connection
Unified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-Connectioniosrjce
 
Digital Image Processing (DIP)
Digital Image Processing (DIP)Digital Image Processing (DIP)
Digital Image Processing (DIP)Srikanth VNV
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image ProcessingSamir Sabry
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image ProcessingShaleen Saini
 
How to find Product Market Fit - Founder Institute
How to find Product Market Fit - Founder InstituteHow to find Product Market Fit - Founder Institute
How to find Product Market Fit - Founder InstituteJustin Wilcox
 
Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...
Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...
Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...Lean Startup Co.
 
EIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market Fit
EIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market FitEIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market Fit
EIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market FitEuropean Innovation Academy
 
A Playbook for Achieving Product-Market Fit
A Playbook for Achieving Product-Market FitA Playbook for Achieving Product-Market Fit
A Playbook for Achieving Product-Market FitLean Startup Co.
 
Shrinkage methods
Shrinkage methodsShrinkage methods
Shrinkage methodsLuca Vitale
 
digital image processing, image processing
digital image processing, image processingdigital image processing, image processing
digital image processing, image processingKalyan Acharjya
 
Color image processing Presentation
Color image processing PresentationColor image processing Presentation
Color image processing PresentationRevanth Chimmani
 
Product Market Fit
Product Market FitProduct Market Fit
Product Market FitYenwen Feng
 

En vedette (20)

Design a passion project in three hours using Lean Start-up methods
Design a passion project in three hours using Lean Start-up methodsDesign a passion project in three hours using Lean Start-up methods
Design a passion project in three hours using Lean Start-up methods
 
AAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognitionAAAI08 tutorial: visual object recognition
AAAI08 tutorial: visual object recognition
 
Digital Hologram Image Processing
Digital Hologram Image ProcessingDigital Hologram Image Processing
Digital Hologram Image Processing
 
Performance of Statistics Based Line Segmentation System for Unconstrained H...
Performance of Statistics Based Line Segmentation  System for Unconstrained H...Performance of Statistics Based Line Segmentation  System for Unconstrained H...
Performance of Statistics Based Line Segmentation System for Unconstrained H...
 
/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1
/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1
/.Amd mnt/lotus/host/home/jaishakthi/presentation/rmeet1/rmeet 1
 
Image processing tutorial
Image processing tutorialImage processing tutorial
Image processing tutorial
 
Unified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-Connection
Unified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-ConnectionUnified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-Connection
Unified Contact Riemannian Manifold Admitting SemiSymmetric Metric S-Connection
 
Digital Image Processing (DIP)
Digital Image Processing (DIP)Digital Image Processing (DIP)
Digital Image Processing (DIP)
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image Processing
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image Processing
 
How to find Product Market Fit - Founder Institute
How to find Product Market Fit - Founder InstituteHow to find Product Market Fit - Founder Institute
How to find Product Market Fit - Founder Institute
 
Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...
Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...
Design Your Way to Product/Market Fit by Christina Wodtke - The Lean Startup ...
 
EIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market Fit
EIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market FitEIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market Fit
EIA2016Turin - Anand Kulkarni. The Holy Grail of Product-Market Fit
 
A Playbook for Achieving Product-Market Fit
A Playbook for Achieving Product-Market FitA Playbook for Achieving Product-Market Fit
A Playbook for Achieving Product-Market Fit
 
image theory
image theoryimage theory
image theory
 
Shrinkage methods
Shrinkage methodsShrinkage methods
Shrinkage methods
 
digital image processing, image processing
digital image processing, image processingdigital image processing, image processing
digital image processing, image processing
 
Color image processing Presentation
Color image processing PresentationColor image processing Presentation
Color image processing Presentation
 
Image compression Algorithms
Image compression AlgorithmsImage compression Algorithms
Image compression Algorithms
 
Product Market Fit
Product Market FitProduct Market Fit
Product Market Fit
 

Similaire à Introduction to Digital Image Processing

Introduction to Image Processing with MATLAB
Introduction to Image Processing with MATLABIntroduction to Image Processing with MATLAB
Introduction to Image Processing with MATLABSriram Emarose
 
CE344L-200365-Lab5.pdf
CE344L-200365-Lab5.pdfCE344L-200365-Lab5.pdf
CE344L-200365-Lab5.pdfUmarMustafa13
 
ImageProcessingWithMatlab(HasithaEdiriweera)
ImageProcessingWithMatlab(HasithaEdiriweera)ImageProcessingWithMatlab(HasithaEdiriweera)
ImageProcessingWithMatlab(HasithaEdiriweera)Hasitha Ediriweera
 
chapter-2 SPACIAL DOMAIN.pptx
chapter-2 SPACIAL DOMAIN.pptxchapter-2 SPACIAL DOMAIN.pptx
chapter-2 SPACIAL DOMAIN.pptxAyeleFeyissa1
 
Image processing for robotics
Image processing for roboticsImage processing for robotics
Image processing for roboticsSALAAMCHAUS
 
Using the code below- I need help with creating code for the following.pdf
Using the code below- I need help with creating code for the following.pdfUsing the code below- I need help with creating code for the following.pdf
Using the code below- I need help with creating code for the following.pdfacteleshoppe
 
HTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGLHTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGLThibaut Despoulain
 
Class[6][5th aug] [three js-loaders]
Class[6][5th aug] [three js-loaders]Class[6][5th aug] [three js-loaders]
Class[6][5th aug] [three js-loaders]Saajid Akram
 
Intro to computer vision in .net
Intro to computer vision in .netIntro to computer vision in .net
Intro to computer vision in .netStephen Lorello
 
HTML5 Canvas - Let's Draw!
HTML5 Canvas - Let's Draw!HTML5 Canvas - Let's Draw!
HTML5 Canvas - Let's Draw!Phil Reither
 
downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...
downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...
downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...Saeed Ullah
 
Help me fix the error shown above in my code of image.cpp please~I.pdf
Help me fix the error shown above in my code of image.cpp please~I.pdfHelp me fix the error shown above in my code of image.cpp please~I.pdf
Help me fix the error shown above in my code of image.cpp please~I.pdffedosys
 
Lecture01 intro ece
Lecture01 intro eceLecture01 intro ece
Lecture01 intro eceKesava Shiva
 
Creating an Uber Clone - Part IV - Transcript.pdf
Creating an Uber Clone - Part IV - Transcript.pdfCreating an Uber Clone - Part IV - Transcript.pdf
Creating an Uber Clone - Part IV - Transcript.pdfShaiAlmog1
 
image_enhancement_spatial
 image_enhancement_spatial image_enhancement_spatial
image_enhancement_spatialhoneyjecrc
 
StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....
StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....
StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....OthmaneABOUELAECHA
 
Dital Image Processing (Lab 2+3+4)
Dital Image Processing (Lab 2+3+4)Dital Image Processing (Lab 2+3+4)
Dital Image Processing (Lab 2+3+4)Moe Moe Myint
 

Similaire à Introduction to Digital Image Processing (20)

Dip 2
Dip 2Dip 2
Dip 2
 
Introduction to Image Processing with MATLAB
Introduction to Image Processing with MATLABIntroduction to Image Processing with MATLAB
Introduction to Image Processing with MATLAB
 
CE344L-200365-Lab5.pdf
CE344L-200365-Lab5.pdfCE344L-200365-Lab5.pdf
CE344L-200365-Lab5.pdf
 
ImageProcessingWithMatlab(HasithaEdiriweera)
ImageProcessingWithMatlab(HasithaEdiriweera)ImageProcessingWithMatlab(HasithaEdiriweera)
ImageProcessingWithMatlab(HasithaEdiriweera)
 
chapter-2 SPACIAL DOMAIN.pptx
chapter-2 SPACIAL DOMAIN.pptxchapter-2 SPACIAL DOMAIN.pptx
chapter-2 SPACIAL DOMAIN.pptx
 
Test
TestTest
Test
 
Image processing for robotics
Image processing for roboticsImage processing for robotics
Image processing for robotics
 
Using the code below- I need help with creating code for the following.pdf
Using the code below- I need help with creating code for the following.pdfUsing the code below- I need help with creating code for the following.pdf
Using the code below- I need help with creating code for the following.pdf
 
HTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGLHTML5 game dev with three.js - HexGL
HTML5 game dev with three.js - HexGL
 
Point Processing
Point ProcessingPoint Processing
Point Processing
 
Class[6][5th aug] [three js-loaders]
Class[6][5th aug] [three js-loaders]Class[6][5th aug] [three js-loaders]
Class[6][5th aug] [three js-loaders]
 
Intro to computer vision in .net
Intro to computer vision in .netIntro to computer vision in .net
Intro to computer vision in .net
 
HTML5 Canvas - Let's Draw!
HTML5 Canvas - Let's Draw!HTML5 Canvas - Let's Draw!
HTML5 Canvas - Let's Draw!
 
downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...
downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...
downsampling and upsampling of an image using pyramids (pyr up and pyrdown me...
 
Help me fix the error shown above in my code of image.cpp please~I.pdf
Help me fix the error shown above in my code of image.cpp please~I.pdfHelp me fix the error shown above in my code of image.cpp please~I.pdf
Help me fix the error shown above in my code of image.cpp please~I.pdf
 
Lecture01 intro ece
Lecture01 intro eceLecture01 intro ece
Lecture01 intro ece
 
Creating an Uber Clone - Part IV - Transcript.pdf
Creating an Uber Clone - Part IV - Transcript.pdfCreating an Uber Clone - Part IV - Transcript.pdf
Creating an Uber Clone - Part IV - Transcript.pdf
 
image_enhancement_spatial
 image_enhancement_spatial image_enhancement_spatial
image_enhancement_spatial
 
StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....
StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....
StoryVisualization using StoryGAN implemented by pytorch on Pororro Dataset​....
 
Dital Image Processing (Lab 2+3+4)
Dital Image Processing (Lab 2+3+4)Dital Image Processing (Lab 2+3+4)
Dital Image Processing (Lab 2+3+4)
 

Dernier

Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfDrew Moseley
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringHironori Washizaki
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odishasmiwainfosol
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Natan Silnitsky
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationBradBedford3
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Matt Ray
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...confluent
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Cizo Technology Services
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZABSYZ Inc
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtimeandrehoraa
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Rob Geurden
 
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...Akihiro Suda
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作qr0udbr0
 

Dernier (20)

Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdf
 
Machine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their EngineeringMachine Learning Software Engineering Patterns and Their Engineering
Machine Learning Software Engineering Patterns and Their Engineering
 
2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva
 
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company OdishaBalasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
Balasore Best It Company|| Top 10 IT Company || Balasore Software company Odisha
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion Application
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
Open Source Summit NA 2024: Open Source Cloud Costs - OpenCost's Impact on En...
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZ
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
SpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at RuntimeSpotFlow: Tracking Method Calls and States at Runtime
SpotFlow: Tracking Method Calls and States at Runtime
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...
 
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
20240415 [Container Plumbing Days] Usernetes Gen2 - Kubernetes in Rootless Do...
 
Advantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your BusinessAdvantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your Business
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作
 

Introduction to Digital Image Processing