Exif Data Description Vocabulary
An ontology to describe an Exif format picture data. All Exif 2.2 tags are defined as OWL properties (annotated by ‘exif:exifNumber’ in this vocabulary), as well as several terms to help this schema.
Examples
EXIF For a Digital Image Including External Conditions
This vocabulary takes advantage of Exif’s IFD (Image File Directory) to express structured data description. While TIFF 6.0 attribute tags can be regarded as properties of image itself, many of Exif-specific attributes such as flash or fNumber are properties of picture taking condition, and GPS attributes are properties of a location. This vocabulary maps Exif directories to corresponding ‘Image File Data’ classes, and describes those class instances using properties in the IFD. Some tags have integer values whose interpretation are defined in the spec. In this vocabulary, those values are treated as controlled value resource, e.g. ‘#top-left’ instead of integer value ‘1’ for ‘orientation’ tag. more…
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:exif="http://www.kanzaki.com/ns/exif#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
>
<foaf:Image rdf:about="">
<exif:make>Canon</exif:make>
<exif:model>Canon IXY DIGITAL 30</exif:model>
<exif:orientation rdf:resource="http://www.kanzaki.com/ns/exif#right-top"/>
<exif:exif-info>
<exif:Exif_IFD>
<exif:exposureTime>0.0025</exif:exposureTime>
<exif:fNumber>3.5</exif:fNumber>
<exif:flash rdf:resource="http://www.kanzaki.com/ns/exif#Fired-compulsory-redeye"/>
<exif:focalLength>9.1875</exif:focalLength>
</exif:Exif_IFD>
</exif:exif-info>
</foaf:Image>
</rdf:RDF>