SlideShare une entreprise Scribd logo
1  sur  51
Télécharger pour lire hors ligne
FIB - Barcelona School of Informatics
Universitat Politècnica de Catalunya (UPC)
Barcelona, Spain
Metadata Interoperability
with JPSearch
Nicos Demetriou
Master in Computer Architecture Networks and Systems
Barcelona, Spain July 3, 2013
Outline
1. Introduction
2. State of the art
3. Problem definition
4. Resolving the problem
5. Experiments
6. Conclusion
Nicos Demetriou: Metadata Interoperability with JPSearch 2
Nicos Demetriou: Metadata Interoperability with JPSearch
Introduction1
Introduction
Nicos Demetriou: Metadata Interoperability with JPSearch 4
Source: http://grabworthy.com/300-million-photos-uploaded-to-facebook-daily/
January 2013
Introduction
 Increasing number of digital images cause:
 Organization issues
 Search and retrieval difficulties
 The need to semantically describe them (annotations)
 Portability problems
 Metadata: “Data about data”
 Plenty of metadata standards (MPEG-7)
 JPSearch
 New standard from JPEG
 Tries to solve the aforementioned problems
 Still improving
Nicos Demetriou: Metadata Interoperability with JPSearch 5
Introduction
 Goal
 Embed JPSearch data to image files
 Easily create translation rules
 Evaluate JPSearch standard
 Possible lacks, improvements
 Does JPSearch resolves the problem?
 Research and application work
Nicos Demetriou: Metadata Interoperability with JPSearch 6
Nicos Demetriou: Metadata Interoperability with JPSearch
State of the art2
State of the art
 Metadata
 Describes the characteristics of a resource
 Distinguished from the main content of the resource
 E.g. Image {Content = Pixels, Metadata = Properties}
 Improve organizing resources
 Search mechanism
 Embedded to the resource or externally
 Digital images
 Many proprietary formats such as JPEG, PNG
 Contain metadata, method differs
 Native metadata (e.g. EXIF)
 Metadata in XML format (e.g. XMP)
 Handful of metadata standards
Nicos Demetriou: Metadata Interoperability with JPSearch 8
State of the art
 Joint Photographic Experts Group (JPEG)
 Lossy compression / adjustable compression
 Standards: JFIF  EXIF & ICC profile (color space)
 JPEG Interchange Format (JIF) byte layout
 Segments of JPEG: Application Markers (0xFFEn)
 JFIF – APP0
 EXIF – APP1
 XMP – APP1
 ICC – APP2
 JPSearch – APP3
 Photoshop – APP13
Nicos Demetriou: Metadata Interoperability with JPSearch 9
State of the art
 JPSearch
 Suite of specifications
 Enrichment with metadata in JPEG, JPEG 2000
 Abstract framework
 Modular
 Flexible search architecture
 Six parts:
1. System framework and components
2. Schema and ontology
3. Query format
4. File format for embedded metadata
5. Data interchange format between repositories
6. Reference software
Nicos Demetriou: Metadata Interoperability with JPSearch 10
Nicos Demetriou: Metadata Interoperability with JPSearch
Problem definition3
Problem definition
 Metadata Interoperability
 Metadata exchanged without loss of information
 Different processes express metadata in certain way
 Distinct services exchange query messages
Nicos Demetriou: Metadata Interoperability with JPSearch 12
Problem definition
 Challenges
 Manipulation of image collections’ metadata
 Image search and retrieval
 Image repository maintenance and synchronization
 Metadata storage
 Reuse of metadata without regenerating it
 Transferability between various image formats
 Semantic meaning differs among formats
 Approach to the solution: JPSearch
 What is missing?
 Lack of approaches and applications
Nicos Demetriou: Metadata Interoperability with JPSearch 13
Nicos Demetriou: Metadata Interoperability with JPSearch
Resolving the problem4
4.1 Approach
4.2 JPSearch Part 2
4.3 JPSearch Part 4
4.4 Tools Developed
Resolving the problem
 4.1 Approach
 Implement tools
 JPSearch Editor for JPEG files
 Translation Rule generator
 Analyze transformation rules for different metadata sets
 Evaluate JPSearch
 Find lacks
 Suggest improvements
Nicos Demetriou: Metadata Interoperability with JPSearch 15
Resolving the problem
 4.2 JPSearch Part 2
 JPSearch Core Metadata Schema
 Rules for machine readable translation
Nicos Demetriou: Metadata Interoperability with JPSearch 16
Resolving the problem
 4.2 JPSearch Part 2
 JPSearch Core Metadata Schema
 19 Basic elements
 XML syntax
Nicos Demetriou: Metadata Interoperability with JPSearch 17
<?xml version="1.0" encoding="UTF-8"
standalone="yes"?>
<ImageDescription
xmlns="JPSearch:schema:coremetadata">
<Creators>
<GivenName>Leonardo</GivenName>
<FamilyName>DaVinci</FamilyName>
</Creators>
<Publisher>
<PersonName>
<GivenName>Paris</GivenName>
<FamilyName></FamilyName>
</PersonName>
<OrganizationInformation>
<Name>Museum of Louvre</Name>
<Address>
<Name>Lourve, Paris</Name>
</Address>
</OrganizationInformation>
</Publisher>
<CreationDate>1503-01-
01T00:00:00.0Z</CreationDate>
<ModifiedDate>2013-06-
24T13:30:41.395+03:00</ModifiedDate>
<Description>The portrait of Mona
Lisa</Description>
<Keyword>Image</Keyword>
<Keyword>fr</Keyword>
<Title>Mona Lisa</Title>
<CollectionLabel>Painting</CollectionLabel>
<Width>677</Width>
<Height>1024</Height>
</ImageDescription>
Elements
Identifier Title
Modifiers CollectionLabel
Creators PreferenceValue
Publisher Rating
CreationDate OriginalImageIdentifier
ModifiedDate GPSPositioning
Description RegionOfInterest
RightsDescription Width
Source Height
Keyword
Example
Resolving the problem
 4.2 JPSearch Part 2
 Rules for machine readable translation
 JPSearch Translation Rules Declaration Language
 Rule types: OneToOne, OneToMany, ManyToOne
 Dublin Core to JPSearch example
Nicos Demetriou: Metadata Interoperability with JPSearch 18
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<TranslationRules xmlns="JPSearch:schema:translation" fromFormat="http://purl.org/dc/terms/"
toFormat="JPSearch:schema:coremetadata">
<TranslationRule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:type="OneToManyFieldTranslationType">
<FromField xsi:type="FilteredSourceFieldType">
<XPathExpression>/creator</XPathExpression>
<FilterWithRegExpr>(S+) (S+)</FilterWithRegExpr>
<VariableBinding>
<ExplicitPrefixBinding>$name</ExplicitPrefixBinding>
<ExplicitPostfixBinding>$lastname</ExplicitPostfixBinding>
</VariableBinding>
</FromField>
<ToField xsi:type="FormattedTargetFieldType">
<XPathExpression>/JPSearchCore/Creators/GivenName</XPathExpression>
<ReplaceWithRegExpr>$name</ReplaceWithRegExpr>
</ToField>
<ToField xsi:type="FormattedTargetFieldType">
<XPathExpression>/JPSearchCore/Creators/FamilyName</XPathExpression>
<ReplaceWithRegExpr>$lastname</ReplaceWithRegExpr>
</ToField>
</TranslationRule>
</TranslationRules>
Resolving the problem
 4.3 JPSearch Part 4
 File format – extension of JPEG-1/JPEG 2000
 Additional metadata can co-exist
 JPSearchMetadata. ElementaryMetadata, Data blocks
Nicos Demetriou: Metadata Interoperability with JPSearch 19
Resolving the problem
 4.4 Tools developed
JPSearch Editor
 Features:
 Opens .jpeg files
 Shows JPSearch metadata
 Embeds JPSearch
 Alters JPSearch metadata
 Saves JPSearch to XML
 Saves metadata to DB
 Imports external XML
instance with its
translation rules
 Region Tagging
Nicos Demetriou: Metadata Interoperability with JPSearch 20
Resolving the problem
 4.4 Tools developed
JPSearch Editor
 Features:
 Opens .jpeg files
 Shows JPSearch metadata
 Embeds JPSearch
 Alters JPSearch metadata
 Saves JPSearch to XML
 Saves metadata to DB
 Imports external XML
instance with its
translation rules
 Region Tagging
Nicos Demetriou: Metadata Interoperability with JPSearch 21
Resolving the problem
 4.4 Tools developed
Rule generator
 Features
 Opens XML instance
 Shows XML elements
 Element selection
 All three rule type
supported
 Rule type details
 Show saved rules
 Update/Deletion of
saved rules
 Save rules in XML file
Nicos Demetriou: Metadata Interoperability with JPSearch 22
Nicos Demetriou: Metadata Interoperability with JPSearch
Experiments5
Experiments
 Methodology
 Creating mappings of multiple XML instances
 Use rule generator tool
 Based on a practical approach
 Standards experimented with:
 MPEG-7
 Dublin Core
 EBU core
 XMP
 Other formats (DeviantArt)
 Evaluate JPSearch
 Detect lacks and tool improvements
Nicos Demetriou: Metadata Interoperability with JPSearch 24
Experiments
 MPEG-7
 Large schema
 Favors moving pictures and audio
 Impossible to map all elements
 Work on a subset of the schema
 Valid sample documents found online
 Conclusions
 Some elements not trivial to be mapped
 Title name of a person e.g. Doctor, Professor
 Version element exists
 Audio and Video metadata encountered
 Element selection using attributes issue
Nicos Demetriou: Metadata Interoperability with JPSearch 25
Experiments
 MPEG-7 to JPSearch mappings
Nicos Demetriou: Metadata Interoperability with JPSearch 26
MPEG-7 element JPSearch element
../MediaIdentification/EntityIdentifier Identifier
../Creator/Agent[@type="PersonType"]/Name/GivenName Creators/GivenName
../Creation/Abstract/FreeTextAnnotation Description
../MediaLocator/MediaUri OriginalImageIdentifier/OriginationOfID
../CreationInformation/Creation/Title Title
../CreationPreferences/@preferenceValue PreferenceValue
../MediaReview/Rating/RatingValue Rating/LabelValue
../Place/GeographicPosition/Point/@latitude GPSPositioning/latitude
../SpatialDecomposition/StillRegion/SpatialLocator/Box RegionOfInterest/RegionLocator
../Subject/KeywordAnnotation/Keyword RegionOfInterest/Keyword
../DescriptionMetadata/Version Description (Regex: “Version: $a”)
../DescriptionMetadata/LastUpdate ModifiedDate
../MediaProfile/MediaFormat/Medium/Name Source/CreationMethod
../CreationInformation/Classification/Genre/Name CollectionLabel (Regex: “Genre: $a”)
Experiments
 Dublin Core
 Simple schema
 15 basic elements
 Qualified Dublin Core adds 6 more elements
 Online samples and manually created
 Conclusions
 Some elements not so clear how to be mapped
 Qualified Dublin Core elements
 Elements can appear multiple times
 Multiple elements map to Creators/Modifiers/Region of Interest
Nicos Demetriou: Metadata Interoperability with JPSearch 27
Experiments
 Dublin Core to JPSearch mappings
Nicos Demetriou: Metadata Interoperability with JPSearch 28
Dublin Core element JPSearch Core element
contributor Publisher/OrganizationInformation/Name
creator Creators/GivenName, FamilyName
rights RightsDescription/Description
source Source/SourceElementType
relation OriginalImageIdentifier/Identifier
coverage Publisher/OrganizationInformation/Address/Name
rightsholder RightsDescription/ActualRightsDescription
accrualperiodicity Source/SourceElement/SourceElementDescription
Experiments
 EBUcore
 Extension to Dublin Core
 Additional elements for video, audio and image
 Extra contact details
 Merely based on attributes
 Manually created samples
 Conclusions
 Similar mapping problems as Dublin Core
 Version element exists
 Optional elements can be ignored
 Special repeated attributes
 typeGroup, typeLabel, typeLink and typeDefinition
Nicos Demetriou: Metadata Interoperability with JPSearch 29
Experiments
 EBUcore to JPSearch mappings
Nicos Demetriou: Metadata Interoperability with JPSearch 30
EBUCore elements JPSearch elements
coreMetadata/publisher/entity/contactDetails/
name
Publisher/PersonName/GivenName,
FamilyName
coreMetadata/publisher/entity/contactDetails/
organisationDetails/details
Publisher/OrganizationInformation/Name
coreMetadata/format/imageFormat/width Width
coreMetadata/coverage/spatial/location RegionOfInterest/ContentDescription/Place/
Description
coreMetadata/version RegionOfInterest/ContentDescription/Object/
Name
coreMetadata/rating/ratingValue Rating/LabelValue
Experiments
 XMP
 Different than other standards
 Incorporates multiple standards in the same schema
 Mixture
 Namespace required
 EXIF, Dublin Core, Photoshop tags
 Heavily based on Resource Description Framework (RDF)
 Consists of Description XMP packets
 Stored in APP1 of JPEG
 External file .xmp
 Online valid samples
 Conclusions
 Large set of elements from different standards
 Hard to map certain elements (camera raw metadata)
Nicos Demetriou: Metadata Interoperability with JPSearch 31
Experiments
 Other formats
 Third party web services use their own format
 DeviantArt, Flickr and Youtube use oEmbed
 12 basic elements
 Most of them are optional
 Use API to obtain metadata
 No attributes
 Samples got using API
 Conclusions
 URL elements
 Thumbnail sizes
Nicos Demetriou: Metadata Interoperability with JPSearch 32
Experiments
 oEmbed example of a DeviantArt image
Nicos Demetriou: Metadata Interoperability with JPSearch 33
Experiments
 Execution of Tools
 Rule generator
 JPSearch metadata Editor
Nicos Demetriou: Metadata Interoperability with JPSearch 34
Experiments
Rule generator
Dublin Core XML instance
Nicos Demetriou: Metadata Interoperability with JPSearch 35
Experiments
Rule generator
Nicos Demetriou: Metadata Interoperability with JPSearch 36
Experiments
Rule generator
Nicos Demetriou: Metadata Interoperability with JPSearch 37
Dublin core
XML
instance
Experiments
Rule generator
Nicos Demetriou: Metadata Interoperability with JPSearch 38
Experiments
Rule generator
Nicos Demetriou: Metadata Interoperability with JPSearch 39
JPSearch
Translation
Rules
Experiments
Rule generator
JPSearch Translation Rules
Nicos Demetriou: Metadata Interoperability with JPSearch 40
Experiments
JPSearch Editor
Nicos Demetriou: Metadata Interoperability with JPSearch 41
Experiments
JPSearch Editor
Nicos Demetriou: Metadata Interoperability with JPSearch 42
Photo of
Mona Lisa
Experiments
JPSearch Editor
Nicos Demetriou: Metadata Interoperability with JPSearch 43
Experiments
Nicos Demetriou: Metadata Interoperability with JPSearch
JPSearch Editor
44
Dublin core
XML instance
JPSearch
Translation
Rules
Experiments
JPSearch Editor
Nicos Demetriou: Metadata Interoperability with JPSearch 45
Experiments
JPSearch Editor
Nicos Demetriou: Metadata Interoperability with JPSearch 46
Nicos Demetriou: Metadata Interoperability with JPSearch
Conclusion6
Conclusion
Nicos Demetriou: Metadata Interoperability with JPSearch 48
 JPSearch is powerful international standard
 Well documented/defined and still improving
 Two tools were developed
 JPSearch metadata Editor
 Translation Rule generator
 Evaluation of the standard through experimentation
 JPSearch
 provides storage of big set of metadata
 allows many metadata sets to be mapped
 gives a solution to the metadata interoperability issue
Conclusion
Nicos Demetriou: Metadata Interoperability with JPSearch 49
 Future work
 Tools
 Complete database support
 Support JPSearch native metadata
 JPEG 2000 file type support
 Load XML schema (xsd files) to rule generator
 Load XML rules to rule generator
 Read and translate EXIF to JPSearch
Conclusion
Nicos Demetriou: Metadata Interoperability with JPSearch 50
 Future work
 JPSearch
 Attribute support
 Additional helpful elements
 Extended Contact details (profession title, email, suffix)
 Version
 URLs and Thumbnail details
 Dictionary based values e.g. “Perfect” in Rating
FIB - Barcelona School of Informatics
Universitat Politècnica de Catalunya (UPC)
Barcelona, Spain
Metadata Interoperability
with JPSearch
Nicos Demetriou
Master in Computer Architecture Networks and Systems
Barcelona, Spain July 3, 2013

Contenu connexe

Similaire à Metadata interoperability With JPSearch

Denodo DataFest 2016: What’s New in Denodo Platform – Demo and Roadmap
Denodo DataFest 2016: What’s New in Denodo Platform – Demo and RoadmapDenodo DataFest 2016: What’s New in Denodo Platform – Demo and Roadmap
Denodo DataFest 2016: What’s New in Denodo Platform – Demo and RoadmapDenodo
 
Connecting GLIMR with the BIDS initiative
Connecting GLIMR with the BIDS initiativeConnecting GLIMR with the BIDS initiative
Connecting GLIMR with the BIDS initiativeRobert Oostenveld
 
VRE Cancer Imaging BL RIC Workshop 22032011
VRE Cancer Imaging BL RIC Workshop 22032011VRE Cancer Imaging BL RIC Workshop 22032011
VRE Cancer Imaging BL RIC Workshop 22032011djmichael156
 
Query aware determinization of uncertain objects
Query aware determinization of uncertain objectsQuery aware determinization of uncertain objects
Query aware determinization of uncertain objectsieeepondy
 
Slides SRS 2012
Slides SRS 2012Slides SRS 2012
Slides SRS 2012gsansone
 
What Impact Will Entity Framework Have On Architecture
What Impact Will Entity Framework Have On ArchitectureWhat Impact Will Entity Framework Have On Architecture
What Impact Will Entity Framework Have On ArchitectureEric Nelson
 
A framework for visual search in broadcasting companies' multimedia archives
A framework for visual search in broadcasting companies' multimedia archives A framework for visual search in broadcasting companies' multimedia archives
A framework for visual search in broadcasting companies' multimedia archives FIAT/IFTA
 
Weblog Extraction With Fuzzy Classification Methods
Weblog Extraction With Fuzzy Classification MethodsWeblog Extraction With Fuzzy Classification Methods
Weblog Extraction With Fuzzy Classification MethodsEdy Portmann
 
Semantic data integration proof of concept
Semantic data integration proof of conceptSemantic data integration proof of concept
Semantic data integration proof of conceptNicolas Bertrand
 
SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...
SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...
SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...San Diego Supercomputer Center
 
Tim Malthus_Towards standards for the exchange of field spectral datasets
Tim Malthus_Towards standards for the exchange of field spectral datasetsTim Malthus_Towards standards for the exchange of field spectral datasets
Tim Malthus_Towards standards for the exchange of field spectral datasetsTERN Australia
 
Elag 2012 - Under the hood of 3TU.Datacentrum.
Elag 2012 - Under the hood of 3TU.Datacentrum.Elag 2012 - Under the hood of 3TU.Datacentrum.
Elag 2012 - Under the hood of 3TU.Datacentrum.Egbert Gramsbergen
 
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...IEEEFINALYEARSTUDENTPROJECT
 
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...IEEEMEMTECHSTUDENTSPROJECTS
 
IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...
IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...
IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...IEEEFINALYEARSTUDENTPROJECTS
 
Introduction to neural networks and Keras
Introduction to neural networks and KerasIntroduction to neural networks and Keras
Introduction to neural networks and KerasJie He
 
Internet data mining 2006
Internet data mining   2006Internet data mining   2006
Internet data mining 2006raj_vij
 
Machine Learning for automated diagnosis of distributed ...AE
Machine Learning for automated diagnosis of distributed ...AEMachine Learning for automated diagnosis of distributed ...AE
Machine Learning for automated diagnosis of distributed ...AEbutest
 

Similaire à Metadata interoperability With JPSearch (20)

Denodo DataFest 2016: What’s New in Denodo Platform – Demo and Roadmap
Denodo DataFest 2016: What’s New in Denodo Platform – Demo and RoadmapDenodo DataFest 2016: What’s New in Denodo Platform – Demo and Roadmap
Denodo DataFest 2016: What’s New in Denodo Platform – Demo and Roadmap
 
Connecting GLIMR with the BIDS initiative
Connecting GLIMR with the BIDS initiativeConnecting GLIMR with the BIDS initiative
Connecting GLIMR with the BIDS initiative
 
VRE Cancer Imaging BL RIC Workshop 22032011
VRE Cancer Imaging BL RIC Workshop 22032011VRE Cancer Imaging BL RIC Workshop 22032011
VRE Cancer Imaging BL RIC Workshop 22032011
 
Query aware determinization of uncertain objects
Query aware determinization of uncertain objectsQuery aware determinization of uncertain objects
Query aware determinization of uncertain objects
 
Slides SRS 2012
Slides SRS 2012Slides SRS 2012
Slides SRS 2012
 
MIDESS
MIDESSMIDESS
MIDESS
 
What Impact Will Entity Framework Have On Architecture
What Impact Will Entity Framework Have On ArchitectureWhat Impact Will Entity Framework Have On Architecture
What Impact Will Entity Framework Have On Architecture
 
A framework for visual search in broadcasting companies' multimedia archives
A framework for visual search in broadcasting companies' multimedia archives A framework for visual search in broadcasting companies' multimedia archives
A framework for visual search in broadcasting companies' multimedia archives
 
Weblog Extraction With Fuzzy Classification Methods
Weblog Extraction With Fuzzy Classification MethodsWeblog Extraction With Fuzzy Classification Methods
Weblog Extraction With Fuzzy Classification Methods
 
Semantic data integration proof of concept
Semantic data integration proof of conceptSemantic data integration proof of concept
Semantic data integration proof of concept
 
SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...
SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...
SciDB : Open Source Data Management System for Data-Intensive Scientific Anal...
 
Tim Malthus_Towards standards for the exchange of field spectral datasets
Tim Malthus_Towards standards for the exchange of field spectral datasetsTim Malthus_Towards standards for the exchange of field spectral datasets
Tim Malthus_Towards standards for the exchange of field spectral datasets
 
Preservation Metadata
Preservation MetadataPreservation Metadata
Preservation Metadata
 
Elag 2012 - Under the hood of 3TU.Datacentrum.
Elag 2012 - Under the hood of 3TU.Datacentrum.Elag 2012 - Under the hood of 3TU.Datacentrum.
Elag 2012 - Under the hood of 3TU.Datacentrum.
 
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
 
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
2014 IEEE JAVA DATA MINING PROJECT Mining weakly labeled web facial images fo...
 
IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...
IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...
IEEE 2014 JAVA DATA MINING PROJECTS Mining weakly labeled web facial images f...
 
Introduction to neural networks and Keras
Introduction to neural networks and KerasIntroduction to neural networks and Keras
Introduction to neural networks and Keras
 
Internet data mining 2006
Internet data mining   2006Internet data mining   2006
Internet data mining 2006
 
Machine Learning for automated diagnosis of distributed ...AE
Machine Learning for automated diagnosis of distributed ...AEMachine Learning for automated diagnosis of distributed ...AE
Machine Learning for automated diagnosis of distributed ...AE
 

Dernier

Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991RKavithamani
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 

Dernier (20)

Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
Industrial Policy - 1948, 1956, 1973, 1977, 1980, 1991
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 

Metadata interoperability With JPSearch

  • 1. FIB - Barcelona School of Informatics Universitat Politècnica de Catalunya (UPC) Barcelona, Spain Metadata Interoperability with JPSearch Nicos Demetriou Master in Computer Architecture Networks and Systems Barcelona, Spain July 3, 2013
  • 2. Outline 1. Introduction 2. State of the art 3. Problem definition 4. Resolving the problem 5. Experiments 6. Conclusion Nicos Demetriou: Metadata Interoperability with JPSearch 2
  • 3. Nicos Demetriou: Metadata Interoperability with JPSearch Introduction1
  • 4. Introduction Nicos Demetriou: Metadata Interoperability with JPSearch 4 Source: http://grabworthy.com/300-million-photos-uploaded-to-facebook-daily/ January 2013
  • 5. Introduction  Increasing number of digital images cause:  Organization issues  Search and retrieval difficulties  The need to semantically describe them (annotations)  Portability problems  Metadata: “Data about data”  Plenty of metadata standards (MPEG-7)  JPSearch  New standard from JPEG  Tries to solve the aforementioned problems  Still improving Nicos Demetriou: Metadata Interoperability with JPSearch 5
  • 6. Introduction  Goal  Embed JPSearch data to image files  Easily create translation rules  Evaluate JPSearch standard  Possible lacks, improvements  Does JPSearch resolves the problem?  Research and application work Nicos Demetriou: Metadata Interoperability with JPSearch 6
  • 7. Nicos Demetriou: Metadata Interoperability with JPSearch State of the art2
  • 8. State of the art  Metadata  Describes the characteristics of a resource  Distinguished from the main content of the resource  E.g. Image {Content = Pixels, Metadata = Properties}  Improve organizing resources  Search mechanism  Embedded to the resource or externally  Digital images  Many proprietary formats such as JPEG, PNG  Contain metadata, method differs  Native metadata (e.g. EXIF)  Metadata in XML format (e.g. XMP)  Handful of metadata standards Nicos Demetriou: Metadata Interoperability with JPSearch 8
  • 9. State of the art  Joint Photographic Experts Group (JPEG)  Lossy compression / adjustable compression  Standards: JFIF  EXIF & ICC profile (color space)  JPEG Interchange Format (JIF) byte layout  Segments of JPEG: Application Markers (0xFFEn)  JFIF – APP0  EXIF – APP1  XMP – APP1  ICC – APP2  JPSearch – APP3  Photoshop – APP13 Nicos Demetriou: Metadata Interoperability with JPSearch 9
  • 10. State of the art  JPSearch  Suite of specifications  Enrichment with metadata in JPEG, JPEG 2000  Abstract framework  Modular  Flexible search architecture  Six parts: 1. System framework and components 2. Schema and ontology 3. Query format 4. File format for embedded metadata 5. Data interchange format between repositories 6. Reference software Nicos Demetriou: Metadata Interoperability with JPSearch 10
  • 11. Nicos Demetriou: Metadata Interoperability with JPSearch Problem definition3
  • 12. Problem definition  Metadata Interoperability  Metadata exchanged without loss of information  Different processes express metadata in certain way  Distinct services exchange query messages Nicos Demetriou: Metadata Interoperability with JPSearch 12
  • 13. Problem definition  Challenges  Manipulation of image collections’ metadata  Image search and retrieval  Image repository maintenance and synchronization  Metadata storage  Reuse of metadata without regenerating it  Transferability between various image formats  Semantic meaning differs among formats  Approach to the solution: JPSearch  What is missing?  Lack of approaches and applications Nicos Demetriou: Metadata Interoperability with JPSearch 13
  • 14. Nicos Demetriou: Metadata Interoperability with JPSearch Resolving the problem4 4.1 Approach 4.2 JPSearch Part 2 4.3 JPSearch Part 4 4.4 Tools Developed
  • 15. Resolving the problem  4.1 Approach  Implement tools  JPSearch Editor for JPEG files  Translation Rule generator  Analyze transformation rules for different metadata sets  Evaluate JPSearch  Find lacks  Suggest improvements Nicos Demetriou: Metadata Interoperability with JPSearch 15
  • 16. Resolving the problem  4.2 JPSearch Part 2  JPSearch Core Metadata Schema  Rules for machine readable translation Nicos Demetriou: Metadata Interoperability with JPSearch 16
  • 17. Resolving the problem  4.2 JPSearch Part 2  JPSearch Core Metadata Schema  19 Basic elements  XML syntax Nicos Demetriou: Metadata Interoperability with JPSearch 17 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ImageDescription xmlns="JPSearch:schema:coremetadata"> <Creators> <GivenName>Leonardo</GivenName> <FamilyName>DaVinci</FamilyName> </Creators> <Publisher> <PersonName> <GivenName>Paris</GivenName> <FamilyName></FamilyName> </PersonName> <OrganizationInformation> <Name>Museum of Louvre</Name> <Address> <Name>Lourve, Paris</Name> </Address> </OrganizationInformation> </Publisher> <CreationDate>1503-01- 01T00:00:00.0Z</CreationDate> <ModifiedDate>2013-06- 24T13:30:41.395+03:00</ModifiedDate> <Description>The portrait of Mona Lisa</Description> <Keyword>Image</Keyword> <Keyword>fr</Keyword> <Title>Mona Lisa</Title> <CollectionLabel>Painting</CollectionLabel> <Width>677</Width> <Height>1024</Height> </ImageDescription> Elements Identifier Title Modifiers CollectionLabel Creators PreferenceValue Publisher Rating CreationDate OriginalImageIdentifier ModifiedDate GPSPositioning Description RegionOfInterest RightsDescription Width Source Height Keyword Example
  • 18. Resolving the problem  4.2 JPSearch Part 2  Rules for machine readable translation  JPSearch Translation Rules Declaration Language  Rule types: OneToOne, OneToMany, ManyToOne  Dublin Core to JPSearch example Nicos Demetriou: Metadata Interoperability with JPSearch 18 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <TranslationRules xmlns="JPSearch:schema:translation" fromFormat="http://purl.org/dc/terms/" toFormat="JPSearch:schema:coremetadata"> <TranslationRule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="OneToManyFieldTranslationType"> <FromField xsi:type="FilteredSourceFieldType"> <XPathExpression>/creator</XPathExpression> <FilterWithRegExpr>(S+) (S+)</FilterWithRegExpr> <VariableBinding> <ExplicitPrefixBinding>$name</ExplicitPrefixBinding> <ExplicitPostfixBinding>$lastname</ExplicitPostfixBinding> </VariableBinding> </FromField> <ToField xsi:type="FormattedTargetFieldType"> <XPathExpression>/JPSearchCore/Creators/GivenName</XPathExpression> <ReplaceWithRegExpr>$name</ReplaceWithRegExpr> </ToField> <ToField xsi:type="FormattedTargetFieldType"> <XPathExpression>/JPSearchCore/Creators/FamilyName</XPathExpression> <ReplaceWithRegExpr>$lastname</ReplaceWithRegExpr> </ToField> </TranslationRule> </TranslationRules>
  • 19. Resolving the problem  4.3 JPSearch Part 4  File format – extension of JPEG-1/JPEG 2000  Additional metadata can co-exist  JPSearchMetadata. ElementaryMetadata, Data blocks Nicos Demetriou: Metadata Interoperability with JPSearch 19
  • 20. Resolving the problem  4.4 Tools developed JPSearch Editor  Features:  Opens .jpeg files  Shows JPSearch metadata  Embeds JPSearch  Alters JPSearch metadata  Saves JPSearch to XML  Saves metadata to DB  Imports external XML instance with its translation rules  Region Tagging Nicos Demetriou: Metadata Interoperability with JPSearch 20
  • 21. Resolving the problem  4.4 Tools developed JPSearch Editor  Features:  Opens .jpeg files  Shows JPSearch metadata  Embeds JPSearch  Alters JPSearch metadata  Saves JPSearch to XML  Saves metadata to DB  Imports external XML instance with its translation rules  Region Tagging Nicos Demetriou: Metadata Interoperability with JPSearch 21
  • 22. Resolving the problem  4.4 Tools developed Rule generator  Features  Opens XML instance  Shows XML elements  Element selection  All three rule type supported  Rule type details  Show saved rules  Update/Deletion of saved rules  Save rules in XML file Nicos Demetriou: Metadata Interoperability with JPSearch 22
  • 23. Nicos Demetriou: Metadata Interoperability with JPSearch Experiments5
  • 24. Experiments  Methodology  Creating mappings of multiple XML instances  Use rule generator tool  Based on a practical approach  Standards experimented with:  MPEG-7  Dublin Core  EBU core  XMP  Other formats (DeviantArt)  Evaluate JPSearch  Detect lacks and tool improvements Nicos Demetriou: Metadata Interoperability with JPSearch 24
  • 25. Experiments  MPEG-7  Large schema  Favors moving pictures and audio  Impossible to map all elements  Work on a subset of the schema  Valid sample documents found online  Conclusions  Some elements not trivial to be mapped  Title name of a person e.g. Doctor, Professor  Version element exists  Audio and Video metadata encountered  Element selection using attributes issue Nicos Demetriou: Metadata Interoperability with JPSearch 25
  • 26. Experiments  MPEG-7 to JPSearch mappings Nicos Demetriou: Metadata Interoperability with JPSearch 26 MPEG-7 element JPSearch element ../MediaIdentification/EntityIdentifier Identifier ../Creator/Agent[@type="PersonType"]/Name/GivenName Creators/GivenName ../Creation/Abstract/FreeTextAnnotation Description ../MediaLocator/MediaUri OriginalImageIdentifier/OriginationOfID ../CreationInformation/Creation/Title Title ../CreationPreferences/@preferenceValue PreferenceValue ../MediaReview/Rating/RatingValue Rating/LabelValue ../Place/GeographicPosition/Point/@latitude GPSPositioning/latitude ../SpatialDecomposition/StillRegion/SpatialLocator/Box RegionOfInterest/RegionLocator ../Subject/KeywordAnnotation/Keyword RegionOfInterest/Keyword ../DescriptionMetadata/Version Description (Regex: “Version: $a”) ../DescriptionMetadata/LastUpdate ModifiedDate ../MediaProfile/MediaFormat/Medium/Name Source/CreationMethod ../CreationInformation/Classification/Genre/Name CollectionLabel (Regex: “Genre: $a”)
  • 27. Experiments  Dublin Core  Simple schema  15 basic elements  Qualified Dublin Core adds 6 more elements  Online samples and manually created  Conclusions  Some elements not so clear how to be mapped  Qualified Dublin Core elements  Elements can appear multiple times  Multiple elements map to Creators/Modifiers/Region of Interest Nicos Demetriou: Metadata Interoperability with JPSearch 27
  • 28. Experiments  Dublin Core to JPSearch mappings Nicos Demetriou: Metadata Interoperability with JPSearch 28 Dublin Core element JPSearch Core element contributor Publisher/OrganizationInformation/Name creator Creators/GivenName, FamilyName rights RightsDescription/Description source Source/SourceElementType relation OriginalImageIdentifier/Identifier coverage Publisher/OrganizationInformation/Address/Name rightsholder RightsDescription/ActualRightsDescription accrualperiodicity Source/SourceElement/SourceElementDescription
  • 29. Experiments  EBUcore  Extension to Dublin Core  Additional elements for video, audio and image  Extra contact details  Merely based on attributes  Manually created samples  Conclusions  Similar mapping problems as Dublin Core  Version element exists  Optional elements can be ignored  Special repeated attributes  typeGroup, typeLabel, typeLink and typeDefinition Nicos Demetriou: Metadata Interoperability with JPSearch 29
  • 30. Experiments  EBUcore to JPSearch mappings Nicos Demetriou: Metadata Interoperability with JPSearch 30 EBUCore elements JPSearch elements coreMetadata/publisher/entity/contactDetails/ name Publisher/PersonName/GivenName, FamilyName coreMetadata/publisher/entity/contactDetails/ organisationDetails/details Publisher/OrganizationInformation/Name coreMetadata/format/imageFormat/width Width coreMetadata/coverage/spatial/location RegionOfInterest/ContentDescription/Place/ Description coreMetadata/version RegionOfInterest/ContentDescription/Object/ Name coreMetadata/rating/ratingValue Rating/LabelValue
  • 31. Experiments  XMP  Different than other standards  Incorporates multiple standards in the same schema  Mixture  Namespace required  EXIF, Dublin Core, Photoshop tags  Heavily based on Resource Description Framework (RDF)  Consists of Description XMP packets  Stored in APP1 of JPEG  External file .xmp  Online valid samples  Conclusions  Large set of elements from different standards  Hard to map certain elements (camera raw metadata) Nicos Demetriou: Metadata Interoperability with JPSearch 31
  • 32. Experiments  Other formats  Third party web services use their own format  DeviantArt, Flickr and Youtube use oEmbed  12 basic elements  Most of them are optional  Use API to obtain metadata  No attributes  Samples got using API  Conclusions  URL elements  Thumbnail sizes Nicos Demetriou: Metadata Interoperability with JPSearch 32
  • 33. Experiments  oEmbed example of a DeviantArt image Nicos Demetriou: Metadata Interoperability with JPSearch 33
  • 34. Experiments  Execution of Tools  Rule generator  JPSearch metadata Editor Nicos Demetriou: Metadata Interoperability with JPSearch 34
  • 35. Experiments Rule generator Dublin Core XML instance Nicos Demetriou: Metadata Interoperability with JPSearch 35
  • 36. Experiments Rule generator Nicos Demetriou: Metadata Interoperability with JPSearch 36
  • 37. Experiments Rule generator Nicos Demetriou: Metadata Interoperability with JPSearch 37 Dublin core XML instance
  • 38. Experiments Rule generator Nicos Demetriou: Metadata Interoperability with JPSearch 38
  • 39. Experiments Rule generator Nicos Demetriou: Metadata Interoperability with JPSearch 39 JPSearch Translation Rules
  • 40. Experiments Rule generator JPSearch Translation Rules Nicos Demetriou: Metadata Interoperability with JPSearch 40
  • 41. Experiments JPSearch Editor Nicos Demetriou: Metadata Interoperability with JPSearch 41
  • 42. Experiments JPSearch Editor Nicos Demetriou: Metadata Interoperability with JPSearch 42 Photo of Mona Lisa
  • 43. Experiments JPSearch Editor Nicos Demetriou: Metadata Interoperability with JPSearch 43
  • 44. Experiments Nicos Demetriou: Metadata Interoperability with JPSearch JPSearch Editor 44 Dublin core XML instance JPSearch Translation Rules
  • 45. Experiments JPSearch Editor Nicos Demetriou: Metadata Interoperability with JPSearch 45
  • 46. Experiments JPSearch Editor Nicos Demetriou: Metadata Interoperability with JPSearch 46
  • 47. Nicos Demetriou: Metadata Interoperability with JPSearch Conclusion6
  • 48. Conclusion Nicos Demetriou: Metadata Interoperability with JPSearch 48  JPSearch is powerful international standard  Well documented/defined and still improving  Two tools were developed  JPSearch metadata Editor  Translation Rule generator  Evaluation of the standard through experimentation  JPSearch  provides storage of big set of metadata  allows many metadata sets to be mapped  gives a solution to the metadata interoperability issue
  • 49. Conclusion Nicos Demetriou: Metadata Interoperability with JPSearch 49  Future work  Tools  Complete database support  Support JPSearch native metadata  JPEG 2000 file type support  Load XML schema (xsd files) to rule generator  Load XML rules to rule generator  Read and translate EXIF to JPSearch
  • 50. Conclusion Nicos Demetriou: Metadata Interoperability with JPSearch 50  Future work  JPSearch  Attribute support  Additional helpful elements  Extended Contact details (profession title, email, suffix)  Version  URLs and Thumbnail details  Dictionary based values e.g. “Perfect” in Rating
  • 51. FIB - Barcelona School of Informatics Universitat Politècnica de Catalunya (UPC) Barcelona, Spain Metadata Interoperability with JPSearch Nicos Demetriou Master in Computer Architecture Networks and Systems Barcelona, Spain July 3, 2013