SlideShare a Scribd company logo
1 of 45
Download to read offline
Pragmatic Remote Sensing
                          A Hands-on Approach to Processing


                                  J. Inglada1 , E. Christophe2

           1 C ENTRE D ’É TUDES        S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE
                  2 C ENTRE FOR     R EMOTE I MAGING , S ENSING AND P ROCESSING ,
                                 N ATIONAL U NIVERSITY OF S INGAPORE




   This content is provided under a Creative Commons Attribution 3.0 Unported License


                                        IGARSS 2010, Honolulu



Table of Contents



     1. General introduction
     2. Pre-processing
           2.1 Geometric corrections
           2.2 Radiometric corrections
     3. Feature extraction
     4. Image classification
     5. Change detection




                                        IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy




                              Pragmatic Remote Sensing
                             A Hands-on Approach to Processing


                                     J. Inglada1 , E. Christophe2

               1 C ENTRE D ’É TUDES       S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE
                     2 C ENTRE FOR     R EMOTE I MAGING , S ENSING AND P ROCESSING ,
                                    N ATIONAL U NIVERSITY OF S INGAPORE




      This content is provided under a Creative Commons Attribution 3.0 Unported License


                                           IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy


Why?



      Common problems
              Reading images
              Accessing metadata
              Implementing state of the art algorithms

      ⇒ to be able to extract the most information, we need to use
      the best of what is available: data, algorithms,. . .




                                           IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   What When Why How


What is Orfeo Toolbox (OTB)?

      In the frame of CNES ORFEO Program
      Goal
      Make the development of new algorithms and their validation
      easier


              C++ library: provide many algorithms (pre-processing,
              image analysis) with a common interface
              Open-source: free to use, to modify, you can make your
              own software based on OTB and sell it
              Multiplatform: Windows, Linux, Unix, Mac



                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   What When Why How


A bit of History

      Everything begins (2006)
              Started in 2006 by CNES (French Space Agency), funding several full-time
              developers
              Targeted at high resolution images (Pleiades to be launched in 2010) but with
              application to other sensors
              4 year budget, over 1,000,000e recently renewed for 1 additional year
              (500,000e)


      Moving to user friendly applications (2008)
              Strong interactions with the end-user community highlighted that applications for
              non-programmers are important
              Several applications for non programmers (with GUI) since early 2008
              Several training courses (3/5-day courses) given in France, Belgium,
              Madagascar, UNESCO and now Hawaii



                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   What When Why How


Why doing that?

      Is it successful so far?
              OTB user community growing steadily (programmers and application users)
              Presented at IGARSS and ISPRS in 2008, special session in IGARSS in 2009
              CNES is planning to extend the budget for several more years
              Value analysis is very positive (cf. Ohloh): re-using is powerful


      Why make a multi-million dollar software and give it for
      free?
              CNES is not a software company
              One goal is to encourage research: it is critical for researchers to know what is in
              the box
              CNES makes satellites and wants to make sure the images are used
              if more people have the tools to use satellite images, it is good for CNES




                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   What When Why How


How?

      How to reach this goal?
      Using the best work of others: do not reinvent the wheel

      Many open-source libraries of good quality
              ITK: software architecture (streaming, multithreading), many image processing
              algorithms
              Gdal/Ogr: reading data format (geotiff, raw, png, jpeg, shapefile, . . . )
              Ossim: sensor models (Spot, RPC, SAR, . . . ) and map projections
              6S: radiometric corrections
              and many other: libLAS (lidar data), Edison (Mean Shift clustering), libSiftFast
              (SIFT), Boost (graph), libSVM (Support Vector Machines)

      ⇒ all behind a common interface



                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   Components Architecture But Monteverdi Bindings


Application

      Currently
              Image viewer
              Image Segmentation
              Image Classification (by SVM)
              Land Cover
              Feature Extraction
              Road Extraction
              Orthorectification (with Pan Sharpening)
              Fine registration
              Image to database registration
              Object counting
              Urban area detection
              more to come



                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   Components Architecture But Monteverdi Bindings


Components available


      Currently
              Most satellite image formats
              Geometric corrections
              Radiometric corrections
              Change detection
              Feature extraction
              Classification


      Huge documentation available
              Software Guide (+600 pages pdf), also the online version
              Doxygen: documentation for developers




                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy      Components Architecture But Monteverdi Bindings


A powerful architecture



      Modular
                Easy to combine different blocks to do new processing


      Scalable
                Streaming (processing huge images on the flow) transparent for the user of the
                library
                Multithreading (using multicore CPUs) also




                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy      Components Architecture But Monteverdi Bindings


But a steep learning curve for the programmer
      Advanced programming concepts
                Template metaprogramming (generic programming)
                Design patterns (Factory, Functors, Smart Pointers, ...)

      Steep learning curve

                                                                                 tch
                                                                            scra
                                                                        m
                                                                  n fro
                                                             tio
                                                       s olu
                                                                   learning OTB
       Effort




                                      Task complexity
                                        IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   Components Architecture But Monteverdi Bindings


Ask questions




      As for everything: easier when you’re not alone
              Much easier if you have somebody around to help!
              We didn’t know anything not so long ago...
              Not surprising that most software companies now focus their offer on support:
              help is important




                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   Components Architecture But Monteverdi Bindings


Making it easier for the users: Monteverdi




   Module architecture
           Standard input/output
           Easy to customize for a specific
           purpose
           Full streaming or caching the data
           Each module follows a MVC pattern




                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   Components Architecture But Monteverdi Bindings


Making it easier for the users: Monteverdi




                                          IGARSS 2010, Honolulu
Introduction to the Orfeo Toolbox Applications and librairy   Components Architecture But Monteverdi Bindings


Bindings: access through other languages



      Not everybody uses C++!
              Bindings provide an access to the library through other languages
              Python: available
              Java: available
              IDL/Envi: cooperation with ITT VIS to provide a method to access OTB through
              idl/envi (working but no automatic generation)
              Matlab: recent user contribution (R. Bellens from TU Delft)
              Other languages supported by Cable Swig might be possible (Tcl, Ruby?)




                                          IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening




                Image radiometry in ORFEO Toolbox
                             From digital number to reflectance


                                   J. Inglada1 , E. Christophe2

            1 C ENTRE D ’É TUDES        S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE
                   2 C ENTRE FOR     R EMOTE I MAGING , S ENSING AND P ROCESSING ,
                                  N ATIONAL U NIVERSITY OF S INGAPORE




    This content is provided under a Creative Commons Attribution 3.0 Unported License


                                         IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening


Introduction


    Purpose of radiometry
           Go back to the physics from the image

    6S
           Using 6S library: http://6s.ltdri.org/
           Library heavily tested and validated by the community
           Translation from the Fortran code to C
           Transparent integration to OTB for effortless (almost!)
           corrections by the user



                                         IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening   DN to lum lum to ref ToA to ToC Adjacency effects Hands On


Atmospheric corrections: in four steps




                      DN to              Lum to         TOA to           Adjacency
                      Lum                Refl            TOC




    Look like a pipeline
    This is fully adapted to the pipeline architecture of OTB




                                    IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening   DN to lum lum to ref ToA to ToC Adjacency effects Hands On


Digital number to luminance

                                                                                     Xk
                                                                            Lk =
                                                                             TOA        + βk
                                                                                     αk

 Goal
                                                                              Lk is the
                                                                                TOA
        Transform the digital number in the                                   incident
        image into luminance                                                  luminance (in
                                                                              W .m−2 .sr −1 .µm−1 )
 Using the class                                                              Xk digital number
 otb::ImageToLuminanceImageFilter                                             αk absolute
 filterImageToLuminance->SetAlpha(alpha);                                      calibration gain
                                                                              for channel k
 filterImageToLuminance->SetBeta(beta);
                                                                              βk absolute
                                                                              calibration bias
                                                                              for channel k


                                    IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening           DN to lum lum to ref ToA to ToC Adjacency effects Hands On


How to get these parameters?
    From metadata
            Sometimes, the information can be present in the metadata but. . .
            the specific format has to be supported (Spot, Quickbird, Ikonos are
            and more on the way)


    From an ASCII file
        VectorType alpha(nbOfComponent);
        alpha.Fill(0);
        std::ifstream fin;
        fin.open(filename);
        double dalpha(0.);
        for( unsigned int i=0 ; i < nbOfComponent ; i++)
        {
            fin >> dalpha;
            alpha[i] = dalpha;
        }
        fin.close();
                                        IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening           DN to lum lum to ref ToA to ToC Adjacency effects Hands On


Luminance to reflectance



                                                                                         π.Lk
     Goal                                                                   ρk
                                                                             TOA   = k      TOA
                                                                                    ES .cos(θS ).d/d0
            Transform the luminance into the
                                                                                   rhok
            reflectance                                                                TOA reflectance

                                                                                   θS zenithal solar angle
     Using the class otb::LuminanceToReflectanceImageFilter
                                                                                     k
     and setting parameters:                                                       ES solar illumination out
     filterLumToRef->                                                              of atmosphere at a
     SetZenithalSolarAngle(zenithSolar);                                           distance d0 from the Earth
     filterLumToRef-> SetDay(day);
     filterLumToRef-> SetMonth(month);                                             d/d0 ratio between
     filterLumToRef->                                                              Earth-Sun distance at the
     SetSolarIllumination(solarIllumination);                                      acquisition and average
                                                                                   Earth-Sun distance




                                        IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening   DN to lum lum to ref ToA to ToC Adjacency effects Hands On


Top of atmosphere to top of canopy

    Goal
           Compensate for the atmospheric effects

                             A                                         ρTOA − ρatm
                ρunif =
                 S                                        A=
                          1 + SxA                                                      allgas
                                                                  T (µS ).T (µV ).tg
           ρTOA reflectance at the top of the atmosphere
           ρunif ground reflectance under assumption of a lambertian
            S
           surface and an uniform environment
           ρatm intrinsic atmospheric reflectance
            allgas
           tg        spherical albedo of the atmosphere
           T (µS ) downward transmittance
           T (µV ) upward transmittance

                                    IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening   DN to lum lum to ref ToA to ToC Adjacency effects Hands On


Top of Atmosphere to top of canopy


           Using the class otb::ReflectanceToSurfaceReflectanceImageFilter
           filterToAtoToC->SetAtmosphericRadiativeTerms(correctionParameters);
           These parameters are filtered by the
           otb::AtmosphericCorrectionParametersTo6SAtmosphericRadiativeTerms from the
           otb::AtmosphericCorrectionParameter class
           this later class has the methods:
           parameters->SetSolarZenithalAngle();
           parameters->SetSolarAzimutalAngle();
           parameters->SetViewingZenithalAngle();
           parameters->SetViewingAzimutalAngle();
           parameters->SetMonth();
           parameters->SetDay();
           parameters->SetAtmosphericPressure();
           parameters->SetWaterVaporAmount();
           parameters->SetOzoneAmount();
           parameters->SetAerosolModel();
           parameters->SetAerosolOptical();




                                    IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening   DN to lum lum to ref ToA to ToC Adjacency effects Hands On


Adjacency effects

                                                                      ρunif .T (µV )− < ρS > .td (µv )
                                                                       S
                                                              ρS =
                                                                                 exp(−δ/µv )


                                                                     ρunif ground reflectance
 Goal                                                                 S
                                                                     assuming homogeneous
                                                                     environment
        Correct the adjacency effect on
        the radiometry of pixels                                     T (µV ) upward
                                                                     transmittance
 Using the class
 otb::SurfaceAdjacencyEffect6SCorrectionSchemeFilter                 td (µS ) upward diffuse
 with the parameters                                                 transmittance
 filterAdjacency->SetAtmosphericRadiativeTerms();
 filterAdjacency->SetZenithalViewingAngle();                         exp(−δ/µv ) upward
 filterAdjacency->SetWindowRadius();
 filterAdjacency->SetPixelSpacingInKilometers();
                                                                     direct transmittance
                                                                     ρS environment
                                                                     contribution to the pixel
                                                                     target reflectance in the
                                                                     total observed signal
                                    IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening   DN to lum lum to ref ToA to ToC Adjacency effects Hands On


Hands On




       1. Monteverdi: Calibration → Optical calibration
       2. Select the image to correct
       3. Look at the parameters that are retrieved from the image
          metadata
       4. Apply the correction
       5. Look at the different levels




                                    IGARSS 2010, Honolulu
Introduction Atmospheric corrections Pansharpening


Pansharpening
Bring radiometric information to high resolution image




                                     IGARSS 2010, Honolulu
 Introduction Atmospheric corrections Pansharpening


Hands On




        1. Monteverdi: Open two images, one PAN and one XS in the
           same geometry
        2. Monteverdi: Filtering → Pan Sharpening




                                     IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections




                     Image geometry in ORFEO Toolbox
                               Sensor models and map projections


                                       J. Inglada1 , E. Christophe2

               1 C ENTRE D ’É TUDES         S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE
                      2 C ENTRE FOR      R EMOTE I MAGING , S ENSING AND P ROCESSING ,
                                      N ATIONAL U NIVERSITY OF S INGAPORE




       This content is provided under a Creative Commons Attribution 3.0 Unported License


                                             IGARSS 2010, Honolulu
  Introduction Models Optimizations Map projections


Introduction


                   Bundle-block        Homologous
                   Adjustment          Points




                                                          Fine                              Map
                     Sensor
                                                          Regis-                            Projec-
                     Model
                                                          tration                           tion


Input Series                      Geo-referenced Series               Registered Series               Cartographic Series




 DEM




                                             IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections


Outline of the presentation



     Sensor models


     Optimizations
        Bundle-block adjustment
        Fine registration


     Map projections




                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections


Sensor models
What is a sensor model



     Gives the relationship between image (l, c) and ground (X , Y )
     coordinates for every pixel in the image.

                             Forward
                          X = fx (l, c, h, θ)        Y = fy (l, c, h, θ)

                              Inverse
                         l = gl (X , Y , h, θ) c = gc (X , Y , h, θ)

     Where θ is the set of parameters which describe the sensor
     and the acquisition geometry.
     Height (DEM) must be known.


                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections


Sensor models
Types of sensor models




            Physical models
                  Rigorous, complex, highly non-linear equations of the
                  sensor geometry.
                  Usually, difficult to invert.
                  Parameters have a physical meaning.
                  Specific to each sensor.
            General analytical models
                  Ex: polynomial, rational functions, etc.
                  Less accurate.
                  Easier to use.
                  Parameters may have no physical meaning.



                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections


Sensor models
OTB’s Approach




            Use factories: models are automatically generated using
            image meta-data.
            Currently tested models:
                  RPC models: Quickbird, Ikonos
                  Physical models: SPOT5
                  SAR models: ERS, ASAR, Radarsat, Cosmo, TerraSAR-X,
                  Palsar
            Under development:
                  Formosat, WorldView 2




                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections


Hands On




       1. Monteverdi: Open a Quickbird image in sensor geometry
       2. Display the image
       3. Observe how the geographic coordinates are computed
          when the cursor moves around the image




                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections


Sensor models
How to use them: ortho-registration




       1. Read image meta-data and instantiate the model with the
          given parameters.
       2. Define the ROI in ground coordinates (this is your output
          pixel array)
       3. Iterate through the pixels of coordinates (X , Y ):
            3.1 Get h from the DEM
            3.2 Compute (c, l) = G(X , Y , h, θ)
            3.3 Interpolate pixel values if (c, l) are not grid coordinates.




                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections


Hands On



       1. Monteverdi: Geometry → Orthorectification
       2. Select the image to orthorectify
       3. Set the parameters
       4. Save the result
       5. Repeat for the other image with the same parameters
       6. Display the two images together




                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections


Sensor models
Limits of the approach




            Accurate geo-referencing needs:
                  Accurate DEM
                  Accurate sensor parameters, θ
            For time image series we need accurate co-registration:
                  Sub-pixel accuracy
                  For every pixel in the scene
            Current DEM’s and sensor parameters can not give this
            accuracy.
            Solution: use redundant information in the image series!




                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections   BBA Fine registration


Bundle-block adjustment
Problem position


         The image series is
         geo-referenced (using the
         available DEM, and the
         prior sensor parameters).                                           G2 (Xi ,Yi ,hi ,θ2 )
                                                      G1 (Xi ,Yi ,hi ,θ1 )
         We assume that
         homologous points (GCPs,
         etc.) can be easily
         obtained from the
         geo-referenced series :
         HPi = (Xi , Yi , hi )                              Everything is known.
         For each image, and each
         point, we can write:
         (lij , cij ) = Gj (Xi , Yi , hi , θj )
                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections   BBA Fine registration


Bundle-block adjustment
Model refinement




            If we define θjR = θj + ∆θj as the refined parameters, ∆θj
            are the unknowns of the model refinement problem.
            We have much more equations than unknowns if enough
            HPs are found.
            We solve using non-linear least squares estimation.
                  The derivatives of the sensor model with respect to its
                  parameters are needed.




                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections   BBA Fine registration


Hands On
Manually register 2 images
            Monteverdi: Geometry → Homologous points extraction
            Select 2 images with a common region
            The GUI lets you select a transformation
            You can select homologous points in the zoom images and add
            them to the list
            When several homologous points are available, you can evaluate
            the transform
            Once the transform is evaluated, you can use the guess button
            to predict the position in the moving image of a point selected in
            the fixed image
            The GUI displays the parameters of the transform estimated as
            well as individual error for each point and the MSE
            You can remove from the list the points with higher error

                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections   BBA Fine registration


Why fine registration?


            Homologous points have been used to refine the sensor
            model
            Residual misregistrations exist because of:
                  DEM errors
                  Sensor model approximations
                  Surface objects (high resolution imagery)
            We want to find the homologous point
                  of every pixel in the reference image
                  with sub-pixel accuracy
            This is called disparity map




                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections        BBA Fine registration


Fine registration (under development)


                                            Candidate points
                                           Estimation window
                                             Search window
                                           Similarity estimation
                                          Similarity optimization
                                                Optimum
                                                ∆x ,∆y




       Reference Image                                                  Secondary Image




                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections


Map projections
What is a map projection




     Gives the relationship between geographic (X , Y ) and
     cartographic (x, y ) coordinates.

                               Forward
                            x = fx (X , Y , α)           y = fy (X , Y , α)

                               Inverse
                            X = gX (x, y , α) Y = gy (x, y , α)

     Where α is the set of parameters of a given map projection.




                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections


Map projections
Types of map projections



            OTB implements most of the OSSIM ones:
                  30 map projections are available among which: UTM,
                  TransMercator, LambertConformalConic, etc.
            For any Xyz projection the
            otb::XyzForwardProjection and the
            otb::XyzInverseProjection are available.
            Change of projections can be implemented by using one
            forward, one inverse and the
            otb::CompositeTransform class.
            One-step ortho-registration can be implemented by
            combining a sensor model and a map projection.


                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections


Hands On
Changing image projections




            Monteverdi: Geometry → Reproject Image
            Select an orthorectified image as input image
            Select the projection you want as output
            Save/Quit




                                    IGARSS 2010, Honolulu
Introduction Models Optimizations Map projections


Hands On
Apply the geometry of one image to another




            Monteverdi: Geometry → Superimpose 2 Images
            Select any as image image to reproject
            Select an orthorectified image as reference image
                  Make sure the 2 images have a common region!
            Use the same DEM (if any) as for the ortho-rectified image
            Save/Quit




                                    IGARSS 2010, Honolulu
 Introduction Models Optimizations Map projections


As a conclusion


       1. Use a good sensor model if it exists
       2. Use a good DEM if you have it
       3. Improve you sensor parameters after a first
          geo-referencing pass
       4. Fine-register your series
       5. Use a map projection

            All these steps can be performed with OTB/Monteverdi.
            Sensor model + map projection using a DEM are available
            as a one-step filter in OTB.



                                    IGARSS 2010, Honolulu
Introduction Radiometry Textures Other




                          Pragmatic Remote Sensing
                                                  Features


                                 J. Inglada1 , E. Christophe2

          1 C ENTRE D ’É TUDES        S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE
                 2 C ENTRE FOR     R EMOTE I MAGING , S ENSING AND P ROCESSING ,
                                N ATIONAL U NIVERSITY OF S INGAPORE




  This content is provided under a Creative Commons Attribution 3.0 Unported License


                                       IGARSS 2010, Honolulu
        Introduction Radiometry Textures Other


Features


  Expert knowledge
         Features are a way to bring relevant expert knowledge to
         learning algorithms
         Different type of feature: radiometric indices, textures,. . .
         Important to be able to design your own indices according
         to the application
         See poster TUP1.PD.9 “MANGROVE DETECTION FROM
         HIGH RESOLUTION OPTICAL DATA”, Tuesday, July 27,
         09:40 - 10:45 by Emmanuel Christophe, Choong Min
         Wong and Soo Chin Liew



                                       IGARSS 2010, Honolulu
Introduction Radiometry Textures Other


Radiometric index



   Most popular is the NDVI: Normalized Difference Vegetation
   Index [1]

                                                        LNIR − Lr
                                        NDVI =                                                               (1)
                                                        LNIR + Lr

      J. W. Rouse. “Monitoring the vernal advancement and retrogradation of
      natural vegetation,”Type ii report, NASA/GSFCT, Greenbelt, MD, USA,
      1973. 12.1.1




                                     IGARSS 2010, Honolulu
      Introduction Radiometry Textures Other


Vegetation indices 1/3
             RVI          Ratio Vegetation Index [1]
             PVI          Perpendicular Vegetation Index [2, 3]
            SAVI          Soil Adjusted Vegetation Index [4]
            TSAVI         Transformed Soil Adjusted Vegetation Index [6, 5]
      R. L. Pearson and L. D. Miller. Remote mapping of standing crop biomass for estimation of the productivity of
      the shortgrass prairie, pawnee national grasslands, colorado. In Proceedings of the 8th International
      Symposium on Remote Sensing of the Environment II, pages 1355–1379, 1972.

      A. J. Richardson and C. L. Wiegand. Distinguishing vegetation from soil background information.
      Photogrammetric Engineering and Remote Sensing, 43(12):1541–1552, 1977.

      C. L. Wiegand, A. J. Richardson, D. E. Escobar, and A. H. Gerbermann. Vegetation indices in crop
      assessments. Remote Sensing of Environment, 35:105–119, 1991.

      A. R. Huete. A soil-adjusted vegetation index (SAVI). Remote Sensing of Environment, 25:295–309, 1988.

      E. Baret and G. Guyot. Potentials and limits of vegetation indices for LAI and APAR assessment. Remote
      Sensing of Environment, 35:161–173, 1991.

      E. Baret, G. Guyot, and D. J. Major. TSAVI: A vegetation index which minimizes soil brightness effects on LAI
      and APAR estimation. In Proceedings of the 12th Canadian Symposium on Remote Sensing, Vancouver,
      Canada, pages 1355–1358, 1989.



                                     IGARSS 2010, Honolulu
Introduction Radiometry Textures Other


Vegetation indices 2/3

                MSAVI            Modified Soil Adjusted Vegetation Index [1]
                MSAVI2           Modified Soil Adjusted Vegetation Index [1]
                 GEMI            Global Environment Monitoring Index [2]
                 WDVI            Weighted Difference Vegetation Index [3, 4]
                  AVI            Angular Vegetation Index [5]
      J. Qi, A. . Chehbouni, A. Huete, Y. Kerr, and S. Sorooshian. A modified soil adjusted vegetation index.
      Remote Sensing of Environment, 47:1–25, 1994.

      B. Pinty and M. M. Verstraete. GEMI: a non-linear index to monitor global vegetation from satellites.
      Vegetatio, 101:15–20, 1992.

      J. Clevers. The derivation of a simplified reflectance model for the estimation of leaf area index. Remote
      Sensing of Environment, 25:53–69, 1988.

      J. Clevers. Application of the wdvi in estimating lai at the generative stage of barley. ISPRS Journal of
      Photogrammetry and Remote Sensing, 46(1):37–47, 1991.

      S. Plummer, P. North, and S. Briggs. The Angular Vegetation Index (AVI): an atmospherically resistant index
      for the Second Along-Track Scanning Radiometer (ATSR-2). In Sixth International Symposium on Physical
      Measurements and Spectral Signatures in Remote Sensing, Val d’Isere, 1994.




                                      IGARSS 2010, Honolulu
      Introduction Radiometry Textures Other


Vegetation indices 3/3

               ARVI           Atmospherically Resistant Vegetation Index [1]
             TSARVI           Transformed Soil Adjusted Vegetation Index [1]
                EVI           Enhanced Vegetation Index [2, 3]
               IPVI           Infrared Percentage Vegetation Index [4]
              TNDVI           Transformed NDVI [5]
      Y. J. Kaufman and D. Tanré. Atmospherically Resistant Vegetation Index (ARVI) for EOS-MODIS.
      Transactions on Geoscience and Remote Sensing, 40(2):261–270, Mar. 1992.

      A. R. Huete, C. Justice, and H. Liu. Development of vegetation and soil indices for MODIS-EOS. Remote
      Sensing of Environment, 49:224–234, 1994.

      C. O. Justice, et al. The moderate resolution imaging spectroradiometer (MODIS): Land remote sensing for
      global change research. IEEE Transactions on Geoscience and Remote Sensing, 36:1–22, 1998.

      R. E. Crippen. Calculating the vegetation index faster. Remote Sensing of Environment, 34(1):71–73, 1990.

      D. W. Deering, J. W. Rouse, R. H. Haas, and H. H. Schell. Measuring ¨
                                                                          forage productionöf grazing units from
      Landsat-MSS data. In Proceedings of the Tenth International Symposium on Remote Sensing of the
      Environment. ERIM, Ann Arbor, Michigan, USA, pages 1169–1198, 1975.




                                      IGARSS 2010, Honolulu
Introduction Radiometry Textures Other


Example: NDVI




                                     IGARSS 2010, Honolulu
      Introduction Radiometry Textures Other


Soil indices



                                      IR       Redness Index [1]
                                      IC       Color Index [1]
                                      IB       Brilliance Index [2]
                                     IB2       Brilliance Index [2]
      P. et al. Caracteristiques spectrales des surfaces sableuses de la region cotiere nord-ouest de l’Egypte:
      application aux donnees satellitaires Spot. In 2eme Journeees de Teledetection: Caracterisation et suivi des
      milieux terrestres en regions arides et tropicales, pages 27–38. ORSTOM, Collection Colloques et
      Seminaires, Paris, Dec. 1990.

      E. Nicoloyanni. Un indice de changement diachronique appliqué deux sècnes Landsat MSS sur Athènes
      (grèce). International Journal of Remote Sensing, 11(9):1617–1623, 1990.




                                     IGARSS 2010, Honolulu
Introduction Radiometry Textures Other


Example: IC




                                    IGARSS 2010, Honolulu
     Introduction Radiometry Textures Other


Water indices
            SRWI            Simple Ratio Water Index [1]
           NDWI             Normalized Difference Water Index [2]
           NDWI2            Normalized Difference Water Index [3]
           MNDWI            Modified Normalized Difference Water Index [4]
            NDPI            Normalized Difference Pond Index [5]
            NDTI            Normalized Difference Turbidity Index [5]
             SA             Spectral Angle
     P. J. Zarco-Tejada and S. Ustin. Modeling canopy water content for carbon estimates from MODIS data at
     land EOS validation sites. In International Geoscience and Remote Sensing Symposium, IGARSS ’01,
     pages 342–344, 2001.

     B. cai Gao. NDWI - a normalized difference water index for remote sensing of vegetation liquid water from
     space. Remote Sensing of Environment, 58(3):257–266, Dec. 1996.

     S. K. McFeeters. The use of the normalized difference water index (NDWI) in the delineation of open water
     features. International Journal of Remote Sensing, 17(7):1425–1432, 1996.

     H. Xu. Modification of normalised difference water index (ndwi) to enhance open water features in remotely
     sensed imagery. International Journal of Remote Sensing, 27(14):3025–3033, 2006.

     J. Lacauxa, Y. T. andC. Vignollesa, J. Ndioneb, and M. Lafayec. Classification of ponds from high-spatial
     resolution remote sensing: Application to rift valley fever epidemics in senegal. Remote Sensing of
     Environment, 106(1):66–74, 2007.

                                    IGARSS 2010, Honolulu
Introduction Radiometry Textures Other


Example: NDWI2




                                     IGARSS 2010, Honolulu
      Introduction Radiometry Textures Other


Built-up indices




                    NDBI        Normalized Difference Built Up Index [1]
                     ISU        Index Surfaces Built [2]
      Y. Z. J. G. S. Ni. Use of normalized difference built-up index in automatically mapping urban areas from TM
      imagery. International Journal of Remote Sensing, 24(3):583–594, 2003.

      A. Abdellaoui and A. Rougab. Caractérisation de la reponse du bâti: application au complexe urbain de Blida
      (Algérie). In Télédétection des milieux urbains et périurbains, AUPELF - UREF, Actes des sixièmes Journées
      scientifiques du réseau Télédétection de l’AUF, pages 47–64, 1997.




                                     IGARSS 2010, Honolulu
Introduction Radiometry Textures Other


Texture
                         Energy                                  f1 =               i,j   g(i, j)2


                         Entropy             f2 = −      i,j   g(i, j) log2 g(i, j), or 0 if g(i, j) = 0


                                                                                 (i−µ)(j−µ)g(i,j)
                       Correlation                       f3 =            i,j           σ2


                   Difference Moment                     f4 =                     1             g(i, j)
                                                                          i,j 1+(i−j)2



                 Inertia (a.k.a. Contrast)                 f5 =                i,j (i   − j)2 g(i, j)


                     Cluster Shade                f6 =         i,j ((i   − µ) + (j − µ))3 g(i, j)

                  Cluster Prominence              f7 =         i,j ((i   − µ) + (j − µ))4 g(i, j)


                                                                                                2
                                                                               i,j (i,j)g(i,j)−µt
                  Haralick’s Correlation                   f8 =
                                                                                       σ2
                                                                                         t


     Robert M. Haralick, K. Shanmugam, and Its’Hak Dinstein, “Textural features for image classification,” IEEE
     Transactions on Systems, Man and Cybernetics, vol. 3, no. 6, pp. 610–621, Nov 1973.

                                     IGARSS 2010, Honolulu
     Introduction Radiometry Textures Other


Example: Inertia on the green channel




                                     IGARSS 2010, Honolulu
Introduction Radiometry Textures Other


Using these elements to build others



   Example: distance to water




                               IGARSS 2010, Honolulu
      Introduction Radiometry Textures Other


Hands On



    1. Monteverdi: Filtering → Feature extraction
    2. Select the image to extract the features
    3. Choose the feature to generate
    4. Try different parameters and look at the preview
    5. Using the output tab, pick the relevant features
    6. Generate the feature image




                               IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented




                           Pragmatic Remote Sensing
                                         Image Classification


                                  J. Inglada1 , E. Christophe2

           1 C ENTRE D ’É TUDES        S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE
                  2 C ENTRE FOR     R EMOTE I MAGING , S ENSING AND P ROCESSING ,
                                 N ATIONAL U NIVERSITY OF S INGAPORE




   This content is provided under a Creative Commons Attribution 3.0 Unported License


                                        IGARSS 2010, Honolulu
  Intro Unsupervised Supervised Object oriented


Outline of the presentation



   What is classification


   Unsupervised classification


   Supervised classification


   Object oriented classification




                                        IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented


What is classification



         Classification is the procedure of assigning a class label to
         objects (pixels in the image)
         Supervised
         Unsupervised
         Pixel-based
         Object oriented




                                 IGARSS 2010, Honolulu
  Intro Unsupervised Supervised Object oriented


What can be used for classification



         Raw images
         Extracted features
                Radiometric indices: NDVI, brightness, color, spectral
                angle, etc.
                Statistics, textures, etc.
                Transforms: PCA, MNF, wavelets, etc.
         Ancillary data
                DEM, Maps, etc.




                                 IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented


Classification in a nutshell




         Select the pertinent attributes (features, etc.)
         Stack them into a vector for each pixel
         Select the appropriate label (in the supervised case)
         Feed your classifier




                                 IGARSS 2010, Honolulu
  Intro Unsupervised Supervised Object oriented


Unsupervised classification



         Also called clustering
         Needs interpretation (relabeling)
                Class labels are just numbers
         No need for ground truth/examples
                But often, the number of classes has to be manually
                selected
                Other parameters too
         Examples: k-means, ISO-Data, Self Organizing Map




                                 IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented


Example: K-means clustering
               1. k initial "means" are randomly
               selected from the data set.




               2. k clusters are created by associating every
               observation with the nearest mean. The partitions here
               represent the Voronoi diagram generated by the means.




               3. The centroid of each of the k clusters becomes the new means.




               Steps 2 and 3 are repeated until convergence has been reached.




  Image credits: Wikipedia
                                        IGARSS 2010, Honolulu
  Intro Unsupervised Supervised Object oriented


Example: 5 class K-means




                                        IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented


Hands On



    1. Monteverdi: Learning → KMeans Clustering
    2. Select the image to classify
    3. You can use only a subset of the pixels to perform the
       centroid estimation
    4. Select an appropriate number of classes for your image
    5. Set the number of iterations and the convergence threshold
    6. Run




                                 IGARSS 2010, Honolulu
  Intro Unsupervised Supervised Object oriented


Supervised classification




         Needs examples/ground truth
         Examples can have thematic labels
                Land-Use vs Land-Cover
         Examples: neural networks, Bayesian maximum likelihood,
         Support Vector Machines




                                 IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented


Example: SVM


           H3 (green) doesn’t separate the 2 classes.     Maximum-margin hyperplane and margins for a
              H1 (blue) does, with a small margin.         SVM trained with samples from two classes.
              H2 (red) with the maximum margin.         Samples on the margin are called the support vectors.




    Image credits: Wikipedia




                                         IGARSS 2010, Honolulu
    Intro Unsupervised Supervised Object oriented


Example: 6 class SVM
Water, vegetation, buildings, roads, clouds, shadows




                                         IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented


Hands On

    1. Monteverdi: Learning → SVM Classification
    2. Select the image to classify
    3. Add a class
                You can give it a name, a color
    4. Select samples for each class
                Draw polygons and use the End Polygon to close them
                You can assign polygons to either the training or the test
                sets; or you can use the random selection
    5. Learn
    6. Validate: displays a confusion matrix and the classification
       accuracy
    7. Display results


                                 IGARSS 2010, Honolulu
  Intro Unsupervised Supervised Object oriented


Object oriented classification

         Pixels may not be the best way to describe the classes of
         interest
                shape, size, and other region-based characteristics may be
                more meaningful
         We need to provide the classifier a set of regions
                Image segmentation
         And their characteristics
                Compute features per region
         Since individual objects are meaningful, active learning
         can be implemented
                See presentation WE2.L06.2 “LAZY YET EFFICIENT
                LAND-COVER MAP GENERATION FOR HR OPTICAL
                IMAGES”, Wednesday, July 28, 10:25 - 12:05, by Julien
                Michel, Julien Malik and Jordi Inglada.

                                 IGARSS 2010, Honolulu
Intro Unsupervised Supervised Object oriented


No hands on




  But a demo if the time allows it!




                                 IGARSS 2010, Honolulu
Strategies Detectors Application




                           Pragmatic Remote Sensing
                                          Change Detection


                                  J. Inglada1 , E. Christophe2

           1 C ENTRE D ’É TUDES        S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE
                  2 C ENTRE FOR     R EMOTE I MAGING , S ENSING AND P ROCESSING ,
                                 N ATIONAL U NIVERSITY OF S INGAPORE




   This content is provided under a Creative Commons Attribution 3.0 Unported License


                                        IGARSS 2010, Honolulu
                  Strategies Detectors Application


Outline of the presentation



   Classical strategies for change detection



   Available detectors in OTB



   Interactive Change Detection




                                        IGARSS 2010, Honolulu
Strategies Detectors Application


Possible approaches


      Strategy 1: Simple detectors
      Produce an image of change likelihood (by differences,
      ratios or any other approach) and thresholding it in order to
      produce the change map.
      Strategy 2: Post Classification Comparison
      Obtain two land-use maps independently for each date and
      comparing them.
      Strategy 3: Joint classification
      Produce the change map directly from a joint classification
      of both images.




                             IGARSS 2010, Honolulu
           Strategies Detectors Application


Available detectors
      Pixel-wise differencing of mean image values:

                                 ID (i, j) = I2 (i, j) − I1 (i, j).                 (1)

      Pixel-wise ratio of means:
                                                        I2 (i, j) I1 (i, j)
                        IR (i, j) = 1 − min                      ,            .     (2)
                                                        I1 (i, j) I2 (i, j)

      Local correlation coefficient:

                                 1     i,j (I1 (i, j)   − mI1 )(I2 (i, j) − mI2 )
                   Iρ (i, j) =                                                      (3)
                                 N                        σI1 σI2

      Kullback-Leibler distance between local distributions (mono and
      multi-scale)
      Mutual information (several implementations)
                             IGARSS 2010, Honolulu
Strategies Detectors Application


Hands On
Displaying differences




      1. Monteverdi: File → Concatenate Images
      2. Select the amplitudes of the 2 images to compare and
         build a 2 band image
      3. Monteverdi: Visualization → Viewer
      4. Select the 2 band image just created
      5. In the Setup tab, select RGB composition mode and select,
         for instance, 1,2,2.
      6. Interpret the colors you observe
      7. The same thing could be done using feature images



                                  IGARSS 2010, Honolulu
                Strategies Detectors Application


Hands On
Thresholding differences




      1. Monteverdi: Filtering → Band Math
      2. Select the amplitudes of the 2 images to compare and
         compute a subtraction
      3. Monteverdi: Filtering → Threshold
      4. Select the difference image just created and play with the
         threshold value
      5. The same thing could be done using image ratios
      6. The same thing could be done using feature images




                                  IGARSS 2010, Honolulu
Strategies Detectors Application


Interactive Change Detection




          Generation of binary change maps using a GUI
          Uses simple change detectors as input
          The operator gives examples of the change and no change
          classes
          SVM learning and classification are applied




                                  IGARSS 2010, Honolulu
                Strategies Detectors Application


Hands On
Joint Classification


      1. Monteverdi: Filtering → Change Detection
      2. Select the 2 images to process
                Raw images at 2 different dates
      3. Uncheck Use Change Detectors
      4. Use the Changed/Unchanged Class buttons to select one
         of the classes
      5. Draw polygons on the images in order to give training
         samples to the algorithm
      6. End Polygon button is used to close the current polygon
      7. After selecting several polygons per class push Learn
      8. The Display Results button will show the result change
         detection

                                  IGARSS 2010, Honolulu
Strategies Detectors Application


Hands On
Joint Classification with Change Detectors




      1. Monteverdi: Filtering → Change Detection
      2. Select the 2 images to process
                Raw images at 2 different dates
      3. Make sure the Use Change Detectors check-box is
         activated
      4. Proceed as in the previous case




                                  IGARSS 2010, Honolulu
                Strategies Detectors Application


Hands On
Joint Classification with Features




      1. Monteverdi: Filtering → Change Detection
      2. Select the 2 images to process
                Feature images at 2 different dates
      3. Proceed as in the previous cases




                                  IGARSS 2010, Honolulu

More Related Content

Viewers also liked

Madagascar2011 - 09 OTB Change detection framework
Madagascar2011 - 09 OTB Change detection frameworkMadagascar2011 - 09 OTB Change detection framework
Madagascar2011 - 09 OTB Change detection frameworkotb
 
Madagascar2011 - 02 - Présentation OTB
Madagascar2011 - 02 - Présentation OTBMadagascar2011 - 02 - Présentation OTB
Madagascar2011 - 02 - Présentation OTBotb
 
Presentation of the Monteverdi application
Presentation of the Monteverdi applicationPresentation of the Monteverdi application
Presentation of the Monteverdi applicationotb
 
Développement des chaînes de traitement d'images GEOSUD
Développement des chaînes de traitement d'images GEOSUDDéveloppement des chaînes de traitement d'images GEOSUD
Développement des chaînes de traitement d'images GEOSUDotb
 
センター読解(等位接続詞 and)
センター読解(等位接続詞 and)センター読解(等位接続詞 and)
センター読解(等位接続詞 and)hide1970
 
Advantages and disadvantages of Remote Sensing
Advantages and disadvantages of Remote SensingAdvantages and disadvantages of Remote Sensing
Advantages and disadvantages of Remote SensingEr Abhi Vashi
 
Application of Remote Sensing in Agriculture
Application of Remote Sensing in AgricultureApplication of Remote Sensing in Agriculture
Application of Remote Sensing in AgricultureUTTAM KUMAR
 
Ppt on remote sensing system
Ppt on remote sensing systemPpt on remote sensing system
Ppt on remote sensing systemAlisha Korpal
 
REMOTE SENSING
REMOTE SENSINGREMOTE SENSING
REMOTE SENSINGKANNAN
 
Basic of Remote Sensing
Basic of Remote SensingBasic of Remote Sensing
Basic of Remote Sensinggueste5cfed
 
Remote Sensing PPT
Remote Sensing PPTRemote Sensing PPT
Remote Sensing PPTAmal Murali
 
OTB: logiciel libre de traitement d'images satellites
OTB: logiciel libre de traitement d'images satellitesOTB: logiciel libre de traitement d'images satellites
OTB: logiciel libre de traitement d'images satellitesotb
 
Présentation générale de l'Orfeo ToolBox (12.2014)
Présentation générale de l'Orfeo ToolBox (12.2014)Présentation générale de l'Orfeo ToolBox (12.2014)
Présentation générale de l'Orfeo ToolBox (12.2014)otb
 

Viewers also liked (14)

Madagascar2011 - 09 OTB Change detection framework
Madagascar2011 - 09 OTB Change detection frameworkMadagascar2011 - 09 OTB Change detection framework
Madagascar2011 - 09 OTB Change detection framework
 
Madagascar2011 - 02 - Présentation OTB
Madagascar2011 - 02 - Présentation OTBMadagascar2011 - 02 - Présentation OTB
Madagascar2011 - 02 - Présentation OTB
 
Presentation of the Monteverdi application
Presentation of the Monteverdi applicationPresentation of the Monteverdi application
Presentation of the Monteverdi application
 
Développement des chaînes de traitement d'images GEOSUD
Développement des chaînes de traitement d'images GEOSUDDéveloppement des chaînes de traitement d'images GEOSUD
Développement des chaînes de traitement d'images GEOSUD
 
センター読解(等位接続詞 and)
センター読解(等位接続詞 and)センター読解(等位接続詞 and)
センター読解(等位接続詞 and)
 
Advantages and disadvantages of Remote Sensing
Advantages and disadvantages of Remote SensingAdvantages and disadvantages of Remote Sensing
Advantages and disadvantages of Remote Sensing
 
Application of Remote Sensing in Agriculture
Application of Remote Sensing in AgricultureApplication of Remote Sensing in Agriculture
Application of Remote Sensing in Agriculture
 
remote sensing
remote sensingremote sensing
remote sensing
 
Ppt on remote sensing system
Ppt on remote sensing systemPpt on remote sensing system
Ppt on remote sensing system
 
REMOTE SENSING
REMOTE SENSINGREMOTE SENSING
REMOTE SENSING
 
Basic of Remote Sensing
Basic of Remote SensingBasic of Remote Sensing
Basic of Remote Sensing
 
Remote Sensing PPT
Remote Sensing PPTRemote Sensing PPT
Remote Sensing PPT
 
OTB: logiciel libre de traitement d'images satellites
OTB: logiciel libre de traitement d'images satellitesOTB: logiciel libre de traitement d'images satellites
OTB: logiciel libre de traitement d'images satellites
 
Présentation générale de l'Orfeo ToolBox (12.2014)
Présentation générale de l'Orfeo ToolBox (12.2014)Présentation générale de l'Orfeo ToolBox (12.2014)
Présentation générale de l'Orfeo ToolBox (12.2014)
 

Similar to Pragmatic remote sensing handout

The Orfeo Toolbox remote sensing image processing software
The Orfeo Toolbox remote sensing image processing softwareThe Orfeo Toolbox remote sensing image processing software
The Orfeo Toolbox remote sensing image processing softwaremelaneum
 
Monteverdi - Remote sensing software from educational to operational context
Monteverdi - Remote sensing software from educational to operational context Monteverdi - Remote sensing software from educational to operational context
Monteverdi - Remote sensing software from educational to operational context otb
 
SOFIA project INDRA NEO Publication
SOFIA project INDRA NEO PublicationSOFIA project INDRA NEO Publication
SOFIA project INDRA NEO PublicationSofia Eu
 
OTB-FOSS4G-2010
OTB-FOSS4G-2010OTB-FOSS4G-2010
OTB-FOSS4G-2010otb
 
SOFIA - Semantic Technologies and Techniques for Interoperable Information in...
SOFIA - Semantic Technologies and Techniques for Interoperable Information in...SOFIA - Semantic Technologies and Techniques for Interoperable Information in...
SOFIA - Semantic Technologies and Techniques for Interoperable Information in...Sofia Eu
 
Wonderland @ Cattid - Sun's Virtual Workplace
Wonderland @ Cattid - Sun's Virtual WorkplaceWonderland @ Cattid - Sun's Virtual Workplace
Wonderland @ Cattid - Sun's Virtual Workplacevincenzo de simone
 
Making Heterogeneous Ontologies Interoperable Through Standardisation
Making Heterogeneous Ontologies Interoperable Through StandardisationMaking Heterogeneous Ontologies Interoperable Through Standardisation
Making Heterogeneous Ontologies Interoperable Through StandardisationChristoph Lange
 
8 ontology integration and interoperability (onto i op)
8 ontology integration and interoperability (onto i op)8 ontology integration and interoperability (onto i op)
8 ontology integration and interoperability (onto i op)AEGIS-ACCESSIBLE Projects
 
Second Serenoa Newsletter
Second Serenoa NewsletterSecond Serenoa Newsletter
Second Serenoa NewsletterSerenoa Project
 
mini project report on visual writing.pptx
mini project report on visual writing.pptxmini project report on visual writing.pptx
mini project report on visual writing.pptxfreespace000xd
 
DHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTEDHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTEIRJET Journal
 
DHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTEDHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTEIRJET Journal
 
Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...
Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...
Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...Laurent Lefort
 
The Distributed Ontology Language (DOL): Use Cases, Syntax, and Extensibility
The Distributed Ontology Language (DOL): Use Cases, Syntax, and ExtensibilityThe Distributed Ontology Language (DOL): Use Cases, Syntax, and Extensibility
The Distributed Ontology Language (DOL): Use Cases, Syntax, and ExtensibilityChristoph Lange
 
cv_romain_gehrig_2015-10-08
cv_romain_gehrig_2015-10-08cv_romain_gehrig_2015-10-08
cv_romain_gehrig_2015-10-08Romain Gehrig
 
Efficient Intralingual Text To Speech Web Podcasting And Recording
Efficient Intralingual Text To Speech Web Podcasting And RecordingEfficient Intralingual Text To Speech Web Podcasting And Recording
Efficient Intralingual Text To Speech Web Podcasting And RecordingIOSR Journals
 
BEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors India
BEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors IndiaBEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors India
BEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors IndiaTutors India
 

Similar to Pragmatic remote sensing handout (20)

The Orfeo Toolbox remote sensing image processing software
The Orfeo Toolbox remote sensing image processing softwareThe Orfeo Toolbox remote sensing image processing software
The Orfeo Toolbox remote sensing image processing software
 
Monteverdi - Remote sensing software from educational to operational context
Monteverdi - Remote sensing software from educational to operational context Monteverdi - Remote sensing software from educational to operational context
Monteverdi - Remote sensing software from educational to operational context
 
SOFIA project INDRA NEO Publication
SOFIA project INDRA NEO PublicationSOFIA project INDRA NEO Publication
SOFIA project INDRA NEO Publication
 
Neon Lifecycle Support for Networked Ontologies
Neon Lifecycle Support for Networked OntologiesNeon Lifecycle Support for Networked Ontologies
Neon Lifecycle Support for Networked Ontologies
 
OTB-FOSS4G-2010
OTB-FOSS4G-2010OTB-FOSS4G-2010
OTB-FOSS4G-2010
 
SOFIA - Semantic Technologies and Techniques for Interoperable Information in...
SOFIA - Semantic Technologies and Techniques for Interoperable Information in...SOFIA - Semantic Technologies and Techniques for Interoperable Information in...
SOFIA - Semantic Technologies and Techniques for Interoperable Information in...
 
Wonderland @ Cattid - Sun's Virtual Workplace
Wonderland @ Cattid - Sun's Virtual WorkplaceWonderland @ Cattid - Sun's Virtual Workplace
Wonderland @ Cattid - Sun's Virtual Workplace
 
Making Heterogeneous Ontologies Interoperable Through Standardisation
Making Heterogeneous Ontologies Interoperable Through StandardisationMaking Heterogeneous Ontologies Interoperable Through Standardisation
Making Heterogeneous Ontologies Interoperable Through Standardisation
 
8 ontology integration and interoperability (onto i op)
8 ontology integration and interoperability (onto i op)8 ontology integration and interoperability (onto i op)
8 ontology integration and interoperability (onto i op)
 
Second Serenoa Newsletter
Second Serenoa NewsletterSecond Serenoa Newsletter
Second Serenoa Newsletter
 
mini project report on visual writing.pptx
mini project report on visual writing.pptxmini project report on visual writing.pptx
mini project report on visual writing.pptx
 
DHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTEDHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTE
 
DHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTEDHWANI- THE VOICE OF DEAF AND MUTE
DHWANI- THE VOICE OF DEAF AND MUTE
 
Research at RMOD
Research at RMODResearch at RMOD
Research at RMOD
 
Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...
Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...
Semantically-Enabling the Web of Things: The W3C Semantic Sensor Network Onto...
 
Shuzworld Analysis
Shuzworld AnalysisShuzworld Analysis
Shuzworld Analysis
 
The Distributed Ontology Language (DOL): Use Cases, Syntax, and Extensibility
The Distributed Ontology Language (DOL): Use Cases, Syntax, and ExtensibilityThe Distributed Ontology Language (DOL): Use Cases, Syntax, and Extensibility
The Distributed Ontology Language (DOL): Use Cases, Syntax, and Extensibility
 
cv_romain_gehrig_2015-10-08
cv_romain_gehrig_2015-10-08cv_romain_gehrig_2015-10-08
cv_romain_gehrig_2015-10-08
 
Efficient Intralingual Text To Speech Web Podcasting And Recording
Efficient Intralingual Text To Speech Web Podcasting And RecordingEfficient Intralingual Text To Speech Web Podcasting And Recording
Efficient Intralingual Text To Speech Web Podcasting And Recording
 
BEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors India
BEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors IndiaBEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors India
BEST IMAGE PROCESSING TOOLS TO EXPECT in 2023 – Tutors India
 

More from otb

ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPSONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPSotb
 
Build OTB with the SuperBuild
Build OTB with the SuperBuildBuild OTB with the SuperBuild
Build OTB with the SuperBuildotb
 
ORFEO ToolBox Project Steering committee
ORFEO ToolBox Project Steering committeeORFEO ToolBox Project Steering committee
ORFEO ToolBox Project Steering committeeotb
 
OTB modular architecture
OTB modular architectureOTB modular architecture
OTB modular architectureotb
 
0 intro
0 intro0 intro
0 introotb
 
ORFEO ToolBox at CS-SI From research to operational applications
ORFEO ToolBox at CS-SI From research to operational applicationsORFEO ToolBox at CS-SI From research to operational applications
ORFEO ToolBox at CS-SI From research to operational applicationsotb
 
Usages of OTB at SERTIT OTB Users meeting and hackfest 2015
Usages of OTB at SERTIT OTB Users meeting and hackfest 2015Usages of OTB at SERTIT OTB Users meeting and hackfest 2015
Usages of OTB at SERTIT OTB Users meeting and hackfest 2015otb
 
Monitoring tropical forest cover Activities of ONFI in remote sensing
Monitoring tropical forest cover Activities of ONFI in remote sensingMonitoring tropical forest cover Activities of ONFI in remote sensing
Monitoring tropical forest cover Activities of ONFI in remote sensingotb
 
Présentation de l'ORFEO ToolBox au FROG2013
Présentation de l'ORFEO ToolBox au FROG2013Présentation de l'ORFEO ToolBox au FROG2013
Présentation de l'ORFEO ToolBox au FROG2013otb
 
Madagascar2011 - 08 - OTB segmentation and classification
Madagascar2011 - 08 - OTB segmentation and classificationMadagascar2011 - 08 - OTB segmentation and classification
Madagascar2011 - 08 - OTB segmentation and classificationotb
 
Madagascar2011 - 07 - OTB radiometry processing
Madagascar2011 - 07 -  OTB radiometry processingMadagascar2011 - 07 -  OTB radiometry processing
Madagascar2011 - 07 - OTB radiometry processingotb
 
Madagascar2011 - 06 - OTB geometry processing
Madagascar2011 - 06 - OTB geometry processingMadagascar2011 - 06 - OTB geometry processing
Madagascar2011 - 06 - OTB geometry processingotb
 
Madagascar2011 - 05 - Monteverdi first steps
Madagascar2011 - 05 - Monteverdi first stepsMadagascar2011 - 05 - Monteverdi first steps
Madagascar2011 - 05 - Monteverdi first stepsotb
 
Madagascar2011 - 04 - Présentation configuration pratical work
Madagascar2011 - 04 - Présentation configuration pratical workMadagascar2011 - 04 - Présentation configuration pratical work
Madagascar2011 - 04 - Présentation configuration pratical workotb
 
Madagascar2011 - 03 - Présentation Monteverdi
Madagascar2011 - 03 - Présentation MonteverdiMadagascar2011 - 03 - Présentation Monteverdi
Madagascar2011 - 03 - Présentation Monteverdiotb
 
Madagascar2011 - 10 - OTB Object Based Image Analysis
Madagascar2011 - 10 -  OTB Object Based Image AnalysisMadagascar2011 - 10 -  OTB Object Based Image Analysis
Madagascar2011 - 10 - OTB Object Based Image Analysisotb
 
AUF 11 - 02 Geometrie
AUF 11 - 02 GeometrieAUF 11 - 02 Geometrie
AUF 11 - 02 Geometrieotb
 
AUF 11 - 03 Radiometrie
AUF 11 - 03 RadiometrieAUF 11 - 03 Radiometrie
AUF 11 - 03 Radiometrieotb
 
AUF 11 - 04 Primitives
AUF 11 - 04 PrimitivesAUF 11 - 04 Primitives
AUF 11 - 04 Primitivesotb
 

More from otb (19)

ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPSONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
ONLINE IMAGE PROCESSING WITH ORFEOTOOLBOX WPS
 
Build OTB with the SuperBuild
Build OTB with the SuperBuildBuild OTB with the SuperBuild
Build OTB with the SuperBuild
 
ORFEO ToolBox Project Steering committee
ORFEO ToolBox Project Steering committeeORFEO ToolBox Project Steering committee
ORFEO ToolBox Project Steering committee
 
OTB modular architecture
OTB modular architectureOTB modular architecture
OTB modular architecture
 
0 intro
0 intro0 intro
0 intro
 
ORFEO ToolBox at CS-SI From research to operational applications
ORFEO ToolBox at CS-SI From research to operational applicationsORFEO ToolBox at CS-SI From research to operational applications
ORFEO ToolBox at CS-SI From research to operational applications
 
Usages of OTB at SERTIT OTB Users meeting and hackfest 2015
Usages of OTB at SERTIT OTB Users meeting and hackfest 2015Usages of OTB at SERTIT OTB Users meeting and hackfest 2015
Usages of OTB at SERTIT OTB Users meeting and hackfest 2015
 
Monitoring tropical forest cover Activities of ONFI in remote sensing
Monitoring tropical forest cover Activities of ONFI in remote sensingMonitoring tropical forest cover Activities of ONFI in remote sensing
Monitoring tropical forest cover Activities of ONFI in remote sensing
 
Présentation de l'ORFEO ToolBox au FROG2013
Présentation de l'ORFEO ToolBox au FROG2013Présentation de l'ORFEO ToolBox au FROG2013
Présentation de l'ORFEO ToolBox au FROG2013
 
Madagascar2011 - 08 - OTB segmentation and classification
Madagascar2011 - 08 - OTB segmentation and classificationMadagascar2011 - 08 - OTB segmentation and classification
Madagascar2011 - 08 - OTB segmentation and classification
 
Madagascar2011 - 07 - OTB radiometry processing
Madagascar2011 - 07 -  OTB radiometry processingMadagascar2011 - 07 -  OTB radiometry processing
Madagascar2011 - 07 - OTB radiometry processing
 
Madagascar2011 - 06 - OTB geometry processing
Madagascar2011 - 06 - OTB geometry processingMadagascar2011 - 06 - OTB geometry processing
Madagascar2011 - 06 - OTB geometry processing
 
Madagascar2011 - 05 - Monteverdi first steps
Madagascar2011 - 05 - Monteverdi first stepsMadagascar2011 - 05 - Monteverdi first steps
Madagascar2011 - 05 - Monteverdi first steps
 
Madagascar2011 - 04 - Présentation configuration pratical work
Madagascar2011 - 04 - Présentation configuration pratical workMadagascar2011 - 04 - Présentation configuration pratical work
Madagascar2011 - 04 - Présentation configuration pratical work
 
Madagascar2011 - 03 - Présentation Monteverdi
Madagascar2011 - 03 - Présentation MonteverdiMadagascar2011 - 03 - Présentation Monteverdi
Madagascar2011 - 03 - Présentation Monteverdi
 
Madagascar2011 - 10 - OTB Object Based Image Analysis
Madagascar2011 - 10 -  OTB Object Based Image AnalysisMadagascar2011 - 10 -  OTB Object Based Image Analysis
Madagascar2011 - 10 - OTB Object Based Image Analysis
 
AUF 11 - 02 Geometrie
AUF 11 - 02 GeometrieAUF 11 - 02 Geometrie
AUF 11 - 02 Geometrie
 
AUF 11 - 03 Radiometrie
AUF 11 - 03 RadiometrieAUF 11 - 03 Radiometrie
AUF 11 - 03 Radiometrie
 
AUF 11 - 04 Primitives
AUF 11 - 04 PrimitivesAUF 11 - 04 Primitives
AUF 11 - 04 Primitives
 

Recently uploaded

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 

Recently uploaded (20)

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 

Pragmatic remote sensing handout

  • 1. Pragmatic Remote Sensing A Hands-on Approach to Processing J. Inglada1 , E. Christophe2 1 C ENTRE D ’É TUDES S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE 2 C ENTRE FOR R EMOTE I MAGING , S ENSING AND P ROCESSING , N ATIONAL U NIVERSITY OF S INGAPORE This content is provided under a Creative Commons Attribution 3.0 Unported License IGARSS 2010, Honolulu Table of Contents 1. General introduction 2. Pre-processing 2.1 Geometric corrections 2.2 Radiometric corrections 3. Feature extraction 4. Image classification 5. Change detection IGARSS 2010, Honolulu
  • 2. Introduction to the Orfeo Toolbox Applications and librairy Pragmatic Remote Sensing A Hands-on Approach to Processing J. Inglada1 , E. Christophe2 1 C ENTRE D ’É TUDES S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE 2 C ENTRE FOR R EMOTE I MAGING , S ENSING AND P ROCESSING , N ATIONAL U NIVERSITY OF S INGAPORE This content is provided under a Creative Commons Attribution 3.0 Unported License IGARSS 2010, Honolulu Introduction to the Orfeo Toolbox Applications and librairy Why? Common problems Reading images Accessing metadata Implementing state of the art algorithms ⇒ to be able to extract the most information, we need to use the best of what is available: data, algorithms,. . . IGARSS 2010, Honolulu
  • 3. Introduction to the Orfeo Toolbox Applications and librairy What When Why How What is Orfeo Toolbox (OTB)? In the frame of CNES ORFEO Program Goal Make the development of new algorithms and their validation easier C++ library: provide many algorithms (pre-processing, image analysis) with a common interface Open-source: free to use, to modify, you can make your own software based on OTB and sell it Multiplatform: Windows, Linux, Unix, Mac IGARSS 2010, Honolulu Introduction to the Orfeo Toolbox Applications and librairy What When Why How A bit of History Everything begins (2006) Started in 2006 by CNES (French Space Agency), funding several full-time developers Targeted at high resolution images (Pleiades to be launched in 2010) but with application to other sensors 4 year budget, over 1,000,000e recently renewed for 1 additional year (500,000e) Moving to user friendly applications (2008) Strong interactions with the end-user community highlighted that applications for non-programmers are important Several applications for non programmers (with GUI) since early 2008 Several training courses (3/5-day courses) given in France, Belgium, Madagascar, UNESCO and now Hawaii IGARSS 2010, Honolulu
  • 4. Introduction to the Orfeo Toolbox Applications and librairy What When Why How Why doing that? Is it successful so far? OTB user community growing steadily (programmers and application users) Presented at IGARSS and ISPRS in 2008, special session in IGARSS in 2009 CNES is planning to extend the budget for several more years Value analysis is very positive (cf. Ohloh): re-using is powerful Why make a multi-million dollar software and give it for free? CNES is not a software company One goal is to encourage research: it is critical for researchers to know what is in the box CNES makes satellites and wants to make sure the images are used if more people have the tools to use satellite images, it is good for CNES IGARSS 2010, Honolulu Introduction to the Orfeo Toolbox Applications and librairy What When Why How How? How to reach this goal? Using the best work of others: do not reinvent the wheel Many open-source libraries of good quality ITK: software architecture (streaming, multithreading), many image processing algorithms Gdal/Ogr: reading data format (geotiff, raw, png, jpeg, shapefile, . . . ) Ossim: sensor models (Spot, RPC, SAR, . . . ) and map projections 6S: radiometric corrections and many other: libLAS (lidar data), Edison (Mean Shift clustering), libSiftFast (SIFT), Boost (graph), libSVM (Support Vector Machines) ⇒ all behind a common interface IGARSS 2010, Honolulu
  • 5. Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings Application Currently Image viewer Image Segmentation Image Classification (by SVM) Land Cover Feature Extraction Road Extraction Orthorectification (with Pan Sharpening) Fine registration Image to database registration Object counting Urban area detection more to come IGARSS 2010, Honolulu Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings Components available Currently Most satellite image formats Geometric corrections Radiometric corrections Change detection Feature extraction Classification Huge documentation available Software Guide (+600 pages pdf), also the online version Doxygen: documentation for developers IGARSS 2010, Honolulu
  • 6. Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings A powerful architecture Modular Easy to combine different blocks to do new processing Scalable Streaming (processing huge images on the flow) transparent for the user of the library Multithreading (using multicore CPUs) also IGARSS 2010, Honolulu Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings But a steep learning curve for the programmer Advanced programming concepts Template metaprogramming (generic programming) Design patterns (Factory, Functors, Smart Pointers, ...) Steep learning curve tch scra m n fro tio s olu learning OTB Effort Task complexity IGARSS 2010, Honolulu
  • 7. Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings Ask questions As for everything: easier when you’re not alone Much easier if you have somebody around to help! We didn’t know anything not so long ago... Not surprising that most software companies now focus their offer on support: help is important IGARSS 2010, Honolulu Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings Making it easier for the users: Monteverdi Module architecture Standard input/output Easy to customize for a specific purpose Full streaming or caching the data Each module follows a MVC pattern IGARSS 2010, Honolulu
  • 8. Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings Making it easier for the users: Monteverdi IGARSS 2010, Honolulu Introduction to the Orfeo Toolbox Applications and librairy Components Architecture But Monteverdi Bindings Bindings: access through other languages Not everybody uses C++! Bindings provide an access to the library through other languages Python: available Java: available IDL/Envi: cooperation with ITT VIS to provide a method to access OTB through idl/envi (working but no automatic generation) Matlab: recent user contribution (R. Bellens from TU Delft) Other languages supported by Cable Swig might be possible (Tcl, Ruby?) IGARSS 2010, Honolulu
  • 9. Introduction Atmospheric corrections Pansharpening Image radiometry in ORFEO Toolbox From digital number to reflectance J. Inglada1 , E. Christophe2 1 C ENTRE D ’É TUDES S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE 2 C ENTRE FOR R EMOTE I MAGING , S ENSING AND P ROCESSING , N ATIONAL U NIVERSITY OF S INGAPORE This content is provided under a Creative Commons Attribution 3.0 Unported License IGARSS 2010, Honolulu Introduction Atmospheric corrections Pansharpening Introduction Purpose of radiometry Go back to the physics from the image 6S Using 6S library: http://6s.ltdri.org/ Library heavily tested and validated by the community Translation from the Fortran code to C Transparent integration to OTB for effortless (almost!) corrections by the user IGARSS 2010, Honolulu
  • 10. Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On Atmospheric corrections: in four steps DN to Lum to TOA to Adjacency Lum Refl TOC Look like a pipeline This is fully adapted to the pipeline architecture of OTB IGARSS 2010, Honolulu Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On Digital number to luminance Xk Lk = TOA + βk αk Goal Lk is the TOA Transform the digital number in the incident image into luminance luminance (in W .m−2 .sr −1 .µm−1 ) Using the class Xk digital number otb::ImageToLuminanceImageFilter αk absolute filterImageToLuminance->SetAlpha(alpha); calibration gain for channel k filterImageToLuminance->SetBeta(beta); βk absolute calibration bias for channel k IGARSS 2010, Honolulu
  • 11. Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On How to get these parameters? From metadata Sometimes, the information can be present in the metadata but. . . the specific format has to be supported (Spot, Quickbird, Ikonos are and more on the way) From an ASCII file VectorType alpha(nbOfComponent); alpha.Fill(0); std::ifstream fin; fin.open(filename); double dalpha(0.); for( unsigned int i=0 ; i < nbOfComponent ; i++) { fin >> dalpha; alpha[i] = dalpha; } fin.close(); IGARSS 2010, Honolulu Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On Luminance to reflectance π.Lk Goal ρk TOA = k TOA ES .cos(θS ).d/d0 Transform the luminance into the rhok reflectance TOA reflectance θS zenithal solar angle Using the class otb::LuminanceToReflectanceImageFilter k and setting parameters: ES solar illumination out filterLumToRef-> of atmosphere at a SetZenithalSolarAngle(zenithSolar); distance d0 from the Earth filterLumToRef-> SetDay(day); filterLumToRef-> SetMonth(month); d/d0 ratio between filterLumToRef-> Earth-Sun distance at the SetSolarIllumination(solarIllumination); acquisition and average Earth-Sun distance IGARSS 2010, Honolulu
  • 12. Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On Top of atmosphere to top of canopy Goal Compensate for the atmospheric effects A ρTOA − ρatm ρunif = S A= 1 + SxA allgas T (µS ).T (µV ).tg ρTOA reflectance at the top of the atmosphere ρunif ground reflectance under assumption of a lambertian S surface and an uniform environment ρatm intrinsic atmospheric reflectance allgas tg spherical albedo of the atmosphere T (µS ) downward transmittance T (µV ) upward transmittance IGARSS 2010, Honolulu Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On Top of Atmosphere to top of canopy Using the class otb::ReflectanceToSurfaceReflectanceImageFilter filterToAtoToC->SetAtmosphericRadiativeTerms(correctionParameters); These parameters are filtered by the otb::AtmosphericCorrectionParametersTo6SAtmosphericRadiativeTerms from the otb::AtmosphericCorrectionParameter class this later class has the methods: parameters->SetSolarZenithalAngle(); parameters->SetSolarAzimutalAngle(); parameters->SetViewingZenithalAngle(); parameters->SetViewingAzimutalAngle(); parameters->SetMonth(); parameters->SetDay(); parameters->SetAtmosphericPressure(); parameters->SetWaterVaporAmount(); parameters->SetOzoneAmount(); parameters->SetAerosolModel(); parameters->SetAerosolOptical(); IGARSS 2010, Honolulu
  • 13. Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On Adjacency effects ρunif .T (µV )− < ρS > .td (µv ) S ρS = exp(−δ/µv ) ρunif ground reflectance Goal S assuming homogeneous environment Correct the adjacency effect on the radiometry of pixels T (µV ) upward transmittance Using the class otb::SurfaceAdjacencyEffect6SCorrectionSchemeFilter td (µS ) upward diffuse with the parameters transmittance filterAdjacency->SetAtmosphericRadiativeTerms(); filterAdjacency->SetZenithalViewingAngle(); exp(−δ/µv ) upward filterAdjacency->SetWindowRadius(); filterAdjacency->SetPixelSpacingInKilometers(); direct transmittance ρS environment contribution to the pixel target reflectance in the total observed signal IGARSS 2010, Honolulu Introduction Atmospheric corrections Pansharpening DN to lum lum to ref ToA to ToC Adjacency effects Hands On Hands On 1. Monteverdi: Calibration → Optical calibration 2. Select the image to correct 3. Look at the parameters that are retrieved from the image metadata 4. Apply the correction 5. Look at the different levels IGARSS 2010, Honolulu
  • 14. Introduction Atmospheric corrections Pansharpening Pansharpening Bring radiometric information to high resolution image IGARSS 2010, Honolulu Introduction Atmospheric corrections Pansharpening Hands On 1. Monteverdi: Open two images, one PAN and one XS in the same geometry 2. Monteverdi: Filtering → Pan Sharpening IGARSS 2010, Honolulu
  • 15. Introduction Models Optimizations Map projections Image geometry in ORFEO Toolbox Sensor models and map projections J. Inglada1 , E. Christophe2 1 C ENTRE D ’É TUDES S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE 2 C ENTRE FOR R EMOTE I MAGING , S ENSING AND P ROCESSING , N ATIONAL U NIVERSITY OF S INGAPORE This content is provided under a Creative Commons Attribution 3.0 Unported License IGARSS 2010, Honolulu Introduction Models Optimizations Map projections Introduction Bundle-block Homologous Adjustment Points Fine Map Sensor Regis- Projec- Model tration tion Input Series Geo-referenced Series Registered Series Cartographic Series DEM IGARSS 2010, Honolulu
  • 16. Introduction Models Optimizations Map projections Outline of the presentation Sensor models Optimizations Bundle-block adjustment Fine registration Map projections IGARSS 2010, Honolulu Introduction Models Optimizations Map projections Sensor models What is a sensor model Gives the relationship between image (l, c) and ground (X , Y ) coordinates for every pixel in the image. Forward X = fx (l, c, h, θ) Y = fy (l, c, h, θ) Inverse l = gl (X , Y , h, θ) c = gc (X , Y , h, θ) Where θ is the set of parameters which describe the sensor and the acquisition geometry. Height (DEM) must be known. IGARSS 2010, Honolulu
  • 17. Introduction Models Optimizations Map projections Sensor models Types of sensor models Physical models Rigorous, complex, highly non-linear equations of the sensor geometry. Usually, difficult to invert. Parameters have a physical meaning. Specific to each sensor. General analytical models Ex: polynomial, rational functions, etc. Less accurate. Easier to use. Parameters may have no physical meaning. IGARSS 2010, Honolulu Introduction Models Optimizations Map projections Sensor models OTB’s Approach Use factories: models are automatically generated using image meta-data. Currently tested models: RPC models: Quickbird, Ikonos Physical models: SPOT5 SAR models: ERS, ASAR, Radarsat, Cosmo, TerraSAR-X, Palsar Under development: Formosat, WorldView 2 IGARSS 2010, Honolulu
  • 18. Introduction Models Optimizations Map projections Hands On 1. Monteverdi: Open a Quickbird image in sensor geometry 2. Display the image 3. Observe how the geographic coordinates are computed when the cursor moves around the image IGARSS 2010, Honolulu Introduction Models Optimizations Map projections Sensor models How to use them: ortho-registration 1. Read image meta-data and instantiate the model with the given parameters. 2. Define the ROI in ground coordinates (this is your output pixel array) 3. Iterate through the pixels of coordinates (X , Y ): 3.1 Get h from the DEM 3.2 Compute (c, l) = G(X , Y , h, θ) 3.3 Interpolate pixel values if (c, l) are not grid coordinates. IGARSS 2010, Honolulu
  • 19. Introduction Models Optimizations Map projections Hands On 1. Monteverdi: Geometry → Orthorectification 2. Select the image to orthorectify 3. Set the parameters 4. Save the result 5. Repeat for the other image with the same parameters 6. Display the two images together IGARSS 2010, Honolulu Introduction Models Optimizations Map projections Sensor models Limits of the approach Accurate geo-referencing needs: Accurate DEM Accurate sensor parameters, θ For time image series we need accurate co-registration: Sub-pixel accuracy For every pixel in the scene Current DEM’s and sensor parameters can not give this accuracy. Solution: use redundant information in the image series! IGARSS 2010, Honolulu
  • 20. Introduction Models Optimizations Map projections BBA Fine registration Bundle-block adjustment Problem position The image series is geo-referenced (using the available DEM, and the prior sensor parameters). G2 (Xi ,Yi ,hi ,θ2 ) G1 (Xi ,Yi ,hi ,θ1 ) We assume that homologous points (GCPs, etc.) can be easily obtained from the geo-referenced series : HPi = (Xi , Yi , hi ) Everything is known. For each image, and each point, we can write: (lij , cij ) = Gj (Xi , Yi , hi , θj ) IGARSS 2010, Honolulu Introduction Models Optimizations Map projections BBA Fine registration Bundle-block adjustment Model refinement If we define θjR = θj + ∆θj as the refined parameters, ∆θj are the unknowns of the model refinement problem. We have much more equations than unknowns if enough HPs are found. We solve using non-linear least squares estimation. The derivatives of the sensor model with respect to its parameters are needed. IGARSS 2010, Honolulu
  • 21. Introduction Models Optimizations Map projections BBA Fine registration Hands On Manually register 2 images Monteverdi: Geometry → Homologous points extraction Select 2 images with a common region The GUI lets you select a transformation You can select homologous points in the zoom images and add them to the list When several homologous points are available, you can evaluate the transform Once the transform is evaluated, you can use the guess button to predict the position in the moving image of a point selected in the fixed image The GUI displays the parameters of the transform estimated as well as individual error for each point and the MSE You can remove from the list the points with higher error IGARSS 2010, Honolulu Introduction Models Optimizations Map projections BBA Fine registration Why fine registration? Homologous points have been used to refine the sensor model Residual misregistrations exist because of: DEM errors Sensor model approximations Surface objects (high resolution imagery) We want to find the homologous point of every pixel in the reference image with sub-pixel accuracy This is called disparity map IGARSS 2010, Honolulu
  • 22. Introduction Models Optimizations Map projections BBA Fine registration Fine registration (under development) Candidate points Estimation window Search window Similarity estimation Similarity optimization Optimum ∆x ,∆y Reference Image Secondary Image IGARSS 2010, Honolulu Introduction Models Optimizations Map projections Map projections What is a map projection Gives the relationship between geographic (X , Y ) and cartographic (x, y ) coordinates. Forward x = fx (X , Y , α) y = fy (X , Y , α) Inverse X = gX (x, y , α) Y = gy (x, y , α) Where α is the set of parameters of a given map projection. IGARSS 2010, Honolulu
  • 23. Introduction Models Optimizations Map projections Map projections Types of map projections OTB implements most of the OSSIM ones: 30 map projections are available among which: UTM, TransMercator, LambertConformalConic, etc. For any Xyz projection the otb::XyzForwardProjection and the otb::XyzInverseProjection are available. Change of projections can be implemented by using one forward, one inverse and the otb::CompositeTransform class. One-step ortho-registration can be implemented by combining a sensor model and a map projection. IGARSS 2010, Honolulu Introduction Models Optimizations Map projections Hands On Changing image projections Monteverdi: Geometry → Reproject Image Select an orthorectified image as input image Select the projection you want as output Save/Quit IGARSS 2010, Honolulu
  • 24. Introduction Models Optimizations Map projections Hands On Apply the geometry of one image to another Monteverdi: Geometry → Superimpose 2 Images Select any as image image to reproject Select an orthorectified image as reference image Make sure the 2 images have a common region! Use the same DEM (if any) as for the ortho-rectified image Save/Quit IGARSS 2010, Honolulu Introduction Models Optimizations Map projections As a conclusion 1. Use a good sensor model if it exists 2. Use a good DEM if you have it 3. Improve you sensor parameters after a first geo-referencing pass 4. Fine-register your series 5. Use a map projection All these steps can be performed with OTB/Monteverdi. Sensor model + map projection using a DEM are available as a one-step filter in OTB. IGARSS 2010, Honolulu
  • 25. Introduction Radiometry Textures Other Pragmatic Remote Sensing Features J. Inglada1 , E. Christophe2 1 C ENTRE D ’É TUDES S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE 2 C ENTRE FOR R EMOTE I MAGING , S ENSING AND P ROCESSING , N ATIONAL U NIVERSITY OF S INGAPORE This content is provided under a Creative Commons Attribution 3.0 Unported License IGARSS 2010, Honolulu Introduction Radiometry Textures Other Features Expert knowledge Features are a way to bring relevant expert knowledge to learning algorithms Different type of feature: radiometric indices, textures,. . . Important to be able to design your own indices according to the application See poster TUP1.PD.9 “MANGROVE DETECTION FROM HIGH RESOLUTION OPTICAL DATA”, Tuesday, July 27, 09:40 - 10:45 by Emmanuel Christophe, Choong Min Wong and Soo Chin Liew IGARSS 2010, Honolulu
  • 26. Introduction Radiometry Textures Other Radiometric index Most popular is the NDVI: Normalized Difference Vegetation Index [1] LNIR − Lr NDVI = (1) LNIR + Lr J. W. Rouse. “Monitoring the vernal advancement and retrogradation of natural vegetation,”Type ii report, NASA/GSFCT, Greenbelt, MD, USA, 1973. 12.1.1 IGARSS 2010, Honolulu Introduction Radiometry Textures Other Vegetation indices 1/3 RVI Ratio Vegetation Index [1] PVI Perpendicular Vegetation Index [2, 3] SAVI Soil Adjusted Vegetation Index [4] TSAVI Transformed Soil Adjusted Vegetation Index [6, 5] R. L. Pearson and L. D. Miller. Remote mapping of standing crop biomass for estimation of the productivity of the shortgrass prairie, pawnee national grasslands, colorado. In Proceedings of the 8th International Symposium on Remote Sensing of the Environment II, pages 1355–1379, 1972. A. J. Richardson and C. L. Wiegand. Distinguishing vegetation from soil background information. Photogrammetric Engineering and Remote Sensing, 43(12):1541–1552, 1977. C. L. Wiegand, A. J. Richardson, D. E. Escobar, and A. H. Gerbermann. Vegetation indices in crop assessments. Remote Sensing of Environment, 35:105–119, 1991. A. R. Huete. A soil-adjusted vegetation index (SAVI). Remote Sensing of Environment, 25:295–309, 1988. E. Baret and G. Guyot. Potentials and limits of vegetation indices for LAI and APAR assessment. Remote Sensing of Environment, 35:161–173, 1991. E. Baret, G. Guyot, and D. J. Major. TSAVI: A vegetation index which minimizes soil brightness effects on LAI and APAR estimation. In Proceedings of the 12th Canadian Symposium on Remote Sensing, Vancouver, Canada, pages 1355–1358, 1989. IGARSS 2010, Honolulu
  • 27. Introduction Radiometry Textures Other Vegetation indices 2/3 MSAVI Modified Soil Adjusted Vegetation Index [1] MSAVI2 Modified Soil Adjusted Vegetation Index [1] GEMI Global Environment Monitoring Index [2] WDVI Weighted Difference Vegetation Index [3, 4] AVI Angular Vegetation Index [5] J. Qi, A. . Chehbouni, A. Huete, Y. Kerr, and S. Sorooshian. A modified soil adjusted vegetation index. Remote Sensing of Environment, 47:1–25, 1994. B. Pinty and M. M. Verstraete. GEMI: a non-linear index to monitor global vegetation from satellites. Vegetatio, 101:15–20, 1992. J. Clevers. The derivation of a simplified reflectance model for the estimation of leaf area index. Remote Sensing of Environment, 25:53–69, 1988. J. Clevers. Application of the wdvi in estimating lai at the generative stage of barley. ISPRS Journal of Photogrammetry and Remote Sensing, 46(1):37–47, 1991. S. Plummer, P. North, and S. Briggs. The Angular Vegetation Index (AVI): an atmospherically resistant index for the Second Along-Track Scanning Radiometer (ATSR-2). In Sixth International Symposium on Physical Measurements and Spectral Signatures in Remote Sensing, Val d’Isere, 1994. IGARSS 2010, Honolulu Introduction Radiometry Textures Other Vegetation indices 3/3 ARVI Atmospherically Resistant Vegetation Index [1] TSARVI Transformed Soil Adjusted Vegetation Index [1] EVI Enhanced Vegetation Index [2, 3] IPVI Infrared Percentage Vegetation Index [4] TNDVI Transformed NDVI [5] Y. J. Kaufman and D. Tanré. Atmospherically Resistant Vegetation Index (ARVI) for EOS-MODIS. Transactions on Geoscience and Remote Sensing, 40(2):261–270, Mar. 1992. A. R. Huete, C. Justice, and H. Liu. Development of vegetation and soil indices for MODIS-EOS. Remote Sensing of Environment, 49:224–234, 1994. C. O. Justice, et al. The moderate resolution imaging spectroradiometer (MODIS): Land remote sensing for global change research. IEEE Transactions on Geoscience and Remote Sensing, 36:1–22, 1998. R. E. Crippen. Calculating the vegetation index faster. Remote Sensing of Environment, 34(1):71–73, 1990. D. W. Deering, J. W. Rouse, R. H. Haas, and H. H. Schell. Measuring ¨ forage productionöf grazing units from Landsat-MSS data. In Proceedings of the Tenth International Symposium on Remote Sensing of the Environment. ERIM, Ann Arbor, Michigan, USA, pages 1169–1198, 1975. IGARSS 2010, Honolulu
  • 28. Introduction Radiometry Textures Other Example: NDVI IGARSS 2010, Honolulu Introduction Radiometry Textures Other Soil indices IR Redness Index [1] IC Color Index [1] IB Brilliance Index [2] IB2 Brilliance Index [2] P. et al. Caracteristiques spectrales des surfaces sableuses de la region cotiere nord-ouest de l’Egypte: application aux donnees satellitaires Spot. In 2eme Journeees de Teledetection: Caracterisation et suivi des milieux terrestres en regions arides et tropicales, pages 27–38. ORSTOM, Collection Colloques et Seminaires, Paris, Dec. 1990. E. Nicoloyanni. Un indice de changement diachronique appliqué deux sècnes Landsat MSS sur Athènes (grèce). International Journal of Remote Sensing, 11(9):1617–1623, 1990. IGARSS 2010, Honolulu
  • 29. Introduction Radiometry Textures Other Example: IC IGARSS 2010, Honolulu Introduction Radiometry Textures Other Water indices SRWI Simple Ratio Water Index [1] NDWI Normalized Difference Water Index [2] NDWI2 Normalized Difference Water Index [3] MNDWI Modified Normalized Difference Water Index [4] NDPI Normalized Difference Pond Index [5] NDTI Normalized Difference Turbidity Index [5] SA Spectral Angle P. J. Zarco-Tejada and S. Ustin. Modeling canopy water content for carbon estimates from MODIS data at land EOS validation sites. In International Geoscience and Remote Sensing Symposium, IGARSS ’01, pages 342–344, 2001. B. cai Gao. NDWI - a normalized difference water index for remote sensing of vegetation liquid water from space. Remote Sensing of Environment, 58(3):257–266, Dec. 1996. S. K. McFeeters. The use of the normalized difference water index (NDWI) in the delineation of open water features. International Journal of Remote Sensing, 17(7):1425–1432, 1996. H. Xu. Modification of normalised difference water index (ndwi) to enhance open water features in remotely sensed imagery. International Journal of Remote Sensing, 27(14):3025–3033, 2006. J. Lacauxa, Y. T. andC. Vignollesa, J. Ndioneb, and M. Lafayec. Classification of ponds from high-spatial resolution remote sensing: Application to rift valley fever epidemics in senegal. Remote Sensing of Environment, 106(1):66–74, 2007. IGARSS 2010, Honolulu
  • 30. Introduction Radiometry Textures Other Example: NDWI2 IGARSS 2010, Honolulu Introduction Radiometry Textures Other Built-up indices NDBI Normalized Difference Built Up Index [1] ISU Index Surfaces Built [2] Y. Z. J. G. S. Ni. Use of normalized difference built-up index in automatically mapping urban areas from TM imagery. International Journal of Remote Sensing, 24(3):583–594, 2003. A. Abdellaoui and A. Rougab. Caractérisation de la reponse du bâti: application au complexe urbain de Blida (Algérie). In Télédétection des milieux urbains et périurbains, AUPELF - UREF, Actes des sixièmes Journées scientifiques du réseau Télédétection de l’AUF, pages 47–64, 1997. IGARSS 2010, Honolulu
  • 31. Introduction Radiometry Textures Other Texture Energy f1 = i,j g(i, j)2 Entropy f2 = − i,j g(i, j) log2 g(i, j), or 0 if g(i, j) = 0 (i−µ)(j−µ)g(i,j) Correlation f3 = i,j σ2 Difference Moment f4 = 1 g(i, j) i,j 1+(i−j)2 Inertia (a.k.a. Contrast) f5 = i,j (i − j)2 g(i, j) Cluster Shade f6 = i,j ((i − µ) + (j − µ))3 g(i, j) Cluster Prominence f7 = i,j ((i − µ) + (j − µ))4 g(i, j) 2 i,j (i,j)g(i,j)−µt Haralick’s Correlation f8 = σ2 t Robert M. Haralick, K. Shanmugam, and Its’Hak Dinstein, “Textural features for image classification,” IEEE Transactions on Systems, Man and Cybernetics, vol. 3, no. 6, pp. 610–621, Nov 1973. IGARSS 2010, Honolulu Introduction Radiometry Textures Other Example: Inertia on the green channel IGARSS 2010, Honolulu
  • 32. Introduction Radiometry Textures Other Using these elements to build others Example: distance to water IGARSS 2010, Honolulu Introduction Radiometry Textures Other Hands On 1. Monteverdi: Filtering → Feature extraction 2. Select the image to extract the features 3. Choose the feature to generate 4. Try different parameters and look at the preview 5. Using the output tab, pick the relevant features 6. Generate the feature image IGARSS 2010, Honolulu
  • 33. Intro Unsupervised Supervised Object oriented Pragmatic Remote Sensing Image Classification J. Inglada1 , E. Christophe2 1 C ENTRE D ’É TUDES S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE 2 C ENTRE FOR R EMOTE I MAGING , S ENSING AND P ROCESSING , N ATIONAL U NIVERSITY OF S INGAPORE This content is provided under a Creative Commons Attribution 3.0 Unported License IGARSS 2010, Honolulu Intro Unsupervised Supervised Object oriented Outline of the presentation What is classification Unsupervised classification Supervised classification Object oriented classification IGARSS 2010, Honolulu
  • 34. Intro Unsupervised Supervised Object oriented What is classification Classification is the procedure of assigning a class label to objects (pixels in the image) Supervised Unsupervised Pixel-based Object oriented IGARSS 2010, Honolulu Intro Unsupervised Supervised Object oriented What can be used for classification Raw images Extracted features Radiometric indices: NDVI, brightness, color, spectral angle, etc. Statistics, textures, etc. Transforms: PCA, MNF, wavelets, etc. Ancillary data DEM, Maps, etc. IGARSS 2010, Honolulu
  • 35. Intro Unsupervised Supervised Object oriented Classification in a nutshell Select the pertinent attributes (features, etc.) Stack them into a vector for each pixel Select the appropriate label (in the supervised case) Feed your classifier IGARSS 2010, Honolulu Intro Unsupervised Supervised Object oriented Unsupervised classification Also called clustering Needs interpretation (relabeling) Class labels are just numbers No need for ground truth/examples But often, the number of classes has to be manually selected Other parameters too Examples: k-means, ISO-Data, Self Organizing Map IGARSS 2010, Honolulu
  • 36. Intro Unsupervised Supervised Object oriented Example: K-means clustering 1. k initial "means" are randomly selected from the data set. 2. k clusters are created by associating every observation with the nearest mean. The partitions here represent the Voronoi diagram generated by the means. 3. The centroid of each of the k clusters becomes the new means. Steps 2 and 3 are repeated until convergence has been reached. Image credits: Wikipedia IGARSS 2010, Honolulu Intro Unsupervised Supervised Object oriented Example: 5 class K-means IGARSS 2010, Honolulu
  • 37. Intro Unsupervised Supervised Object oriented Hands On 1. Monteverdi: Learning → KMeans Clustering 2. Select the image to classify 3. You can use only a subset of the pixels to perform the centroid estimation 4. Select an appropriate number of classes for your image 5. Set the number of iterations and the convergence threshold 6. Run IGARSS 2010, Honolulu Intro Unsupervised Supervised Object oriented Supervised classification Needs examples/ground truth Examples can have thematic labels Land-Use vs Land-Cover Examples: neural networks, Bayesian maximum likelihood, Support Vector Machines IGARSS 2010, Honolulu
  • 38. Intro Unsupervised Supervised Object oriented Example: SVM H3 (green) doesn’t separate the 2 classes. Maximum-margin hyperplane and margins for a H1 (blue) does, with a small margin. SVM trained with samples from two classes. H2 (red) with the maximum margin. Samples on the margin are called the support vectors. Image credits: Wikipedia IGARSS 2010, Honolulu Intro Unsupervised Supervised Object oriented Example: 6 class SVM Water, vegetation, buildings, roads, clouds, shadows IGARSS 2010, Honolulu
  • 39. Intro Unsupervised Supervised Object oriented Hands On 1. Monteverdi: Learning → SVM Classification 2. Select the image to classify 3. Add a class You can give it a name, a color 4. Select samples for each class Draw polygons and use the End Polygon to close them You can assign polygons to either the training or the test sets; or you can use the random selection 5. Learn 6. Validate: displays a confusion matrix and the classification accuracy 7. Display results IGARSS 2010, Honolulu Intro Unsupervised Supervised Object oriented Object oriented classification Pixels may not be the best way to describe the classes of interest shape, size, and other region-based characteristics may be more meaningful We need to provide the classifier a set of regions Image segmentation And their characteristics Compute features per region Since individual objects are meaningful, active learning can be implemented See presentation WE2.L06.2 “LAZY YET EFFICIENT LAND-COVER MAP GENERATION FOR HR OPTICAL IMAGES”, Wednesday, July 28, 10:25 - 12:05, by Julien Michel, Julien Malik and Jordi Inglada. IGARSS 2010, Honolulu
  • 40. Intro Unsupervised Supervised Object oriented No hands on But a demo if the time allows it! IGARSS 2010, Honolulu
  • 41. Strategies Detectors Application Pragmatic Remote Sensing Change Detection J. Inglada1 , E. Christophe2 1 C ENTRE D ’É TUDES S PATIALES DE LA B IOSPHÈRE , TOULOUSE , F RANCE 2 C ENTRE FOR R EMOTE I MAGING , S ENSING AND P ROCESSING , N ATIONAL U NIVERSITY OF S INGAPORE This content is provided under a Creative Commons Attribution 3.0 Unported License IGARSS 2010, Honolulu Strategies Detectors Application Outline of the presentation Classical strategies for change detection Available detectors in OTB Interactive Change Detection IGARSS 2010, Honolulu
  • 42. Strategies Detectors Application Possible approaches Strategy 1: Simple detectors Produce an image of change likelihood (by differences, ratios or any other approach) and thresholding it in order to produce the change map. Strategy 2: Post Classification Comparison Obtain two land-use maps independently for each date and comparing them. Strategy 3: Joint classification Produce the change map directly from a joint classification of both images. IGARSS 2010, Honolulu Strategies Detectors Application Available detectors Pixel-wise differencing of mean image values: ID (i, j) = I2 (i, j) − I1 (i, j). (1) Pixel-wise ratio of means: I2 (i, j) I1 (i, j) IR (i, j) = 1 − min , . (2) I1 (i, j) I2 (i, j) Local correlation coefficient: 1 i,j (I1 (i, j) − mI1 )(I2 (i, j) − mI2 ) Iρ (i, j) = (3) N σI1 σI2 Kullback-Leibler distance between local distributions (mono and multi-scale) Mutual information (several implementations) IGARSS 2010, Honolulu
  • 43. Strategies Detectors Application Hands On Displaying differences 1. Monteverdi: File → Concatenate Images 2. Select the amplitudes of the 2 images to compare and build a 2 band image 3. Monteverdi: Visualization → Viewer 4. Select the 2 band image just created 5. In the Setup tab, select RGB composition mode and select, for instance, 1,2,2. 6. Interpret the colors you observe 7. The same thing could be done using feature images IGARSS 2010, Honolulu Strategies Detectors Application Hands On Thresholding differences 1. Monteverdi: Filtering → Band Math 2. Select the amplitudes of the 2 images to compare and compute a subtraction 3. Monteverdi: Filtering → Threshold 4. Select the difference image just created and play with the threshold value 5. The same thing could be done using image ratios 6. The same thing could be done using feature images IGARSS 2010, Honolulu
  • 44. Strategies Detectors Application Interactive Change Detection Generation of binary change maps using a GUI Uses simple change detectors as input The operator gives examples of the change and no change classes SVM learning and classification are applied IGARSS 2010, Honolulu Strategies Detectors Application Hands On Joint Classification 1. Monteverdi: Filtering → Change Detection 2. Select the 2 images to process Raw images at 2 different dates 3. Uncheck Use Change Detectors 4. Use the Changed/Unchanged Class buttons to select one of the classes 5. Draw polygons on the images in order to give training samples to the algorithm 6. End Polygon button is used to close the current polygon 7. After selecting several polygons per class push Learn 8. The Display Results button will show the result change detection IGARSS 2010, Honolulu
  • 45. Strategies Detectors Application Hands On Joint Classification with Change Detectors 1. Monteverdi: Filtering → Change Detection 2. Select the 2 images to process Raw images at 2 different dates 3. Make sure the Use Change Detectors check-box is activated 4. Proceed as in the previous case IGARSS 2010, Honolulu Strategies Detectors Application Hands On Joint Classification with Features 1. Monteverdi: Filtering → Change Detection 2. Select the 2 images to process Feature images at 2 different dates 3. Proceed as in the previous cases IGARSS 2010, Honolulu