SlideShare a Scribd company logo
Jérôme Gasperi
Web Processing Service
Séminaire Innovation PS

Toulouse, France - 1er
juillet 2014
Interoperability
What it means, Why it matters
Open Geospatial Consortium
Web Processing Service
What is WPS ?
WPS 1.0
WPS 2.0
WPS in action
Simple GIS processing
Image processing
Chaining WPS
What's next ?
Interoperability
What it means, why it matters
Web Processing Service
Web Processing Service
~7000since 1957
We need to standardize !
format | description | access
files metadata services
Known and readable !	

(ex.. JPG,TIF, HDF, etc.)
A structured (e.g. XML) and	

standardized (e.g. ISO 19115) description
OGC Web services	

W*S
INTEROPERABILITY
format | description | access
files metadata services
Known and readable !	

(ex.. JPG,TIF, HDF, etc.)
A structured (e.g. XML) and	

standardized (e.g. ISO 19115) description
OGC Web services	

W*S
Simple Complex
Requirements not supported	

Low harmonization	

Few benefits
Too simple
Difficult to implement	

High costs	

Substantial benefits to few users
Too complex
The right level of Interoperability
?
Interoperability
Open Geospatial Consortium
The Open Geospatial Consortium (OGC) is an international organization
originated in 1994 which encourage development and implementation
of open standards for geospatial content and services, GIS data
processing and data sharing.
479members on july, 1st 2014
Maps

WMS
Vectors

WFS
Data

WCS
Metadata

CSW
Processes

WPS
OGC Web services
Maps
WMS
Vectors
WFS
Data
WCS
Metadata
CSW
Processes

WPS
OGC Web services
Web Processing Service
What is WPS ?
WPS is an OGC standard that defines how to publish, describe and
execute geospatial processes
The WPS interface standardizes the way processes and their inputs/
outputs are described, how a client can request the execution of a
process, and how the output from a process is handled.
WPS does not specify the kind of processes that could be implemented
as a web service. Instead, it specifies a generic mechanism that can be
used to describe and web-enable any sort of geospatial process
WPS aProcessingWeb application
Web Processing Service
WPS 1.0 (Current standard)
Publish Describe Execute
GetCapabilities
The GetCapabilities operation
p r ov i d e s a c c e s s t o g e n e r a l
information about a live WPS
implementation, and lists the
operations and access methods
supported by that implementation
Publish
1
DescribeProcess
The DescribeProcess operation allows
WPS clients to request a full
of one or more
executed by the service. This description
includes the
parameters and formats and can be used
to automatically build a user interface to
capture the parameter values to be used
to execute a process
Describe
2
Execute
The Execute operation allows WPS
clients to
implemented by a server, using the
input parameter values provided and
returning
Inputs can be included directly in the
Execute request, or reference
accessible
Execute
3
<wps:Capabilities service="WPS" xml:lang="en-EN" version="1.0.0" updateSequence="1352815432361">!
<ows:ServiceIdentification>!
[...Service information i.e. title, abstract, keywords, etc...]!
</ows:ServiceIdentification>!
<ows:ServiceProvider>!
[...Provider information i.e. name, adress, phone, etc...]!
</ows:ServiceProvider>!
<ows:OperationsMetadata>!
[...URLs to GetCapabilities, DescribeProcess and execute services...]!
</ows:OperationsMetadata>!
<wps:ProcessOfferings>!
<wps:Process wps:processVersion="1.0.0">!
<ows:Identifier>urn:ogc:cstl:wps:otb:classification</ows:Identifier>!
<ows:Title>Classification</ows:Title>!
<ows:Abstract>Performs an image classification</ows:Abstract>!
</wps:Process>!
[...]!
</wps:ProcessOfferings>!
<wps:Languages>!
[...]!
</wps:Languages>!
<wps:WSDL xlink:href=""/>!
</wps:Capabilities>!
GetCapabilities http://mon.serveur.com/wps?service=WPS&request=GetCapabilities
GetCapabilities
The GetCapabilities operation
p r ov i d e s a c c e s s t o g e n e r a l
information
implementation, and
operations
supported by that implementation
Publish
1
DescribeProcess
The DescribeProcess operation allows
WPS clients to request a full description
of one or more processes that can be
executed by the service. This description
includes the input and output
parameters and formats and can be used
to automatically build a user interface to
capture the parameter values to be used
to execute a process
Describe
2
Execute
The Execute operation allows WPS
clients to
implemented by a server, using the
input parameter values provided and
returning
Inputs can be included directly in the
Execute request, or reference
accessible
Execute
3
<wps:ProcessDescriptions xmlns:gml="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/
xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:wps="http://www.opengis.net/wps/1.0.0"
xmlns:ows="http://www.opengis.net/ows/1.1" service="WPS" version="1.0.0" xml:lang="en-EN">!
<ProcessDescription storeSupported="true" statusSupported="true" wps:processVersion="1.0.0">!
<ows:Identifier>urn:ogc:cstl:wps:otb:classification</ows:Identifier>!
<ows:Title>Classification</ows:Title>!
<ows:Abstract>Performs an image classification</ows:Abstract>!
<DataInputs>!
[...Standardized description of ComplexData, LiteralData or BoundingBoxData...]!
</DataInputs>!
<ProcessOutputs>!
[...Standardized description of ComplexOutput, LiteralOutput or BoundingBoxOutput...]!
</ProcessOutputs>!
</ProcessDescription>!
</wps:ProcessDescriptions>!
DescribeProcess http://mon.serveur.com/wps?service=WPS&request=DescribeProcess&identifier=urn:ogc:cstl:wps:otb:classification
storeSupported If set to true, process is launched asynchronously - acknowledgment is immediately sent back by the server and the
process is executed in background. Otherwise, process is launched synchronously - client holds on until the process is
finished and result is sent back (this could lead to timeout if process is too long)
GetCapabilities
The GetCapabilities operation
p r ov i d e s a c c e s s t o g e n e r a l
information
implementation, and
operations
supported by that implementation
Publish
1
DescribeProcess
The DescribeProcess operation allows
WPS clients to request a full
of one or more
executed by the service. This description
includes the
parameters and formats and can be used
to automatically build a user interface to
capture the parameter values to be used
to execute a process
Describe
2
Execute
The Execute operation allows WPS
clients to run a specified process
implemented by a server, using the
input parameter values provided and
returning the output values produced.
Inputs can be included directly in the
Execute request, or reference web
accessible resources
Execute
3
<wps:ExecuteResponse xml:lang="en" service="WPS"

serviceInstance="http://mon.serveur.com/wps/wps?"!
statusLocation="http://mon.serveur.com/wps/wps?request=GetExecutionStatus&executionId=5e59-6dfe"!
version="1.0.0" xmlns:wps="http://www.opengis.net/wps/1.0.0"!
xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink">!
<wps:Process wps:processVersion="1.0.0">!
<ows:Identifier>urn:ogc:cstl:wps:otb:classification</ows:Identifier>!
<ows:Title>Classification</ows:Title>!
<ows:Abstract>Performs an image classification</ows:Abstract>!
</wps:Process>!
<wps:Status creationTime="2013-01-09T16:17:08.262Z">!
<wps:ProcessAccepted>Process accepted</wps:ProcessAccepted>!
</wps:Status>!
</wps:ExecuteResponse>!
!
Execute http://mon.serveur.com/wps?service=WPS&request=execute POST data+
statusLocation Server updates the content of statusLocation url regarding the processing progress. Once finished, status is set to
<wps:ProcessSucceeded>.As a consequence, the Web client needs to periodically call the statusLocation url to determine
the end of the processing
The major flaw in WPS 1.0 is the lack of true asynchronous process
management...There is no way to cancel a launched process !
Web Processing Service
WPS 2.0 (The next step)
WPS 2.0 adds process management operations - Dismiss, Pause, Resume
and GetStatus. This set of operations is a must have to deploy
asynchronous WPS - especially in the
GetStatus
The GetStatus operation allows WPS
clients to query the status of an
asynchronously executed job
Check
4
GetResult
The GetResult operation allows WPS
clients to query the result of a finished
processing job. It is used in conjunction
with asynchronous execution
Retrieve
5
Dismiss
The dismiss extension allows a client
to cancel a job execution. The
dismiss operation is a job control
operation. Its availability is indicated
p e r p r o c e s s u s i n g t h e
j o b C o n t r o l O p t i o n s i n t h e
P r o c e s s S u m m a r y a n d t h e
ProcessOffering structures.
Abort
6
Pause
The Pause operation allows clients to
pause an asynchronous execution
request of a Process. Depending of
the state of the Processing Job, its
execution would not start or being
paused. On successful pause, updated
status is sent back with the state
processPaused
Pause
7
Resume
The Resume operation allows clients to
resume the asynchronous execution
request of a Process in the sense of the
Processing Job would be eligible again for
execution. On successful resume,
updated status is sent back with the state
set to the state that Processing Job had
when it have been paused
Resume
8
WPS 2.0 should be officially approved as an OGC standard in fall 2014
WPS in action
Simple GIS processing
https://vimeo.com/67288678
It works pretty well !
But what about image processing ?
WPS in action
Image processing - Assisted land cover classification
From pixel...
Remote sensing image
...to information
Land cover thematic map
Transferring a large volume of data is problematic
True for upload (i.e. the input image) and download (i.e. the result)
Issue...
Data and processes should be collocated
Processing results should be downloaded only if needed
Good option is to offer a Web service to visualize/manipulate results
...so
WPS aProcessingWeb application
mapshup Web
application
http://mapshup.info
WPSConstellation
http://www.constellation-sdi.org
Orfeo Toolbox Processing
http://orfeo-toolbox.org
Orfeo Toolbox Remote sensing image library
Open Source
Developped by the French Space Agency
Processing
Orfeo Toolbox More than 70 high level processing chains
orthorectification
segmentation
classification
etc.
Processing
Orfeo Toolbox More than 70 high level processing chains
orthorectification
segmentation
classification
etc.
Processing
Supervised learning
(land cover is computed from a set of "well known areas" given by user)
Based on SVM
(http://en.wikipedia.org/wiki/Support_vector_machine)
Constellation
WPS
Geospatial Networking Services
OGC/ISO implementations
Multi platform (JAVA)
OpenSource
WMS WFS CSW WPS
mapshup Improves access to geospatial data
HTML + javascript
Based on OpenLayers and jQuery
Web
application
WPSWPS a
Web application
1
1 - DescribeProcess request for "Classification"
Classification process
description
2
2 - Set up MMI from process description
+Image url
Well known areas
3
3 - Execute an asynchronous "Classification" request
Land Cover
4
4 - Display result retrieved as a WMS layer
Orfeo Toolbox
mapshup
Image
https://vimeo.com/67288677
Chaining WPS
A chain of services
A WPS process is normally an atomic function
WPS	

A
WPS	

C
Data	

B
WPS	

A
WPS	

C
Data	

B
Process with then process the result withData	

B
WPS	

A
WPS	

C
A Web client can be used to orchestrate a service chain that includes one or
more WPS within a federation
Chaining WPS
OWS-10 OGC testbed - Quality assessment and land cover services in a collaborative clouds environment
Note: this work is the result of the CNES/Astrium joint initiative within the
« Open Mobility » thread - Cloud Computing of the OGC OWS-10 Testbed
Orthorectification of raw image
!
Assess quality of the orthorectified image
in terms of geometrical accuracy
!
Compute Land Cover map from
an orthorectified image
Features
Client base processing chain workflow
between multiple clouds
!
Collaborative processing without raw data
acquisition transfert between clouds
!
WPS based on demand processing
!
Integration of Orfeo Toolbox library within
Constellation SDI
Key points
mapshup
http://mapshup.info
Constellation SDIhttp://www.constellation-sdi.org
Airbus Defense and Space WPS
WPS
WPS
Web
Client
Orfeo Toolbox
WMS CSW
http://orfeo-toolbox.org/otb/
Architecture browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Orthorectify browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Search catalog
1
Orthorectify raw image stored on a Terradue
infrastructure using a reference database and
processing chain located at Airbus Defense&Space
infrastructure without moving the data
browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Search catalog
1
Ask for
Orthorectification
2
Orthorectify
Orthorectify raw image stored on a Terradue
infrastructure using a reference database and
processing chain located at Airbus Defense&Space
infrastructure without moving the data
browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Search catalog
1
Ask for
Orthorectification
2
Compute AOIs
3
Orthorectify
Compute RPCs
Orthorectify raw image stored on a Terradue
infrastructure using a reference database and
processing chain located at Airbus Defense&Space
infrastructure without moving the data
browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Search catalog
1
Ask for
Orthorectification
2
Orthorectify
Apply RPCs to
generate orthoimage4
Compute AOIs
3
Compute RPCs
Orthorectify raw image stored on a Terradue
infrastructure using a reference database and
processing chain located at Airbus Defense&Space
infrastructure without moving the data
browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Search catalog
1
Ask for
Orthorectification
2
Stream orthoimage
WMS layer
5
Orthorectify
Apply RPCs to
generate orthoimage4
Compute AOIs
3
Compute RPCs
Orthorectify raw image stored on a Terradue
infrastructure using a reference database and
processing chain located at Airbus Defense&Space
infrastructure without moving the data
browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
Orthoimage
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Assess Quality
Assess orthoimage quality
6
Assess quality of the orthorectified image stored on
Terradue infrastructure using a reference database
and processing chain located at Airbus
Defense&Space infrastructure without moving
the data
browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
Orthoimage
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Assess Quality
Compute AOIs
Compute Errors
7
Assess orthoimage quality
6
Assess quality of the orthorectified image stored on
Terradue infrastructure using a reference database
and processing chain located at Airbus
Defense&Space infrastructure without moving
the data
browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
Orthoimage
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Assess Quality
Stream error shift
WMS layer
8
Compute AOIs
Compute Errors
7
Assess orthoimage quality
6
Assess quality of the orthorectified image stored on
Terradue infrastructure using a reference database
and processing chain located at Airbus
Defense&Space infrastructure without moving
the data
Land Cover browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
Orthoimage
Learning features
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Compute Land Cover
from orthoimage
(stored on cloud)
9
Compute Land Cover from orthorectified image
stored on Terradue infrastructure using CNES OTB
processing executed on Geomatys infrastructure
Land Cover browser,	

everywhere
Rome,	

Italy
Toulouse,	

France
Montpellier,	

France
WMS
WPS
WPS
Download
WMS
WPS
Orthoimage
CSW
WMS
Raw images
Metadata
+
Reference 3D data
Learning features
Compute Land Cover
from orthoimage
(stored on cloud)
9
Stream land cover map
WMS layer
10
Compute Land Cover from orthorectified image
stored on Terradue infrastructure using CNES OTB
processing executed on Geomatys infrastructure
https://vimeo.com/90131217
What’s next ?
GSCB - Federated Project Pilot - WPS for the European Ground Segments
CNES
DLR
ESA	

Dream
FedEO
WPS	

OTB
OpenSearch
Landsat	

Dissharm
Take 5	

SPOT 4
Landsat 8
OpenSearch
TerraSar-X	

Supersite
WMS
Search
Search
Visualize
Process
1
1
2
3
Architecture

Federated Project Pilot - GSCB
https://vimeo.com/98979095
Web Processing Service

More Related Content

PDF
DroneSurvey.pdf
PDF
Copernicus and its evolution H2020
PPTX
Remote sensing satellites with sensors
PDF
Clase 3 gnss-gps topo ii
PPTX
Remote Sensing Based Soil Moisture Detection
PPT
Basics of remote sensing, pk mani
PDF
Geophysical methods
PDF
Gpr application
DroneSurvey.pdf
Copernicus and its evolution H2020
Remote sensing satellites with sensors
Clase 3 gnss-gps topo ii
Remote Sensing Based Soil Moisture Detection
Basics of remote sensing, pk mani
Geophysical methods
Gpr application

What's hot (20)

PPTX
origem dos solos!
PPTX
Progradação, agradação e retrogradação
DOC
Glossario termos de mineração
PDF
Electrical resistivity method ( electrical survey)
PPTX
Pan sharpening
PPTX
Geographical information system
PDF
Medida del contenido de humedad del suelo
PPT
LiDAR 101
PDF
Topografia exercícios propostos com solução
PDF
Introdução ao GNSS Sistema Global de Posicionamento
PDF
El abc del gps
PPTX
1 Conceptos básicos de teledetección
PPTX
Aula topografia 1 - módulo 2 - Engenharia civil
PPT
Photogrammetry - areaotriangulation
PDF
Seismic Refraction Surveying
PPT
Accuracy assessment of Remote Sensing Data
PPT
Cadastral mapping akshay galav
PPTX
WHAT'S THERE IN GEOMATICS ENGINEERING???
PDF
Differential SAR Interferometry Using Sentinel-1 Data for Kumamoto Earthquake
PPT
10 Marine Sediments Notes
origem dos solos!
Progradação, agradação e retrogradação
Glossario termos de mineração
Electrical resistivity method ( electrical survey)
Pan sharpening
Geographical information system
Medida del contenido de humedad del suelo
LiDAR 101
Topografia exercícios propostos com solução
Introdução ao GNSS Sistema Global de Posicionamento
El abc del gps
1 Conceptos básicos de teledetección
Aula topografia 1 - módulo 2 - Engenharia civil
Photogrammetry - areaotriangulation
Seismic Refraction Surveying
Accuracy assessment of Remote Sensing Data
Cadastral mapping akshay galav
WHAT'S THERE IN GEOMATICS ENGINEERING???
Differential SAR Interferometry Using Sentinel-1 Data for Kumamoto Earthquake
10 Marine Sediments Notes
Ad

Viewers also liked (8)

PDF
WPS Shootout
PDF
Semantic search within Earth Observation products databases based on automati...
PPT
RESTful Web Processing Service
PDF
Evaluation of Web Processing Service Frameworks
PPT
Processing chains with OGC Web Processing Services to process satellite data ...
PDF
The Web Processing Service Standard - Benjamin Proß
PPTX
The 52°North Web Processing Service
PPTX
Field Data Collecting, Processing and Sharing: Using web Service Technologies
WPS Shootout
Semantic search within Earth Observation products databases based on automati...
RESTful Web Processing Service
Evaluation of Web Processing Service Frameworks
Processing chains with OGC Web Processing Services to process satellite data ...
The Web Processing Service Standard - Benjamin Proß
The 52°North Web Processing Service
Field Data Collecting, Processing and Sharing: Using web Service Technologies
Ad

Similar to Web Processing Service (20)

PDF
Traitements de données à la demande - Introduction au Web Processing Service
PDF
Cloud computing and web processing services
PDF
Web Processing Service
PDF
PDF
PyWPS-4.0.0
PDF
Py wps301whatsnewwhatsnext
ODP
Pywps a tutorial for beginners and developers
ODP
PPTX
The WPS 2.0 standard (preliminary information)
PPT
20100512 Workflow Ramage
PDF
PDF
Priority enabled wps
PDF
PyWPS Development restart
PPT
Compliance Testing of Open Source Software for Web Processing Services
PDF
PyWPS at COST WPS Workshop
PPT
RM-ODP for WPS Process Descriptions
PDF
WPSClient - Luís de Sousa
PDF
UEMB240: Managing Your User Profile Data at Scale
DOC
Witsml core api_version_1.3.1
PPTX
Building advanced Project Server workflows with Nintex Workflow for Project S...
Traitements de données à la demande - Introduction au Web Processing Service
Cloud computing and web processing services
Web Processing Service
PyWPS-4.0.0
Py wps301whatsnewwhatsnext
Pywps a tutorial for beginners and developers
The WPS 2.0 standard (preliminary information)
20100512 Workflow Ramage
Priority enabled wps
PyWPS Development restart
Compliance Testing of Open Source Software for Web Processing Services
PyWPS at COST WPS Workshop
RM-ODP for WPS Process Descriptions
WPSClient - Luís de Sousa
UEMB240: Managing Your User Profile Data at Scale
Witsml core api_version_1.3.1
Building advanced Project Server workflows with Nintex Workflow for Project S...

More from Gasperi Jerome (19)

PDF
Big data from space - Module Big Data ISAE 2017
PDF
Le Big Data et les données Copernicus
PDF
2016.02.18 big data from space toulouse data science
PDF
2015.11.12 big data from space - cusi toulouse
PDF
Big Data - Accès et traitement des données d’Observation de laTerre
PDF
2014.09.04 federated ground segments - toulouse
PDF
2014.04.22 - HyDre - Hydroweb Distribution Server
PDF
Semantic search for Earth Observation products
PDF
RESTo - restful semantic search tool for geospatial
PDF
Single Sign On with OAuth and OpenID
PDF
CNES Data Center
PDF
CNES OpenSearch implementations
PDF
Unify Earth Observation products access with OpenSearch
PDF
CNES activities on semantic search
PDF
Data access and data extraction services within the Land Imagery Portal
PDF
Semantic search applied to Earth Observation products
PDF
Accès à l’information satellitaire dans un contexte réactif de catastrophe na...
PDF
Experimenting a cloud based solution for image processing and data access
PDF
Interoperability and value added to earth observation data - 2011.11.24
Big data from space - Module Big Data ISAE 2017
Le Big Data et les données Copernicus
2016.02.18 big data from space toulouse data science
2015.11.12 big data from space - cusi toulouse
Big Data - Accès et traitement des données d’Observation de laTerre
2014.09.04 federated ground segments - toulouse
2014.04.22 - HyDre - Hydroweb Distribution Server
Semantic search for Earth Observation products
RESTo - restful semantic search tool for geospatial
Single Sign On with OAuth and OpenID
CNES Data Center
CNES OpenSearch implementations
Unify Earth Observation products access with OpenSearch
CNES activities on semantic search
Data access and data extraction services within the Land Imagery Portal
Semantic search applied to Earth Observation products
Accès à l’information satellitaire dans un contexte réactif de catastrophe na...
Experimenting a cloud based solution for image processing and data access
Interoperability and value added to earth observation data - 2011.11.24

Recently uploaded (20)

PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Machine learning based COVID-19 study performance prediction
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Spectroscopy.pptx food analysis technology
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
A Presentation on Artificial Intelligence
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Approach and Philosophy of On baking technology
PPTX
MYSQL Presentation for SQL database connectivity
PPT
Teaching material agriculture food technology
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Reach Out and Touch Someone: Haptics and Empathic Computing
Machine learning based COVID-19 study performance prediction
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Spectroscopy.pptx food analysis technology
The AUB Centre for AI in Media Proposal.docx
A Presentation on Artificial Intelligence
Network Security Unit 5.pdf for BCA BBA.
Review of recent advances in non-invasive hemoglobin estimation
A comparative analysis of optical character recognition models for extracting...
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Chapter 3 Spatial Domain Image Processing.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Approach and Philosophy of On baking technology
MYSQL Presentation for SQL database connectivity
Teaching material agriculture food technology
Diabetes mellitus diagnosis method based random forest with bat algorithm
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
NewMind AI Weekly Chronicles - August'25-Week II
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx

Web Processing Service