SlideShare a Scribd company logo
1 of 59
DIGITAL IMAGE PROCESSING
1
Dr.S.SHAJUN NISHA, MCA.,M.Phil.,M.Tech.,MBA.,Ph.D
Assistant Professor & Head
PG and Research Dept. of Computer Science
Sadakathullah Appa College
shajunnisha78@gmail.com
+91 99420 96220
MATLAB Environment
2
Procedure to create a new script
NewScript
3
Saving a new script
SaveSave As
4
Running a program
5
IMAGE I/O OPERATIONS
6
Reading and displaying an Image
Syntax
A = imread(filename)
imshow(A)
Example
rgb=imread(‘peppers.png’)
imshow(rgb)
7
Displaying output with caption
Syntax
A = imread(filename)
imshow(A)
title(‘caption of the output image')
Example
rgb=imread(‘cameraman.tif’)
imshow(rgb)
title(‘cameraman')
8
Displaying pair of images
Syntax
imshowpair(I,J,'montage’)
Example
I = imread('cameraman.tif’);
J = imread(‘peppers.png’)
imshowpair(I,J,'montage')
9
Displaying multiple images using subplot
Syntax
subplot(x,y,z)
Example
I = imread('cameraman.tif');
figure,subplot(3,3,1),imshow(I),title('Cameraman');
J = imread('peppers.png');
subplot(3,3,2),imshow(J),title('Peppers');
k = imread('eight.tif');
subplot(3,3,3),imshow(k),title('eight');
L = imread('rice.png');
subplot(3,3,4),imshow(L),title('rice');
M = imread('onion.png');
subplot(3,3,5),imshow(M),title('onion');
N = imread('pears.png');
subplot(3,3,6),imshow(N),title('pears');
10
Reading and saving a file
Syntax
f=imread(filename)
imshow(f)
imwrite(f,’filename’)
Example
rgb=imread(‘peppers.png’)
imshow(rgb)
imwrite(rgb,’newrgbfile.jpg’)
11
Arithmetic operations on image
12
Adding two images
Syntax
Z = imadd(X,Y)
Example
I = imread('rice.png’);
J = imread('cameraman.tif’);
K = imadd(I,J,'uint16’);
imshow(K,[])
13
Subtracting images
Syntax
Z = imsubtract(X,Y)
Example
I = imread('rice.png');
J=imread('cameraman.tif');
K = imsubtract(I,J);
imshow(K)
14
Multiply an image
Syntax
Z = immultiply(X,Y)
Example
a=imread('cameraman.tif’)
imshow(a);
J = immultiply(a,0.5);
figure,imshow(J);
15
Dividing an image
Syntax
Z = imdivide(X,Y)
Example
I = imread('rice.png');
J = imdivide(I,2);
imshow(J)
16
Complementing images
Syntax
J = imcomplement(I);
Example
I = imread('cameraman.tif');
J = imcomplement(I);
imshow(J)
17
Absolute difference of image
Syntax
K = imabsdiff(I,J);
Example
I = imread('cameraman.tif');
J=imread('rice.png');
K = imabsdiff(I,J);
imshow(K)
18
Mathematical operations
I = imread('rice.png’);
J = imread('cameraman.tif’);
K = imadd(I,J,'uint16’);
figure,subplot(3,3,1),imshow(K),title(‘Addition’);
L = imsubtract(I,J);
subplot(3,3,2),imshow(L),title('Subtraction’);
M = immultiply(J,0.5);
subplot(3,3,3),imshow(M),title('Multiplication');
O = imdivide(J,2);
subplot(3,3,4),imshow(O),title('Division');
P= imcomplement(J);
subplot(3,3,5),imshow(P),title('Complement');
Q = imabsdiff(I,J);
subplot(3,3,6),imshow(Q),title('Absolute difference');
19
Intensity transformations
20
Adjusting intensity of an image
Syntax
I=imadjust(filename)
Example
I = imread('cameraman.tif');
J=imadjust(I,[0.5 0.75],[0,1]);
imshowpair(I,J,'montage');
21
Histogram equalization of an image
Syntax
J=histeq(I)
Example
I = imread('cameraman.tif’);
J=histeq(I,50)
imshowpair(I,J,'montage');
22
Adaptive histogram equalization
Syntax
J = adapthisteq(I)
Example
I = imread('cameraman.tif’);
J = adapthisteq(I);
imshowpair(I,J,'montage');
23
Histogram of an image
Syntax
J=histeq(I)
Example
I = imread('cameraman.tif’);
figure,imshow(I);
figure,imhist(I);
24
Spatial filtering
25
Applying filter
Syntax
B = imfilter(A,h)
Example
originalRGB = imread('peppers.png’);
imshow(originalRGB)
h = fspecial('motion', 50, 45);
filteredRGB = imfilter(originalRGB, h);
figure, imshow(filteredRGB)
26
Columnwise neighborhood operations
Syntax
B = colfilt(A,[m n],block_type,fun)
Example
I= imread('tire.tif');
I2 = uint8(colfilt(I,[5 5],'sliding',@mean));
imshow(I) title('Original Image’)
figure imshow(I2)
title('Filtered Image')
27
Pre defined 2D filter
Syntax
h = fspecial(type)
Example
I= imread('cameraman.tif’);
imshow(I);
H = fspecial('disk',10);
blurred = imfilter(I,H,'replicate’);
imshow(blurred);
28
2-D order-statistic filtering
Syntax
B = ordfilt2(A,order,domain)
Example
A = imread('snowflakes.png’);
figure imshow(A)
B = ordfilt2(A,25,true(5));
figure imshow(B)
29
2-D median filtering
Syntax
J = medfilt2(I)
Example
I = imread('eight.tif’);
figure, imshow(I)
J = imnoise(I,'salt & pepper',0.02);
K = medfilt2(J);
imshowpair(J,K,'montage')
30
Image restoration
31
Add noise to image
Syntax
J = imnoise(I,'gaussian’)
Example
I= imread('eight.tif');
imshow(I)
J = imnoise(I,'salt & pepper',0.02);
imshow(J)
32
Deblur image using regularized filter
Syntax
J = deconvreg(I,psf)
33
Deblur image using Wiener filter
Syntax
J = deconvwnr(I,psf,nsr)
34
Taper discontinuities along image edges
Syntax
J = edgetaper(I,PSF)
Example
original = imread('cameraman.tif’);
PSF = fspecial('gaussian',60,10);
edgesTapered = edgetaper(original,PSF);
figure, imshow(original,[]);
figure, imshow(edgesTapered,[]);
35
Working with different types of
images
36
Color image to gray scale image
Syntax
I = rgb2gray(RGB)
Example
RGB = imread('peppers.png’);
imshow(RGB)
I = rgb2gray(RGB);
figure imshow(I)
37
Convert grayscale or binary image to indexed
image
Syntax
[X,cmap] = gray2ind(I,c)
Example
I = imread('cameraman.tif');
[X, map] = gray2ind(I, 16);
imshow(X, map);
38
Convert indexed image to grayscale image
Syntax
I = ind2gray(X,cmap)
Example
[X, map] = imread('trees.tif');
I = ind2gray(X,map);
imshow(X,map) ;
title('Indexed Image’)
figure imshow(I);
title('Converted Grayscale Image')
39
Convert RGB image to indexed image
Syntax
[X,cmap] = rgb2ind(RGB,Q)
40
Convert grayscale image to indexed image
using multilevel thresholding
Syntax
X = grayslice(I,N)
41
Morphological operations
42
Dilate image
Syntax
J = imdilate(I,SE)
43
Erode image
Syntax
J = imerode(I,SE)
44
Morphologically open image
Syntax
J = imopen(I,SE)
45
Morphologically close image
Syntax
J = imclose(I,SE)
46
Morphological operations on binary images
Syntax
BW2 = bwmorph(BW,operation)
remove skeleton
47
Morpological reconstruction
48
Fill image regions and holes
Syntax
BW2 = imfill(BW,locations)
49
Morphological reconstruction
Syntax
J = imreconstruct(marker,mask)
original image eroded image
reconstructed image
50
Segmentation
51
Find edges in intensity image
Syntax
BW = edge(I)
52
Canny operator
Syntax
BW = edge(I,’canny’)
53
Prewitt Operator
Syntax
BW = edge(I,’prewitt’)
54
Roberts operator
Syntax
BW = edge(I,’roberts’)
55
Sobel operator
Syntax
BW = edge(I,’sobel’)
56
Laplacian of Gaussian(LoG)
Syntax
BW = edge(I,’log’)
57
Global Thresholding
Syntax
g=im2bw(I,T); T=0.2 T=0.5
58
Global image threshold using Otsu's method
Syntax
T = graythresh(I)
Example
I = imread('coins.png');
level = graythresh(I)
BW = imbinarize(I,level);
imshowpair(I,BW,'montage')
59

More Related Content

What's hot

Lec 07 image enhancement in frequency domain i
Lec 07 image enhancement in frequency domain iLec 07 image enhancement in frequency domain i
Lec 07 image enhancement in frequency domain iAli Hassan
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & TrackingAkshay Gujarathi
 
NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)udamale
 
Color image processing
Color image processingColor image processing
Color image processingrmsurya
 
Color Image Processing
Color Image ProcessingColor Image Processing
Color Image Processingkiruthiammu
 
Digital image processing
Digital image processingDigital image processing
Digital image processingABIRAMI M
 
Multimedia data and file format
Multimedia data and file formatMultimedia data and file format
Multimedia data and file formatNiketa Jain
 
Image Restoration (Frequency Domain Filters):Basics
Image Restoration (Frequency Domain Filters):BasicsImage Restoration (Frequency Domain Filters):Basics
Image Restoration (Frequency Domain Filters):BasicsKalyan Acharjya
 
03 Analysis of Algorithms: Probabilistic Analysis
03 Analysis of Algorithms: Probabilistic Analysis03 Analysis of Algorithms: Probabilistic Analysis
03 Analysis of Algorithms: Probabilistic AnalysisAndres Mendez-Vazquez
 
Transform coding
Transform codingTransform coding
Transform codingNancy K
 

What's hot (20)

Lec 07 image enhancement in frequency domain i
Lec 07 image enhancement in frequency domain iLec 07 image enhancement in frequency domain i
Lec 07 image enhancement in frequency domain i
 
Video processing on dsp
Video processing on dspVideo processing on dsp
Video processing on dsp
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & Tracking
 
NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)
 
Color image processing
Color image processingColor image processing
Color image processing
 
Lect 06
Lect 06 Lect 06
Lect 06
 
Color Image Processing
Color Image ProcessingColor Image Processing
Color Image Processing
 
Chomsky Normal Form
Chomsky Normal FormChomsky Normal Form
Chomsky Normal Form
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
 
Video Processing Applications
Video Processing ApplicationsVideo Processing Applications
Video Processing Applications
 
Computer Graphics
Computer GraphicsComputer Graphics
Computer Graphics
 
Multimedia data and file format
Multimedia data and file formatMultimedia data and file format
Multimedia data and file format
 
Image Restoration (Frequency Domain Filters):Basics
Image Restoration (Frequency Domain Filters):BasicsImage Restoration (Frequency Domain Filters):Basics
Image Restoration (Frequency Domain Filters):Basics
 
Huffman Coding
Huffman CodingHuffman Coding
Huffman Coding
 
Hit and-miss transform
Hit and-miss transformHit and-miss transform
Hit and-miss transform
 
Wiener Filter
Wiener FilterWiener Filter
Wiener Filter
 
How Computers Represent Graphics
How Computers Represent GraphicsHow Computers Represent Graphics
How Computers Represent Graphics
 
Canny Edge Detection
Canny Edge DetectionCanny Edge Detection
Canny Edge Detection
 
03 Analysis of Algorithms: Probabilistic Analysis
03 Analysis of Algorithms: Probabilistic Analysis03 Analysis of Algorithms: Probabilistic Analysis
03 Analysis of Algorithms: Probabilistic Analysis
 
Transform coding
Transform codingTransform coding
Transform coding
 

Similar to DIGITAL IMAGE PROCESSING TECHNIQUES

Manual of image processing lab
Manual of image processing labManual of image processing lab
Manual of image processing labmaamir farooq
 
Digital image processing using matlab: basic transformations, filters and ope...
Digital image processing using matlab: basic transformations, filters and ope...Digital image processing using matlab: basic transformations, filters and ope...
Digital image processing using matlab: basic transformations, filters and ope...thanh nguyen
 
Creating a Facebook Clone - Part XXXIX.pdf
Creating a Facebook Clone - Part XXXIX.pdfCreating a Facebook Clone - Part XXXIX.pdf
Creating a Facebook Clone - Part XXXIX.pdfShaiAlmog1
 
Digital Image Processing (Lab 09 and 10)
Digital Image Processing (Lab 09 and 10)Digital Image Processing (Lab 09 and 10)
Digital Image Processing (Lab 09 and 10)Moe Moe Myint
 
Introduction to image contrast and enhancement method
Introduction to image contrast and enhancement methodIntroduction to image contrast and enhancement method
Introduction to image contrast and enhancement methodAbhishekvb
 
Simple Matlab tutorial using matlab inbuilt commands
Simple Matlab tutorial using matlab inbuilt commandsSimple Matlab tutorial using matlab inbuilt commands
Simple Matlab tutorial using matlab inbuilt commandsLakshmi Sarvani Videla
 
Pasos para la reducción de datos en Cananea. Data_reduction_cananea
Pasos para la reducción de datos en Cananea. Data_reduction_cananeaPasos para la reducción de datos en Cananea. Data_reduction_cananea
Pasos para la reducción de datos en Cananea. Data_reduction_cananeapugahermoso16
 
Digital Image Processing (Lab 07)
Digital Image Processing (Lab 07)Digital Image Processing (Lab 07)
Digital Image Processing (Lab 07)Moe Moe Myint
 
stackconf 2022: Optimize Performance with Continuous Production Profiling
stackconf 2022: Optimize Performance with Continuous Production Profilingstackconf 2022: Optimize Performance with Continuous Production Profiling
stackconf 2022: Optimize Performance with Continuous Production ProfilingNETWAYS
 
Image Cryptography and Steganography
Image Cryptography and SteganographyImage Cryptography and Steganography
Image Cryptography and SteganographyMohammad Amin Amjadi
 
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
 
Python 03-parameters-graphics.pptx
Python 03-parameters-graphics.pptxPython 03-parameters-graphics.pptx
Python 03-parameters-graphics.pptxTseChris
 

Similar to DIGITAL IMAGE PROCESSING TECHNIQUES (20)

Matlab
MatlabMatlab
Matlab
 
662305 LAB13
662305 LAB13662305 LAB13
662305 LAB13
 
Manual of image processing lab
Manual of image processing labManual of image processing lab
Manual of image processing lab
 
Dip 1
Dip 1Dip 1
Dip 1
 
Digital image processing using matlab: basic transformations, filters and ope...
Digital image processing using matlab: basic transformations, filters and ope...Digital image processing using matlab: basic transformations, filters and ope...
Digital image processing using matlab: basic transformations, filters and ope...
 
Creating a Facebook Clone - Part XXXIX.pdf
Creating a Facebook Clone - Part XXXIX.pdfCreating a Facebook Clone - Part XXXIX.pdf
Creating a Facebook Clone - Part XXXIX.pdf
 
Digital Image Processing (Lab 09 and 10)
Digital Image Processing (Lab 09 and 10)Digital Image Processing (Lab 09 and 10)
Digital Image Processing (Lab 09 and 10)
 
Introduction to image contrast and enhancement method
Introduction to image contrast and enhancement methodIntroduction to image contrast and enhancement method
Introduction to image contrast and enhancement method
 
matlab.docx
matlab.docxmatlab.docx
matlab.docx
 
Simple Matlab tutorial using matlab inbuilt commands
Simple Matlab tutorial using matlab inbuilt commandsSimple Matlab tutorial using matlab inbuilt commands
Simple Matlab tutorial using matlab inbuilt commands
 
Dip iit workshop
Dip iit workshopDip iit workshop
Dip iit workshop
 
Pasos para la reducción de datos en Cananea. Data_reduction_cananea
Pasos para la reducción de datos en Cananea. Data_reduction_cananeaPasos para la reducción de datos en Cananea. Data_reduction_cananea
Pasos para la reducción de datos en Cananea. Data_reduction_cananea
 
Digital Image Processing (Lab 07)
Digital Image Processing (Lab 07)Digital Image Processing (Lab 07)
Digital Image Processing (Lab 07)
 
stackconf 2022: Optimize Performance with Continuous Production Profiling
stackconf 2022: Optimize Performance with Continuous Production Profilingstackconf 2022: Optimize Performance with Continuous Production Profiling
stackconf 2022: Optimize Performance with Continuous Production Profiling
 
Image Cryptography and Steganography
Image Cryptography and SteganographyImage Cryptography and Steganography
Image Cryptography and Steganography
 
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
 
Test
TestTest
Test
 
Chapter1 8
Chapter1 8Chapter1 8
Chapter1 8
 
Python 03-parameters-graphics.pptx
Python 03-parameters-graphics.pptxPython 03-parameters-graphics.pptx
Python 03-parameters-graphics.pptx
 
DIP_Manual.pdf
DIP_Manual.pdfDIP_Manual.pdf
DIP_Manual.pdf
 

More from Shajun Nisha

Google meet and its extensions sac
Google meet and its extensions sacGoogle meet and its extensions sac
Google meet and its extensions sacShajun Nisha
 
Dip fundamentals 2
Dip fundamentals 2Dip fundamentals 2
Dip fundamentals 2Shajun Nisha
 
Dip digital image 3
Dip digital image 3Dip digital image 3
Dip digital image 3Shajun Nisha
 
25 environmental ethics intellectual property rights
25 environmental ethics intellectual property rights25 environmental ethics intellectual property rights
25 environmental ethics intellectual property rightsShajun Nisha
 
Linear regression in machine learning
Linear regression in machine learningLinear regression in machine learning
Linear regression in machine learningShajun Nisha
 
Basics of research in research methodology
Basics of research in research methodologyBasics of research in research methodology
Basics of research in research methodologyShajun Nisha
 
Auto encoders in Deep Learning
Auto encoders in Deep LearningAuto encoders in Deep Learning
Auto encoders in Deep LearningShajun Nisha
 
Teaching Aptitude in Research Methodology
Teaching Aptitude in Research MethodologyTeaching Aptitude in Research Methodology
Teaching Aptitude in Research MethodologyShajun Nisha
 
Perceptron and Sigmoid Neurons
Perceptron and Sigmoid NeuronsPerceptron and Sigmoid Neurons
Perceptron and Sigmoid NeuronsShajun Nisha
 
Mc Culloch Pitts Neuron
Mc Culloch Pitts NeuronMc Culloch Pitts Neuron
Mc Culloch Pitts NeuronShajun Nisha
 
Intensity Transformation and Spatial filtering
Intensity Transformation and Spatial filteringIntensity Transformation and Spatial filtering
Intensity Transformation and Spatial filteringShajun Nisha
 
Image Restoration (Digital Image Processing)
Image Restoration (Digital Image Processing)Image Restoration (Digital Image Processing)
Image Restoration (Digital Image Processing)Shajun Nisha
 
ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)
ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)
ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)Shajun Nisha
 
introduction to cloud computing
 introduction to cloud computing introduction to cloud computing
introduction to cloud computingShajun Nisha
 
online learning NPTEL
online learning NPTELonline learning NPTEL
online learning NPTELShajun Nisha
 

More from Shajun Nisha (18)

Google meet and its extensions sac
Google meet and its extensions sacGoogle meet and its extensions sac
Google meet and its extensions sac
 
Dip syntax 4
Dip syntax 4Dip syntax 4
Dip syntax 4
 
Dip fundamentals 2
Dip fundamentals 2Dip fundamentals 2
Dip fundamentals 2
 
Dip application 1
Dip application 1Dip application 1
Dip application 1
 
Dip digital image 3
Dip digital image 3Dip digital image 3
Dip digital image 3
 
ICT tools
ICT  toolsICT  tools
ICT tools
 
25 environmental ethics intellectual property rights
25 environmental ethics intellectual property rights25 environmental ethics intellectual property rights
25 environmental ethics intellectual property rights
 
Linear regression in machine learning
Linear regression in machine learningLinear regression in machine learning
Linear regression in machine learning
 
Basics of research in research methodology
Basics of research in research methodologyBasics of research in research methodology
Basics of research in research methodology
 
Auto encoders in Deep Learning
Auto encoders in Deep LearningAuto encoders in Deep Learning
Auto encoders in Deep Learning
 
Teaching Aptitude in Research Methodology
Teaching Aptitude in Research MethodologyTeaching Aptitude in Research Methodology
Teaching Aptitude in Research Methodology
 
Perceptron and Sigmoid Neurons
Perceptron and Sigmoid NeuronsPerceptron and Sigmoid Neurons
Perceptron and Sigmoid Neurons
 
Mc Culloch Pitts Neuron
Mc Culloch Pitts NeuronMc Culloch Pitts Neuron
Mc Culloch Pitts Neuron
 
Intensity Transformation and Spatial filtering
Intensity Transformation and Spatial filteringIntensity Transformation and Spatial filtering
Intensity Transformation and Spatial filtering
 
Image Restoration (Digital Image Processing)
Image Restoration (Digital Image Processing)Image Restoration (Digital Image Processing)
Image Restoration (Digital Image Processing)
 
ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)
ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)
ESTIMATING NOISE PARAMETER & FILTERING (Digital Image Processing)
 
introduction to cloud computing
 introduction to cloud computing introduction to cloud computing
introduction to cloud computing
 
online learning NPTEL
online learning NPTELonline learning NPTEL
online learning NPTEL
 

Recently uploaded

Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
 
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
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsAhmed Mohamed
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
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
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作qr0udbr0
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEOrtus Solutions, Corp
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanyChristoph Pohl
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....kzayra69
 
Xen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfXen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfStefano Stabellini
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024StefanoLambiase
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Hr365.us smith
 
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
 

Recently uploaded (20)

Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
 
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...
 
Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
Unveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML DiagramsUnveiling Design Patterns: A Visual Guide with UML Diagrams
Unveiling Design Patterns: A Visual Guide with UML Diagrams
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
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)
 
英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作英国UN学位证,北安普顿大学毕业证书1:1制作
英国UN学位证,北安普顿大学毕业证书1:1制作
 
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASEBATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
BATTLEFIELD ORM: TIPS, TACTICS AND STRATEGIES FOR CONQUERING YOUR DATABASE
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....What are the key points to focus on before starting to learn ETL Development....
What are the key points to focus on before starting to learn ETL Development....
 
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
 
Xen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdfXen Safety Embedded OSS Summit April 2024 v4.pdf
Xen Safety Embedded OSS Summit April 2024 v4.pdf
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)Recruitment Management Software Benefits (Infographic)
Recruitment Management Software Benefits (Infographic)
 
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
 

DIGITAL IMAGE PROCESSING TECHNIQUES