SlideShare a Scribd company logo
1 of 46
Morphological Image
Processing
Spring 2006, Jen-Chang Liu
Preview
 Morphology 形態學
 About the form and structure of animals and
plants
 Mathematical morphology
 Using set theory
 Extract image component
 Representation and description of region shape
Preview (cont.)
 Sets in mathematical morphology represent
objects in an image
 Example
 Binary image: the elements of a set is the
coordinate (x,y) of the pixels, in Z2
 Gray-level image: the element of a set is the
triple, (x, y, gray-value), in Z3
Outline
 Preliminaries – set theory
 Dilation and erosion
 Opening and closing
 Hit-or-miss transformation
 Some basic morphological algorithms
 Extensions to gray-scale images
Binary
images
Preliminaries – set theory
 A be a set in Z2.
 a = (a1, a2) is an element of A.
 a is not an element of A
 Null (empty) set: 
A
a
A
a
Set theory (cont.)
 Explicit expression of a set
 Example:
 
n
a
a
a
A ,...,
, 2
1

 
elements
set
for
condition
element
A 
 
D
d
d
w
w
C 


 for
,
1
2
Set operations
 A is a subset of B: every element of A is an element
of another set B
 Union 聯集
 Intersection 交集
 Mutually exclusive
B
A 
B
A
C 

B
A
C 


 B
A 
Graphical examples
Graphical examples (cont.)
 
A
w
w
Ac

  
B
w
A
w
w
B
A 


 ,
Logic operations on binary
images
 Functionally complete operations
 AND, OR, NOT
B
A
B
A
A
B 
Special set operations
for morphology
translation
 
A
a
z
a
c
c
A z 


 for
,
)
(
reflection
 
B
b
b
w
w
B 


 for
,
ˆ
Outline
 Preliminaries
 Dilation(擴張) and erosion(侵蝕)
 Opening and closing
 Hit-or-miss transformation
 Some basic morphological algorithms
 Extensions to gray-scale images
Dilation (擴張)
 
)
ˆ
( 


 A
B
z
B
A z 
B:structuring
element
Dilation: another formulation
 
 
A
A
B
z
B
A z 


 )
ˆ
(
Application of dilation:
bridging gaps in images
Structuring
element
max. gap=2 pixels
Effects: increase size, fill gap
Erosion 侵蝕
 
A
B
z
B
A z 
 )
(
z: displacement
B:structuring
element
Erosion (cont.)
Application of erosion:
eliminate irrelevant detail
original image
Squares of size
1,3,5,7,9,15 pels
erosion
Erode with
13x13 square
dilation
Dilation and erosion are duals
 c
z
c
A
B
z
B
A )
(
)
( 

 c
c
z A
B
z )
( 

 
 
)
( 

 c
z A
B
z 
 
)
ˆ
( 


 A
B
z
B
A z
B
Ac ˆ



Application: Boundary extraction
 Extract boundary of a set A:
 First erode A (make A smaller)
 A – erode(A)
)
( B
A
A
=
Application: boundary
extraction
Using 5x5 structuring element
original image
Outline
 Preliminaries
 Dilation and erosion
 Opening and closing
 Hit-or-miss transformation
 Some basic morphological algorithms
 Extensions to gray-scale images
Opening
 Dilation: expands image w.r.t structuring
elements
 Erosion: shrink image
 erosion+dilation = original image ?
 Opening= erosion + dilation
B
B
A
B
A 
 )
(

Opening (cont.)
Opening (cont.)
Smooth the contour of an image, breaks narrow isthmuses,
eliminates thin protrusions
消去小凸起
切除窄接線
Find contour Fill in contour
Closing
 Dilation+erosion = erosion + dilation ?
 Closing = dilation + erosion
B
B
A
B
A )
( 


Closing (cont.)
Find contour Fill in contour
Smooth the object contour, fuse narrow breaks and long
thin gulfs, eliminate small holes, and fill in gaps
連接小斷點,消除小空洞,填補空隙
Properties of opening and
closing
 Opening
 Closing
A
B
A of
(subimage)
subset
a
is
(i) 
B
D
B
C
C 
 of
subset
a
is
then
D,
of
subset
a
is
If
(ii)
B
A
B
B
A 

 
)
(
(iii)
B
A
A 
of
(subimage)
subset
a
is
(i)
B
D
B
C
C 
 of
subset
a
is
then
D,
of
subset
a
is
If
(ii)
B
A
B
B
A 


 )
(
(iii)
Open後變小
close後變大
重複做open等於做一次open
重複做close等於做一次close
Noisy
image
opening
Remove
outer
noise
Remove
inner
noise
closing
Outline
 Preliminaries
 Dilation and erosion
 Opening and closing
 Hit-or-miss transformation
 Some basic morphological algorithms
 Extensions to gray-scale images
Hit-or-miss transformation
 Find the location of certain shape
erosion
Find the set of pixels that
contain shape X
如何只找到相符形狀中心點?
X
Hit-or-miss transformation
Erosion
with (W-X)
Detect object via
background
Hit-or-miss transformation
 Eliminate un-necessary parts
AND
Outline
 Preliminaries
 Dilation and erosion
 Opening and closing
 Hit-or-miss transformation
 Some basic morphological algorithms
 Extensions to gray-scale images
Basic morphological algorithms
 Extract image components that are useful in the
representation and description of shape
 Boundary extraction
 Region filling
 Extract of connected components
 Convex hull
 Thinning
 Thickening
 Skeleton
 Pruning
Region filling
 How?
 Idea: place a point inside the region, then
dilate that point iteratively
,...
3
,
2
,
1
,
)
( 1 


  k
A
B
X
X c
k
k
p
X 
0
Until 1

 k
k X
X
Bound the growth
Region filling (cont.)
stop
Application: region filling
Original image
The first filled
region
Fill all regions
Extraction of connected
components
 找到連通部分
 Idea: start from a point in
the connected component,
and dilate it iteratively
,...
3
,
2
,
1
,
)
( 1 


  k
A
B
X
X k
k
p
X 
0
Until 1

 k
k X
X
Extraction of connected
components (cont.)
original
雞肉
thresholding
erosion
去除小雜訊
Skeletons 骨架
Set A Maximum disk
1. The largest disk
Centered at a pixel
2. Touch the boundary
of A at two or more
places
Recall: Balls of erosion!
How to define a
Skeletons?
Skeleton
 Idea: 不斷的 erosion
Erosion k 次
直到空集合
Problem
 The scanned image is not adjusted well
 How to detection the direction of lines?
 How to rotate?

More Related Content

Similar to morph.ppt

Morphological.pdf
Morphological.pdfMorphological.pdf
Morphological.pdfpawankamal3
 
Lec_9_ Morphological ImageProcessing .pdf
Lec_9_ Morphological ImageProcessing .pdfLec_9_ Morphological ImageProcessing .pdf
Lec_9_ Morphological ImageProcessing .pdfnagwaAboElenein
 
Practical Digital Image Processing 2
Practical Digital Image Processing 2Practical Digital Image Processing 2
Practical Digital Image Processing 2Aly Abdelkareem
 
Image segmentation 3 morphology
Image segmentation 3 morphologyImage segmentation 3 morphology
Image segmentation 3 morphologyRumah Belajar
 
Chapter 9 morphological image processing
Chapter 9 morphological image processingChapter 9 morphological image processing
Chapter 9 morphological image processingasodariyabhavesh
 
morphological image processing
morphological image processingmorphological image processing
morphological image processingAnubhav Kumar
 
Notes on image processing
Notes on image processingNotes on image processing
Notes on image processingMohammed Kamel
 
Morphological image processing.pdf
Morphological image processing.pdfMorphological image processing.pdf
Morphological image processing.pdfErwin512140
 
Erosion and dilation
Erosion and dilationErosion and dilation
Erosion and dilationAkhil .B
 
Meshing for computer graphics
Meshing for computer graphicsMeshing for computer graphics
Meshing for computer graphicsBruno Levy
 
Image Processing with OpenCV
Image Processing with OpenCVImage Processing with OpenCV
Image Processing with OpenCVdebayanin
 
DigitalImageProcessing 9-Morphology.ppt
DigitalImageProcessing 9-Morphology.pptDigitalImageProcessing 9-Morphology.ppt
DigitalImageProcessing 9-Morphology.pptFazaFoudhaili
 
Cloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical Images
Cloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical ImagesCloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical Images
Cloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical ImagesYan Xu
 
morphological tecnquies in image processing
morphological tecnquies in image processingmorphological tecnquies in image processing
morphological tecnquies in image processingsoma saikiran
 
CS 354 Graphics Math
CS 354 Graphics MathCS 354 Graphics Math
CS 354 Graphics MathMark Kilgard
 

Similar to morph.ppt (20)

Morphological.pdf
Morphological.pdfMorphological.pdf
Morphological.pdf
 
Foreground Detection : Combining Background Subspace Learning with Object Smo...
Foreground Detection : Combining Background Subspace Learning with Object Smo...Foreground Detection : Combining Background Subspace Learning with Object Smo...
Foreground Detection : Combining Background Subspace Learning with Object Smo...
 
Point Processing
Point ProcessingPoint Processing
Point Processing
 
Lec_9_ Morphological ImageProcessing .pdf
Lec_9_ Morphological ImageProcessing .pdfLec_9_ Morphological ImageProcessing .pdf
Lec_9_ Morphological ImageProcessing .pdf
 
Practical Digital Image Processing 2
Practical Digital Image Processing 2Practical Digital Image Processing 2
Practical Digital Image Processing 2
 
Image segmentation 3 morphology
Image segmentation 3 morphologyImage segmentation 3 morphology
Image segmentation 3 morphology
 
Chapter 9 morphological image processing
Chapter 9 morphological image processingChapter 9 morphological image processing
Chapter 9 morphological image processing
 
morphological image processing
morphological image processingmorphological image processing
morphological image processing
 
Notes on image processing
Notes on image processingNotes on image processing
Notes on image processing
 
Morphological image processing.pdf
Morphological image processing.pdfMorphological image processing.pdf
Morphological image processing.pdf
 
point processing
point processingpoint processing
point processing
 
Erosion and dilation
Erosion and dilationErosion and dilation
Erosion and dilation
 
Meshing for computer graphics
Meshing for computer graphicsMeshing for computer graphics
Meshing for computer graphics
 
Image Processing with OpenCV
Image Processing with OpenCVImage Processing with OpenCV
Image Processing with OpenCV
 
Image Stitching for Panorama View
Image Stitching for Panorama ViewImage Stitching for Panorama View
Image Stitching for Panorama View
 
DigitalImageProcessing 9-Morphology.ppt
DigitalImageProcessing 9-Morphology.pptDigitalImageProcessing 9-Morphology.ppt
DigitalImageProcessing 9-Morphology.ppt
 
4 image enhancement in spatial domain
4 image enhancement in spatial domain4 image enhancement in spatial domain
4 image enhancement in spatial domain
 
Cloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical Images
Cloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical ImagesCloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical Images
Cloud-based Storage, Processing and Rendering for Gegabytes 3D Biomedical Images
 
morphological tecnquies in image processing
morphological tecnquies in image processingmorphological tecnquies in image processing
morphological tecnquies in image processing
 
CS 354 Graphics Math
CS 354 Graphics MathCS 354 Graphics Math
CS 354 Graphics Math
 

More from KerenEvangelineI

Ultrasound imaging in Medicine field.pptx
Ultrasound imaging in Medicine field.pptxUltrasound imaging in Medicine field.pptx
Ultrasound imaging in Medicine field.pptxKerenEvangelineI
 
Physics of Thermography - Infrared radiation.pptx
Physics of Thermography - Infrared radiation.pptxPhysics of Thermography - Infrared radiation.pptx
Physics of Thermography - Infrared radiation.pptxKerenEvangelineI
 
Medical Thermography and its applications.pptx
Medical Thermography and its applications.pptxMedical Thermography and its applications.pptx
Medical Thermography and its applications.pptxKerenEvangelineI
 
Radio-isotopes in Medical Diagnosis.pptx
Radio-isotopes in Medical Diagnosis.pptxRadio-isotopes in Medical Diagnosis.pptx
Radio-isotopes in Medical Diagnosis.pptxKerenEvangelineI
 
Principles of Magnetic Resonance Imaging.pptx
Principles of Magnetic Resonance Imaging.pptxPrinciples of Magnetic Resonance Imaging.pptx
Principles of Magnetic Resonance Imaging.pptxKerenEvangelineI
 
APPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptx
APPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptxAPPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptx
APPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptxKerenEvangelineI
 
APPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptx
APPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptxAPPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptx
APPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptxKerenEvangelineI
 
CONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptx
CONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptxCONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptx
CONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptxKerenEvangelineI
 
CONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptx
CONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptxCONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptx
CONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptxKerenEvangelineI
 
Types of Activation functions in DL.pptx
Types of Activation functions in DL.pptxTypes of Activation functions in DL.pptx
Types of Activation functions in DL.pptxKerenEvangelineI
 
Working Principle of Deep Learning Technique.pptx
Working Principle of Deep Learning Technique.pptxWorking Principle of Deep Learning Technique.pptx
Working Principle of Deep Learning Technique.pptxKerenEvangelineI
 
Introduction to Deep Learning Technique.pptx
Introduction to Deep Learning Technique.pptxIntroduction to Deep Learning Technique.pptx
Introduction to Deep Learning Technique.pptxKerenEvangelineI
 
Deep Learning and Recent Applications.pptx
Deep Learning and Recent Applications.pptxDeep Learning and Recent Applications.pptx
Deep Learning and Recent Applications.pptxKerenEvangelineI
 
FEATURE SELECTION AND FEATURE REDUCTION.pptx
FEATURE SELECTION AND FEATURE REDUCTION.pptxFEATURE SELECTION AND FEATURE REDUCTION.pptx
FEATURE SELECTION AND FEATURE REDUCTION.pptxKerenEvangelineI
 
CURVLET TRANSFORM USES IN DAILY LIFE.pptx
CURVLET TRANSFORM USES IN DAILY LIFE.pptxCURVLET TRANSFORM USES IN DAILY LIFE.pptx
CURVLET TRANSFORM USES IN DAILY LIFE.pptxKerenEvangelineI
 
Edge detection Contourlet transform techniques.pptx
Edge detection Contourlet transform techniques.pptxEdge detection Contourlet transform techniques.pptx
Edge detection Contourlet transform techniques.pptxKerenEvangelineI
 
Wavelet feature extraction technique.pptx
Wavelet feature extraction technique.pptxWavelet feature extraction technique.pptx
Wavelet feature extraction technique.pptxKerenEvangelineI
 
Features of Gray level run length matrix.pptx
Features of Gray level run length matrix.pptxFeatures of Gray level run length matrix.pptx
Features of Gray level run length matrix.pptxKerenEvangelineI
 
Features of GLCM extracted using GLCM .pptx
Features of GLCM extracted using GLCM .pptxFeatures of GLCM extracted using GLCM .pptx
Features of GLCM extracted using GLCM .pptxKerenEvangelineI
 
Feature Extraction in image processing- Shape.pptx
Feature Extraction in image processing- Shape.pptxFeature Extraction in image processing- Shape.pptx
Feature Extraction in image processing- Shape.pptxKerenEvangelineI
 

More from KerenEvangelineI (20)

Ultrasound imaging in Medicine field.pptx
Ultrasound imaging in Medicine field.pptxUltrasound imaging in Medicine field.pptx
Ultrasound imaging in Medicine field.pptx
 
Physics of Thermography - Infrared radiation.pptx
Physics of Thermography - Infrared radiation.pptxPhysics of Thermography - Infrared radiation.pptx
Physics of Thermography - Infrared radiation.pptx
 
Medical Thermography and its applications.pptx
Medical Thermography and its applications.pptxMedical Thermography and its applications.pptx
Medical Thermography and its applications.pptx
 
Radio-isotopes in Medical Diagnosis.pptx
Radio-isotopes in Medical Diagnosis.pptxRadio-isotopes in Medical Diagnosis.pptx
Radio-isotopes in Medical Diagnosis.pptx
 
Principles of Magnetic Resonance Imaging.pptx
Principles of Magnetic Resonance Imaging.pptxPrinciples of Magnetic Resonance Imaging.pptx
Principles of Magnetic Resonance Imaging.pptx
 
APPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptx
APPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptxAPPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptx
APPLICATIONS OF DL IN BRAIN SCAN USING MRI.pptx
 
APPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptx
APPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptxAPPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptx
APPLICATIONS OF DEEP LEARNING IN MRI SCAN.pptx
 
CONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptx
CONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptxCONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptx
CONVOLUTIONAL NEURAL NETWORK COMPONENTS.pptx
 
CONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptx
CONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptxCONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptx
CONVOLUTIONAL NEURAL NETWORK TECHNIQUE.pptx
 
Types of Activation functions in DL.pptx
Types of Activation functions in DL.pptxTypes of Activation functions in DL.pptx
Types of Activation functions in DL.pptx
 
Working Principle of Deep Learning Technique.pptx
Working Principle of Deep Learning Technique.pptxWorking Principle of Deep Learning Technique.pptx
Working Principle of Deep Learning Technique.pptx
 
Introduction to Deep Learning Technique.pptx
Introduction to Deep Learning Technique.pptxIntroduction to Deep Learning Technique.pptx
Introduction to Deep Learning Technique.pptx
 
Deep Learning and Recent Applications.pptx
Deep Learning and Recent Applications.pptxDeep Learning and Recent Applications.pptx
Deep Learning and Recent Applications.pptx
 
FEATURE SELECTION AND FEATURE REDUCTION.pptx
FEATURE SELECTION AND FEATURE REDUCTION.pptxFEATURE SELECTION AND FEATURE REDUCTION.pptx
FEATURE SELECTION AND FEATURE REDUCTION.pptx
 
CURVLET TRANSFORM USES IN DAILY LIFE.pptx
CURVLET TRANSFORM USES IN DAILY LIFE.pptxCURVLET TRANSFORM USES IN DAILY LIFE.pptx
CURVLET TRANSFORM USES IN DAILY LIFE.pptx
 
Edge detection Contourlet transform techniques.pptx
Edge detection Contourlet transform techniques.pptxEdge detection Contourlet transform techniques.pptx
Edge detection Contourlet transform techniques.pptx
 
Wavelet feature extraction technique.pptx
Wavelet feature extraction technique.pptxWavelet feature extraction technique.pptx
Wavelet feature extraction technique.pptx
 
Features of Gray level run length matrix.pptx
Features of Gray level run length matrix.pptxFeatures of Gray level run length matrix.pptx
Features of Gray level run length matrix.pptx
 
Features of GLCM extracted using GLCM .pptx
Features of GLCM extracted using GLCM .pptxFeatures of GLCM extracted using GLCM .pptx
Features of GLCM extracted using GLCM .pptx
 
Feature Extraction in image processing- Shape.pptx
Feature Extraction in image processing- Shape.pptxFeature Extraction in image processing- Shape.pptx
Feature Extraction in image processing- Shape.pptx
 

Recently uploaded

Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 

Recently uploaded (20)

Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 

morph.ppt