SlideShare una empresa de Scribd logo
1 de 41
Introduction to
Digital Image Interpretation
What is a Digital Image?
Most remote sensing data can be
represented in 2 interchangeable forms:

Photograph-like imagery
Arrays of digital brightness values
Colour Composite Displays
We typically create multispectral image
displays or colour composite images by
showing different image bands in varying
display combinations.
True Colour Composites
Standard False Colour Composites
Colour Composite Images
Colour Composite Images
General Appearance of Surface Features on
Colour Composite Images
Feature

True Colour

False
Colour

trees and bushes

olive green

red

crops

medium to light green

pink to red

wetland vegetation dark green to black

dark red

water

shades of blue and green blue to black

urban areas

white to light blue

blue to grey

bare soil

white to light grey

blue to grey

Source: U.S. Department of Defense, 1995. Multispectral Users Guide.
Digital Image Processing Steps
1.Preprocessing
2.Enhancement
3.Transformation
4.Classification
Image Preprocessing
Operations aim to correct distorted or
degraded image data to create a more
faithful representation of the original
scene.
"rectification and restoration"
spatial filtering
radiometric restoration (destriping)
geometric correction
Preprocessing functions involve those operations that are
normally required prior to the main data analysis and
extraction of information, and are generally grouped as
 radiometric corrections
 geometric corrections.
Radiometric corrections include correcting the data for
sensor irregularities and unwanted sensor or atmospheric
noise, and converting the data so they accurately represent
the reflected or emitted radiation measured by the sensor.
Geometric corrections include correcting for geometric
distortions due to sensor-Earth geometry variations, and
conversion of the data to real world coordinates (e.g. latitude
and longitude) on the Earth's surface.
Various methods of atmospheric correction can be applied ranging
from detailed modeling of the atmospheric conditions during data
acquisition, to simple calculations based solely on the image data.
An example of the latter method is to examine the observed
brightness values (digital numbers), in an area of shadow or for a
very dark object (such as a large clear lake - A) and determine the
minimum value (B). The correction is applied by subtracting the
minimum observed value, determined for each specific band, from
all pixel values in each respective band.
Noise in an image may be due to irregularities or errors that
occur in the sensor response and/or data recording and
transmission. Common forms of noise include systematic
striping or banding and dropped lines.
Both of these effects should be corrected before further
enhancement or classification is performed.
Image Registration (Geo-referencing)
Registration is the process of superimposing an
image over a map or over another already
registered data. The method of image
registration or “geo-referencing” can be
divided into two types: “image-to-imageregistration” and “image-to-map-registration”.
Selected image data of the Khorat area was
rectified with reference to the 1:50 000 scale
topographic maps (image-to-map-registration).
image-to-map-registration
Further imagery was geo-referenced to this
already registered satellite image using the
image-to-image registration.
The geometric registration process involves identifying the image
coordinates (i.e. row, column) of several clearly discernible points,
called ground control points (or GCPs), in the distorted image (A A1 to A4), and matching them to their true positions in ground
coordinates (e.g. latitude, longitude).
The true ground coordinates are typically measured from a map
(B - B1 to B4), either in paper or digital format. This is image-to-map
registration.
Geometric registration may also be performed by registering one (or more)
images to another image, instead of to geographic coordinates. This is called
image-to-image registration and is often done prior to performing various
image transformation procedures,
In order to actually geometrically correct the original distorted image, a
procedure called resampling is used to determine the digital values to
place in the new pixel locations of the corrected output image.
3 common methods for resampling:

Nearest neighbour,
Bilinear interpolation,
 Cubic convolution.
Nearest neighbour resampling uses the
digital value from the pixel in the original
image which is nearest to the new pixel
location in the corrected image.
This is the simplest method and does
not alter the original values, but may
result in some pixel values being
duplicated while others are lost. This
method also tends to result in a

disjointed or blocky image appearance.
Bilinear interpolation
resampling takes a
weighted average of four
pixels in the original image
nearest to the new pixel
location. The averaging
process alters the original
pixel values and creates
entirely new digital values in
the output image.
This may be undesirable if further processing and analysis,
such as classification based on spectral response, is to be
done. If this is the case, resampling may best be done after the
classification process.
Cubic convolution
resampling goes even further
to calculate a distance
weighted average of a block
of sixteen pixels from the
original image which
surround the new output
pixel location. As with
bilinear interpolation, this
method results in completely
new pixel values.
However, these two methods both produce images which have
a much sharper appearance and avoid the blocky appearance
of the nearest neighbour method.
Spatial filtering
• Spatial information
– Things close together more alike than things further apart
(spatial auto-correlation)
– Many features of interest have spatial structure such as
edges, shapes, patterns (roads, rivers, coastlines,
irrigation patterns etc. etc.)

• Spatial filters divided into two broad categories
– Feature detection e.g. edges
– Image enhancement e.g. smoothing “speckly” data e.g.
RADAR
31
Low/high frequency

DN

Gradual change = low
frequency

DN

Rapid change = high
frequency

32
How do we exploit this?
• Spatial filters highlight or suppress specific
features based on spatial frequency
– Related to texture – rapid changes of DN value =
“rough”, slow changes (or none) = “smooth”
43

49

48

49

51

43

50

65

54

51

12

14

9

9

10

43

49

48

49

51

210

225

199

188

Smooth(ish)

189

Rough(ish)

Darker, horizontal
linear feature
Bright, horizontal
linear feature
33
Convolution (spatial) filtering
• Construct a “kernel” window (3x3, 5x5, 7x7 etc.) to
enhances/remove these spatial feature
• Compute weighted average of pixels in moving window,
and assigning that average value to centre pixel.
• choice of weights determines how filter affects image

34
Convolution (spatial) filtering
• Filter moves over all pixels in input, calculate value
of central pixel each time e.g.
43

49

48

49

51

43

50

65

54

51

12

14

9

9

10

43

49

48

49

51

210

225

199

188

189

Input image

??
1/9

1/9
1/9

1/9

1/9

1/9

??

1/9

1/9

??

1/9

filter
Output image

35
Convolution (spatial) filtering
• For first pixel in output image
– Output DN = 1/9*43 + 1/9*49 + 1/9*48 + 1/9*43 + 1/9*50 +
1/9*65 + 1/9*12 + 1/9*14 + 1/9*9 = 37
– Then move filter one place to right (blue square) and do same
again so output DN = 1/9*(49+48+49+50+65+54+14+9+9) =
38.6
– And again….. DN = 1/9*(48+49+51+65+54+51+9+9+10) = 38.4

• This is mean filter
• Acts to “smooth” or blur image
43

49

48

49

51

43

50

65

54

14

9

9

49

48

49

51

210

225

199

188

189

38.4

10

43

38.6

51

12

37

Output image

36
Convolution (spatial) filtering
• Mean filter known as low-pass filter i.e. allows low frequency
information to pass through but smooths out higher
frequency (rapidly changing DN values)
– Used to remove high frequency “speckle” from data
• Opposite is high-pass filter
– Used to enhance high frequency information such as
lines and point features while getting rid of low frequency
information
High pass

37
Convolution (spatial) filtering
• Can also have directional filters
– Used to enhance edge information in a given direction
– Special case of high-pass filter

Vertical edge
enhancement filter

Horizontal edge
enhancement filter
38
Practical
• Try out various filters of various sizes
• See what effect each has, and construct your
own filters
– High-pass filters used for edge detection
• Often used in machine vision applications (e.g. robotics
and/or industrial applications)

– Directional high-pass filters used to detect
edges of specific orientation
– Low-pass filters used to suppress high freq.
information e.g. to remove “speckle”

39
Example: low-pass filter

•ERS 1 RADAR image, Norfolk, 18/4/97
•Original (left) and low-pass “smoothed” (right)
40
Example: high-pass edge
detection

•SPOT image, Norfolk, 18/4/97
•Original (left) and directional high-pass filter (edge detection),
right

41

Más contenido relacionado

La actualidad más candente

Image interpretation keys & image resolution
Image interpretation keys & image resolutionImage interpretation keys & image resolution
Image interpretation keys & image resolutionPramoda Raj
 
Image enhancement technique digital image analysis, in remote sensing ,P K MANI
Image enhancement technique  digital image analysis, in remote sensing ,P K MANIImage enhancement technique  digital image analysis, in remote sensing ,P K MANI
Image enhancement technique digital image analysis, in remote sensing ,P K MANIP.K. Mani
 
Pre processing of raw rs data
Pre processing of raw rs dataPre processing of raw rs data
Pre processing of raw rs dataguriaghosh
 
Principle of aerial photography and types.ppt
Principle of aerial photography and types.pptPrinciple of aerial photography and types.ppt
Principle of aerial photography and types.pptsrinivas2036
 
Aerial photography abraham thomas
Aerial photography abraham thomasAerial photography abraham thomas
Aerial photography abraham thomasSumant Diwakar
 
Multispectral remote sensing
Multispectral remote sensingMultispectral remote sensing
Multispectral remote sensingDharmendera Meena
 
Chapter 1 (Introduction to remote sensing)
Chapter 1 (Introduction to remote sensing)Chapter 1 (Introduction to remote sensing)
Chapter 1 (Introduction to remote sensing)Shankar Gangaju
 
Remote sensing - Scanners
Remote sensing - ScannersRemote sensing - Scanners
Remote sensing - ScannersPramoda Raj
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GISSatish Taji
 
Digital image processing
Digital image processingDigital image processing
Digital image processingVandana Verma
 
groundtruth collection for remotesensing support
groundtruth collection for remotesensing supportgroundtruth collection for remotesensing support
groundtruth collection for remotesensing supportThiruvengadam .
 
Remote Sensing Data Acquisition,Scanning/Imaging systems
Remote Sensing Data Acquisition,Scanning/Imaging systemsRemote Sensing Data Acquisition,Scanning/Imaging systems
Remote Sensing Data Acquisition,Scanning/Imaging systemsdaniyal rustam
 
Microwave remote sensing
Microwave remote sensingMicrowave remote sensing
Microwave remote sensingRohit Kumar
 
Components of gis
Components of gisComponents of gis
Components of gisPramoda Raj
 
Remote Sensing Platforms and Sensors
Remote Sensing Platforms and SensorsRemote Sensing Platforms and Sensors
Remote Sensing Platforms and SensorsUday kumar Devalla
 
VISUAL IMAGE INTERPRETATION.pptx
VISUAL IMAGE INTERPRETATION.pptxVISUAL IMAGE INTERPRETATION.pptx
VISUAL IMAGE INTERPRETATION.pptxSamirsinh Parmar
 

La actualidad más candente (20)

Image interpretation keys & image resolution
Image interpretation keys & image resolutionImage interpretation keys & image resolution
Image interpretation keys & image resolution
 
Spatial data for GIS
Spatial data for GISSpatial data for GIS
Spatial data for GIS
 
Image enhancement technique digital image analysis, in remote sensing ,P K MANI
Image enhancement technique  digital image analysis, in remote sensing ,P K MANIImage enhancement technique  digital image analysis, in remote sensing ,P K MANI
Image enhancement technique digital image analysis, in remote sensing ,P K MANI
 
Pre processing of raw rs data
Pre processing of raw rs dataPre processing of raw rs data
Pre processing of raw rs data
 
Principle of aerial photography and types.ppt
Principle of aerial photography and types.pptPrinciple of aerial photography and types.ppt
Principle of aerial photography and types.ppt
 
Aerial photography abraham thomas
Aerial photography abraham thomasAerial photography abraham thomas
Aerial photography abraham thomas
 
Multispectral remote sensing
Multispectral remote sensingMultispectral remote sensing
Multispectral remote sensing
 
Chapter 1 (Introduction to remote sensing)
Chapter 1 (Introduction to remote sensing)Chapter 1 (Introduction to remote sensing)
Chapter 1 (Introduction to remote sensing)
 
Remote sensing - Scanners
Remote sensing - ScannersRemote sensing - Scanners
Remote sensing - Scanners
 
functions of GIS
functions of GISfunctions of GIS
functions of GIS
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
 
Remote sensing
Remote sensingRemote sensing
Remote sensing
 
groundtruth collection for remotesensing support
groundtruth collection for remotesensing supportgroundtruth collection for remotesensing support
groundtruth collection for remotesensing support
 
Remote Sensing Data Acquisition,Scanning/Imaging systems
Remote Sensing Data Acquisition,Scanning/Imaging systemsRemote Sensing Data Acquisition,Scanning/Imaging systems
Remote Sensing Data Acquisition,Scanning/Imaging systems
 
Microwave remote sensing
Microwave remote sensingMicrowave remote sensing
Microwave remote sensing
 
Raster data and Vector data
Raster data and Vector dataRaster data and Vector data
Raster data and Vector data
 
Components of gis
Components of gisComponents of gis
Components of gis
 
Remote Sensing Platforms and Sensors
Remote Sensing Platforms and SensorsRemote Sensing Platforms and Sensors
Remote Sensing Platforms and Sensors
 
VISUAL IMAGE INTERPRETATION.pptx
VISUAL IMAGE INTERPRETATION.pptxVISUAL IMAGE INTERPRETATION.pptx
VISUAL IMAGE INTERPRETATION.pptx
 

Similar a Digital image processing and interpretation

Digital image processing
Digital image processingDigital image processing
Digital image processingChetan Hulsure
 
Fundamentals of Remote Sensing- A training module
Fundamentals of Remote Sensing- A training moduleFundamentals of Remote Sensing- A training module
Fundamentals of Remote Sensing- A training moduleNishant Sinha
 
Spatial enhancement
Spatial enhancement Spatial enhancement
Spatial enhancement abinarkt
 
Digital image processing
Digital image processingDigital image processing
Digital image processingMuheeb Awawdeh
 
Image analysis basics and principles
Image analysis basics and principlesImage analysis basics and principles
Image analysis basics and principlesMohsin Siddique
 
satellite image processing
satellite image processingsatellite image processing
satellite image processingavhadlaxmikant
 
satllite image processing
satllite image processingsatllite image processing
satllite image processingavhadlaxmikant
 
BilateralFiltering
BilateralFilteringBilateralFiltering
BilateralFilteringJacob Logas
 
Basics of image processing & analysis
Basics of image processing & analysisBasics of image processing & analysis
Basics of image processing & analysisMohsin Siddique
 
12-Image enhancement and filtering.ppt
12-Image enhancement and filtering.ppt12-Image enhancement and filtering.ppt
12-Image enhancement and filtering.pptAJAYMALIK97
 
Digital Image Proccessing in Remote Sensing.pdf
Digital Image Proccessing in Remote Sensing.pdfDigital Image Proccessing in Remote Sensing.pdf
Digital Image Proccessing in Remote Sensing.pdfthemanishforestry
 
CT Image Reconstruction- Avinesh Shrestha
CT Image Reconstruction- Avinesh ShresthaCT Image Reconstruction- Avinesh Shrestha
CT Image Reconstruction- Avinesh ShresthaAvinesh Shrestha
 
Image Enhancement - Point Processing
Image Enhancement - Point ProcessingImage Enhancement - Point Processing
Image Enhancement - Point ProcessingGayathri31093
 
Digital image processing
Digital image processingDigital image processing
Digital image processingABIRAMI M
 
3.1 Digital Image Proccessing.pptx
3.1 Digital Image Proccessing.pptx3.1 Digital Image Proccessing.pptx
3.1 Digital Image Proccessing.pptxRajeshVarmaR1
 
Performance analysis of high resolution images using interpolation techniques...
Performance analysis of high resolution images using interpolation techniques...Performance analysis of high resolution images using interpolation techniques...
Performance analysis of high resolution images using interpolation techniques...sipij
 
Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...
Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...
Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...mmjalbiaty
 
image_enhancement-NDVI-5.pptx
image_enhancement-NDVI-5.pptximage_enhancement-NDVI-5.pptx
image_enhancement-NDVI-5.pptxGemedaBedasa
 

Similar a Digital image processing and interpretation (20)

Digital image processing
Digital image processingDigital image processing
Digital image processing
 
Fundamentals of Remote Sensing- A training module
Fundamentals of Remote Sensing- A training moduleFundamentals of Remote Sensing- A training module
Fundamentals of Remote Sensing- A training module
 
Pre processing
Pre processingPre processing
Pre processing
 
Spatial enhancement
Spatial enhancement Spatial enhancement
Spatial enhancement
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
 
Image analysis basics and principles
Image analysis basics and principlesImage analysis basics and principles
Image analysis basics and principles
 
satellite image processing
satellite image processingsatellite image processing
satellite image processing
 
satllite image processing
satllite image processingsatllite image processing
satllite image processing
 
BilateralFiltering
BilateralFilteringBilateralFiltering
BilateralFiltering
 
Basics of image processing & analysis
Basics of image processing & analysisBasics of image processing & analysis
Basics of image processing & analysis
 
12-Image enhancement and filtering.ppt
12-Image enhancement and filtering.ppt12-Image enhancement and filtering.ppt
12-Image enhancement and filtering.ppt
 
Digital Image Proccessing in Remote Sensing.pdf
Digital Image Proccessing in Remote Sensing.pdfDigital Image Proccessing in Remote Sensing.pdf
Digital Image Proccessing in Remote Sensing.pdf
 
CT Image Reconstruction- Avinesh Shrestha
CT Image Reconstruction- Avinesh ShresthaCT Image Reconstruction- Avinesh Shrestha
CT Image Reconstruction- Avinesh Shrestha
 
Image Enhancement - Point Processing
Image Enhancement - Point ProcessingImage Enhancement - Point Processing
Image Enhancement - Point Processing
 
Digital image processing
Digital image processingDigital image processing
Digital image processing
 
3.1 Digital Image Proccessing.pptx
3.1 Digital Image Proccessing.pptx3.1 Digital Image Proccessing.pptx
3.1 Digital Image Proccessing.pptx
 
Performance analysis of high resolution images using interpolation techniques...
Performance analysis of high resolution images using interpolation techniques...Performance analysis of high resolution images using interpolation techniques...
Performance analysis of high resolution images using interpolation techniques...
 
Digital Image Fundamentals - II
Digital Image Fundamentals - IIDigital Image Fundamentals - II
Digital Image Fundamentals - II
 
Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...
Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...
Image Interpolation Techniques with Optical and Digital Zoom Concepts -semina...
 
image_enhancement-NDVI-5.pptx
image_enhancement-NDVI-5.pptximage_enhancement-NDVI-5.pptx
image_enhancement-NDVI-5.pptx
 

Más de P.K. Mani

Crust core and mantle
Crust core and mantleCrust core and mantle
Crust core and mantleP.K. Mani
 
Origin of universe
Origin of universe Origin of universe
Origin of universe P.K. Mani
 
Fundamentals of soil science
Fundamentals of soil scienceFundamentals of soil science
Fundamentals of soil scienceP.K. Mani
 
Physical chemistry of soil for PG students
Physical chemistry of soil for PG studentsPhysical chemistry of soil for PG students
Physical chemistry of soil for PG studentsP.K. Mani
 
EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...
EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...
EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...P.K. Mani
 
Nano Technology for UG students of Agriculture
Nano Technology for UG students of AgricultureNano Technology for UG students of Agriculture
Nano Technology for UG students of AgricultureP.K. Mani
 
Sewage and sludge as waste material
 Sewage and sludge as waste material Sewage and sludge as waste material
Sewage and sludge as waste materialP.K. Mani
 
Agril. Waste management
Agril. Waste managementAgril. Waste management
Agril. Waste managementP.K. Mani
 
Geomorphology at a glance: Major landforms
Geomorphology at a glance: Major landformsGeomorphology at a glance: Major landforms
Geomorphology at a glance: Major landformsP.K. Mani
 
Introduction to Geomorphology
Introduction to Geomorphology Introduction to Geomorphology
Introduction to Geomorphology P.K. Mani
 
Geomorphology and Geochemistry
Geomorphology  and GeochemistryGeomorphology  and Geochemistry
Geomorphology and GeochemistryP.K. Mani
 
COMPARATIVE ADVANTAGE OF SRI OVER TRANSPLANTED RICE IN TERMS OF YIELD A...
COMPARATIVE  ADVANTAGE  OF SRI  OVER TRANSPLANTED  RICE  IN TERMS OF YIELD  A...COMPARATIVE  ADVANTAGE  OF SRI  OVER TRANSPLANTED  RICE  IN TERMS OF YIELD  A...
COMPARATIVE ADVANTAGE OF SRI OVER TRANSPLANTED RICE IN TERMS OF YIELD A...P.K. Mani
 
ASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATION
ASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATIONASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATION
ASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATIONP.K. Mani
 
BEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOIL
BEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOILBEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOIL
BEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOILP.K. Mani
 
Quiz contest for UG level
Quiz  contest for UG levelQuiz  contest for UG level
Quiz contest for UG levelP.K. Mani
 
Quiz contest for UG level
Quiz  contest for UG levelQuiz  contest for UG level
Quiz contest for UG levelP.K. Mani
 
Bioavailabilty and crop uptake of heavy metals from Sewage sludge
Bioavailabilty and crop uptake of heavy metals from Sewage sludge Bioavailabilty and crop uptake of heavy metals from Sewage sludge
Bioavailabilty and crop uptake of heavy metals from Sewage sludge P.K. Mani
 
Maintenance of Soil Health
Maintenance of Soil HealthMaintenance of Soil Health
Maintenance of Soil HealthP.K. Mani
 
Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...
Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...
Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...P.K. Mani
 
Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...
Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...
Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...P.K. Mani
 

Más de P.K. Mani (20)

Crust core and mantle
Crust core and mantleCrust core and mantle
Crust core and mantle
 
Origin of universe
Origin of universe Origin of universe
Origin of universe
 
Fundamentals of soil science
Fundamentals of soil scienceFundamentals of soil science
Fundamentals of soil science
 
Physical chemistry of soil for PG students
Physical chemistry of soil for PG studentsPhysical chemistry of soil for PG students
Physical chemistry of soil for PG students
 
EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...
EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...
EFFECT OF COATED NITROGENOUS FERTILIZERS ON CARBON FRACTIONS IN RICE BASED CR...
 
Nano Technology for UG students of Agriculture
Nano Technology for UG students of AgricultureNano Technology for UG students of Agriculture
Nano Technology for UG students of Agriculture
 
Sewage and sludge as waste material
 Sewage and sludge as waste material Sewage and sludge as waste material
Sewage and sludge as waste material
 
Agril. Waste management
Agril. Waste managementAgril. Waste management
Agril. Waste management
 
Geomorphology at a glance: Major landforms
Geomorphology at a glance: Major landformsGeomorphology at a glance: Major landforms
Geomorphology at a glance: Major landforms
 
Introduction to Geomorphology
Introduction to Geomorphology Introduction to Geomorphology
Introduction to Geomorphology
 
Geomorphology and Geochemistry
Geomorphology  and GeochemistryGeomorphology  and Geochemistry
Geomorphology and Geochemistry
 
COMPARATIVE ADVANTAGE OF SRI OVER TRANSPLANTED RICE IN TERMS OF YIELD A...
COMPARATIVE  ADVANTAGE  OF SRI  OVER TRANSPLANTED  RICE  IN TERMS OF YIELD  A...COMPARATIVE  ADVANTAGE  OF SRI  OVER TRANSPLANTED  RICE  IN TERMS OF YIELD  A...
COMPARATIVE ADVANTAGE OF SRI OVER TRANSPLANTED RICE IN TERMS OF YIELD A...
 
ASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATION
ASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATIONASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATION
ASSESSMENT OF DIFFERENT N MANAGEMENT STRATEGIES IN LOWLAND RICE CULTIVATION
 
BEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOIL
BEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOILBEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOIL
BEHAVIOUR OF HEAVY METALS IN SEWAGE-SLUDGE AMENDED SOIL
 
Quiz contest for UG level
Quiz  contest for UG levelQuiz  contest for UG level
Quiz contest for UG level
 
Quiz contest for UG level
Quiz  contest for UG levelQuiz  contest for UG level
Quiz contest for UG level
 
Bioavailabilty and crop uptake of heavy metals from Sewage sludge
Bioavailabilty and crop uptake of heavy metals from Sewage sludge Bioavailabilty and crop uptake of heavy metals from Sewage sludge
Bioavailabilty and crop uptake of heavy metals from Sewage sludge
 
Maintenance of Soil Health
Maintenance of Soil HealthMaintenance of Soil Health
Maintenance of Soil Health
 
Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...
Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...
Effect of phosphorus build up on the availabiilty of Zinc in soil in a rice b...
 
Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...
Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...
Effect of minimum tillage and Mulching on nutrient Transformation in rice bas...
 

Último

URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
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
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptxPoojaSen20
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
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
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 

Último (20)

URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
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
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
PSYCHIATRIC History collection FORMAT.pptx
PSYCHIATRIC   History collection FORMAT.pptxPSYCHIATRIC   History collection FORMAT.pptx
PSYCHIATRIC History collection FORMAT.pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
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
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 

Digital image processing and interpretation

  • 2. What is a Digital Image? Most remote sensing data can be represented in 2 interchangeable forms: Photograph-like imagery Arrays of digital brightness values
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10. Colour Composite Displays We typically create multispectral image displays or colour composite images by showing different image bands in varying display combinations.
  • 11.
  • 12.
  • 13.
  • 14.
  • 16. Standard False Colour Composites
  • 19. General Appearance of Surface Features on Colour Composite Images Feature True Colour False Colour trees and bushes olive green red crops medium to light green pink to red wetland vegetation dark green to black dark red water shades of blue and green blue to black urban areas white to light blue blue to grey bare soil white to light grey blue to grey Source: U.S. Department of Defense, 1995. Multispectral Users Guide.
  • 20. Digital Image Processing Steps 1.Preprocessing 2.Enhancement 3.Transformation 4.Classification
  • 21. Image Preprocessing Operations aim to correct distorted or degraded image data to create a more faithful representation of the original scene. "rectification and restoration" spatial filtering radiometric restoration (destriping) geometric correction
  • 22. Preprocessing functions involve those operations that are normally required prior to the main data analysis and extraction of information, and are generally grouped as  radiometric corrections  geometric corrections. Radiometric corrections include correcting the data for sensor irregularities and unwanted sensor or atmospheric noise, and converting the data so they accurately represent the reflected or emitted radiation measured by the sensor. Geometric corrections include correcting for geometric distortions due to sensor-Earth geometry variations, and conversion of the data to real world coordinates (e.g. latitude and longitude) on the Earth's surface.
  • 23. Various methods of atmospheric correction can be applied ranging from detailed modeling of the atmospheric conditions during data acquisition, to simple calculations based solely on the image data. An example of the latter method is to examine the observed brightness values (digital numbers), in an area of shadow or for a very dark object (such as a large clear lake - A) and determine the minimum value (B). The correction is applied by subtracting the minimum observed value, determined for each specific band, from all pixel values in each respective band.
  • 24. Noise in an image may be due to irregularities or errors that occur in the sensor response and/or data recording and transmission. Common forms of noise include systematic striping or banding and dropped lines. Both of these effects should be corrected before further enhancement or classification is performed.
  • 25. Image Registration (Geo-referencing) Registration is the process of superimposing an image over a map or over another already registered data. The method of image registration or “geo-referencing” can be divided into two types: “image-to-imageregistration” and “image-to-map-registration”. Selected image data of the Khorat area was rectified with reference to the 1:50 000 scale topographic maps (image-to-map-registration). image-to-map-registration Further imagery was geo-referenced to this already registered satellite image using the image-to-image registration.
  • 26.
  • 27. The geometric registration process involves identifying the image coordinates (i.e. row, column) of several clearly discernible points, called ground control points (or GCPs), in the distorted image (A A1 to A4), and matching them to their true positions in ground coordinates (e.g. latitude, longitude). The true ground coordinates are typically measured from a map (B - B1 to B4), either in paper or digital format. This is image-to-map registration.
  • 28. Geometric registration may also be performed by registering one (or more) images to another image, instead of to geographic coordinates. This is called image-to-image registration and is often done prior to performing various image transformation procedures, In order to actually geometrically correct the original distorted image, a procedure called resampling is used to determine the digital values to place in the new pixel locations of the corrected output image. 3 common methods for resampling: Nearest neighbour, Bilinear interpolation,  Cubic convolution. Nearest neighbour resampling uses the digital value from the pixel in the original image which is nearest to the new pixel location in the corrected image. This is the simplest method and does not alter the original values, but may result in some pixel values being duplicated while others are lost. This method also tends to result in a disjointed or blocky image appearance.
  • 29. Bilinear interpolation resampling takes a weighted average of four pixels in the original image nearest to the new pixel location. The averaging process alters the original pixel values and creates entirely new digital values in the output image. This may be undesirable if further processing and analysis, such as classification based on spectral response, is to be done. If this is the case, resampling may best be done after the classification process.
  • 30. Cubic convolution resampling goes even further to calculate a distance weighted average of a block of sixteen pixels from the original image which surround the new output pixel location. As with bilinear interpolation, this method results in completely new pixel values. However, these two methods both produce images which have a much sharper appearance and avoid the blocky appearance of the nearest neighbour method.
  • 31. Spatial filtering • Spatial information – Things close together more alike than things further apart (spatial auto-correlation) – Many features of interest have spatial structure such as edges, shapes, patterns (roads, rivers, coastlines, irrigation patterns etc. etc.) • Spatial filters divided into two broad categories – Feature detection e.g. edges – Image enhancement e.g. smoothing “speckly” data e.g. RADAR 31
  • 32. Low/high frequency DN Gradual change = low frequency DN Rapid change = high frequency 32
  • 33. How do we exploit this? • Spatial filters highlight or suppress specific features based on spatial frequency – Related to texture – rapid changes of DN value = “rough”, slow changes (or none) = “smooth” 43 49 48 49 51 43 50 65 54 51 12 14 9 9 10 43 49 48 49 51 210 225 199 188 Smooth(ish) 189 Rough(ish) Darker, horizontal linear feature Bright, horizontal linear feature 33
  • 34. Convolution (spatial) filtering • Construct a “kernel” window (3x3, 5x5, 7x7 etc.) to enhances/remove these spatial feature • Compute weighted average of pixels in moving window, and assigning that average value to centre pixel. • choice of weights determines how filter affects image 34
  • 35. Convolution (spatial) filtering • Filter moves over all pixels in input, calculate value of central pixel each time e.g. 43 49 48 49 51 43 50 65 54 51 12 14 9 9 10 43 49 48 49 51 210 225 199 188 189 Input image ?? 1/9 1/9 1/9 1/9 1/9 1/9 ?? 1/9 1/9 ?? 1/9 filter Output image 35
  • 36. Convolution (spatial) filtering • For first pixel in output image – Output DN = 1/9*43 + 1/9*49 + 1/9*48 + 1/9*43 + 1/9*50 + 1/9*65 + 1/9*12 + 1/9*14 + 1/9*9 = 37 – Then move filter one place to right (blue square) and do same again so output DN = 1/9*(49+48+49+50+65+54+14+9+9) = 38.6 – And again….. DN = 1/9*(48+49+51+65+54+51+9+9+10) = 38.4 • This is mean filter • Acts to “smooth” or blur image 43 49 48 49 51 43 50 65 54 14 9 9 49 48 49 51 210 225 199 188 189 38.4 10 43 38.6 51 12 37 Output image 36
  • 37. Convolution (spatial) filtering • Mean filter known as low-pass filter i.e. allows low frequency information to pass through but smooths out higher frequency (rapidly changing DN values) – Used to remove high frequency “speckle” from data • Opposite is high-pass filter – Used to enhance high frequency information such as lines and point features while getting rid of low frequency information High pass 37
  • 38. Convolution (spatial) filtering • Can also have directional filters – Used to enhance edge information in a given direction – Special case of high-pass filter Vertical edge enhancement filter Horizontal edge enhancement filter 38
  • 39. Practical • Try out various filters of various sizes • See what effect each has, and construct your own filters – High-pass filters used for edge detection • Often used in machine vision applications (e.g. robotics and/or industrial applications) – Directional high-pass filters used to detect edges of specific orientation – Low-pass filters used to suppress high freq. information e.g. to remove “speckle” 39
  • 40. Example: low-pass filter •ERS 1 RADAR image, Norfolk, 18/4/97 •Original (left) and low-pass “smoothed” (right) 40
  • 41. Example: high-pass edge detection •SPOT image, Norfolk, 18/4/97 •Original (left) and directional high-pass filter (edge detection), right 41