mas01mj@640
|
1 <?xml version="1.0"?>
|
mas01mj@640
|
2
|
mas01mj@640
|
3 <!DOCTYPE owl [
|
mas01mj@640
|
4 <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
|
mas01mj@640
|
5 <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
mas01mj@640
|
6 <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
|
mas01mj@640
|
7 <!ENTITY owl "http://www.w3.org/2002/07/owl#">
|
mas01mj@640
|
8 <!ENTITY base "http://omras2.gold.ac.uk/ontology/audiodb#">
|
mas01mj@640
|
9 <!ENTITY dc "http://purl.org/dc/elements/1.1/">
|
mas01mj@640
|
10 <!ENTITY dct "http://purl.org/dc/terms/">
|
mas01mj@642
|
11 <!ENTITY off "http://purl.org/ontology/off/">
|
mas01mj@642
|
12 <!ENTITY foaf "http://xmlns.com/foaf/0.1/">
|
mas01mj@642
|
13 <!ENTITY doap "http://usefulinc.com/ns/doap#">
|
mas01mj@652
|
14 <!ENTITY mo "http://purl.org/ontology/mo/">
|
mas01mj@640
|
15 ]>
|
mas01mj@640
|
16
|
mas01mj@640
|
17 <rdf:RDF xmlns:rdf="&rdf;"
|
mas01mj@640
|
18 xmlns:rdfs="&rdfs;"
|
mas01mj@640
|
19 xmlns:owl="&owl;"
|
mas01mj@640
|
20 xmlns:xsd="&xsd;"
|
mas01mj@640
|
21 xml:base="&base;"
|
mas01mj@640
|
22 xmlns:dc="&dc;"
|
mas01mj@642
|
23 xmlns:dct="&dct;"
|
mas01mj@642
|
24 xmlns:foaf="&foaf;"
|
mas01mj@652
|
25 xmlns:off="&off;"
|
mas01mj@652
|
26 xmlns:mo="&mo;">
|
mas01mj@640
|
27
|
mas01mj@640
|
28 <owl:Ontology rdf:about="&base;">
|
mas01mj@640
|
29 <rdfs:label>AudioDB Ontology</rdfs:label>
|
mas01mj@640
|
30 <dc:title xml:lang="en">AudioDB Ontology</dc:title>
|
mas01mj@640
|
31 <dc:description xml:lang="en">Describes the contents of an AudioDB instance</dc:description>
|
mas01mj@640
|
32 <dc:creator>Michael O. Jewell (mailto:mas01mj@gold.ac.uk)</dc:creator>
|
mas01mj@640
|
33 <dct:created>2009-10-07</dct:created>
|
mas01mj@640
|
34 <owl:versionInfo>0.1</owl:versionInfo>
|
mas01mj@640
|
35 </owl:Ontology>
|
mas01mj@640
|
36
|
mas01mj@640
|
37 <owl:Class rdf:ID="Database">
|
mas01mj@640
|
38 <rdfs:label>AudioDB</rdfs:label>
|
mas01mj@640
|
39 <rdfs:comment>Represents a collection of extracted features and information about their extraction.</rdfs:comment>
|
mas01mj@642
|
40 <rdfs:subClassOf rdf:resource="&foaf;Document" />
|
mas01mj@640
|
41 </owl:Class>
|
mas01mj@652
|
42
|
mas01mj@652
|
43 <owl:ObjectProperty rdf:ID="has-signal">
|
mas01mj@652
|
44 <rdf:label>Has Feature</rdfs:label>
|
mas01mj@652
|
45 <rdfs:domain rdf:resource="#Database" />
|
mas01mj@652
|
46 <rdfs:range rdf:resource="&mo;Signal" />
|
mas01mj@652
|
47 </owl:ObjectProperty>
|
mas01mj@652
|
48
|
mas01mj@652
|
49 <owl:ObjectProperty rdf:ID="feature">
|
mas01mj@652
|
50 <rdfs:label>Feature</rdfs:label>
|
mas01mj@642
|
51 <rdfs:domain rdf:resource="#Database"/>
|
mas01mj@642
|
52 <rdfs:range rdf:resource="#Feature" />
|
mas01mj@642
|
53 </owl:ObjectProperty>
|
mas01mj@642
|
54
|
mas01mj@640
|
55 <owl:Class rdf:ID="Feature">
|
mas01mj@640
|
56 <rdfs:label>Feature</rdfs:label>
|
mas01mj@640
|
57 <rdfs:comment>Information about an audio feature</rdfs:comment>
|
mas01mj@640
|
58 </owl:Class>
|
mas01mj@640
|
59
|
mas01mj@642
|
60 <owl:ObjectProperty rdf:ID="extractor">
|
mas01mj@642
|
61 <rdfs:label>Extractor</rdfs:label>
|
mas01mj@642
|
62 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
63 <rdfs:domain rdf:resource="&doap;Version"/>
|
mas01mj@640
|
64 </owl:ObjectProperty>
|
mas01mj@640
|
65
|
mas01mj@642
|
66 <owl:ObjectProperty rdf:ID="window">
|
mas01mj@642
|
67 <rdfs:label>Window</rdfs:label>
|
mas01mj@642
|
68 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
69 <rdfs:range rdf:resource="#Window"/>
|
mas01mj@642
|
70 </owl:ObjectProperty>
|
mas01mj@642
|
71
|
mas01mj@642
|
72 <owl:ObjectProperty rdf:ID="hop-size">
|
mas01mj@642
|
73 <rdfs:label>Hop Size</rdfs:label>
|
mas01mj@642
|
74 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
75 <rdfs:range rdf:resource="&xsd;integer" />
|
mas01mj@642
|
76 </owl:ObjectProperty>
|
mas01mj@642
|
77
|
mas01mj@642
|
78 <owl:ObjectProperty rdf:ID="window-length">
|
mas01mj@642
|
79 <rdfs:label>Window Length</rdfs:label>
|
mas01mj@642
|
80 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
81 <rdfs:range rdf:resource="&xsd;integer" />
|
mas01mj@642
|
82 </owl:ObjectProperty>
|
mas01mj@642
|
83
|
mas01mj@642
|
84 <owl:ObjectProperty rdf:ID="nfft">
|
mas01mj@642
|
85 <rdfs:label>nfft</rdfs:label>
|
mas01mj@642
|
86 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
87 <rdfs:range rdf:resource="&xsd;integer" />
|
mas01mj@642
|
88 </owl:ObjectProperty>
|
mas01mj@642
|
89
|
mas01mj@642
|
90 <owl:ObjectProperty rdf:ID="segn">
|
mas01mj@642
|
91 <rdfs:label>segn</rdfs:label>
|
mas01mj@642
|
92 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
93 <rdfs:range rdf:resource="&xsd;integer" />
|
mas01mj@642
|
94 </owl:ObjectProperty>
|
mas01mj@642
|
95
|
mas01mj@642
|
96 <owl:ObjectProperty rdf:ID="channel">
|
mas01mj@642
|
97 <rdfs:label>channel</rdfs:label>
|
mas01mj@642
|
98 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
99 <rdfs:range rdf:resource="&xsd;integer" />
|
mas01mj@642
|
100 </owl:ObjectProperty>
|
mas01mj@642
|
101
|
mas01mj@642
|
102 <owl:ObjectProperty rdf:ID="dimension">
|
mas01mj@642
|
103 <rdfs:label>dimension</rdfs:label>
|
mas01mj@642
|
104 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
105 <rdfs:range rdf:resource="&xsd;integer" />
|
mas01mj@642
|
106 </owl:ObjectProperty>
|
mas01mj@642
|
107
|
mas01mj@642
|
108 <owl:ObjectProperty rdf:ID="loedge">
|
mas01mj@642
|
109 <rdfs:label>loedge</rdfs:label>
|
mas01mj@642
|
110 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
111 <rdfs:range rdf:resource="&xsd;double" />
|
mas01mj@642
|
112 </owl:ObjectProperty>
|
mas01mj@642
|
113
|
mas01mj@642
|
114 <owl:ObjectProperty rdf:ID="hiedge">
|
mas01mj@642
|
115 <rdfs:label>hiedge</rdfs:label>
|
mas01mj@642
|
116 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
117 <rdfs:range rdf:resource="&xsd;double" />
|
mas01mj@642
|
118 </owl:ObjectProperty>
|
mas01mj@642
|
119
|
mas01mj@642
|
120 <owl:ObjectProperty rdf:ID="octaveres">
|
mas01mj@642
|
121 <rdfs:label>octaveres</rdfs:label>
|
mas01mj@642
|
122 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
123 <rdfs:range rdf:resource="&xsd;double" />
|
mas01mj@642
|
124 </owl:ObjectProperty>
|
mas01mj@642
|
125
|
mas01mj@652
|
126 <owl:ObjectProperty rdf:ID="segmentation">
|
mas01mj@652
|
127 <rdfs:label>segmentation</rdfs:label>
|
mas01mj@642
|
128 <rdfs:domain rdf:resource="#Feature"/>
|
mas01mj@642
|
129 <rdfs:range rdf:resource="#Segmentation" />
|
mas01mj@642
|
130 </owl:ObjectProperty>
|
mas01mj@642
|
131
|
mas01mj@642
|
132 <owl:Class rdf:ID="Segmentation">
|
mas01mj@642
|
133 <rdfs:label>Segmentation</rdfs:label>
|
mas01mj@642
|
134 </owl:Class>
|
mas01mj@642
|
135
|
mas01mj@642
|
136 <owl:Class rdf:ID="FrameSegmentation">
|
mas01mj@642
|
137 <rdfs:label>Frame Segmentation</rdfs:label>
|
mas01mj@642
|
138 <rdfs:subClassOf rdf:resource="#Segmentation" />
|
mas01mj@642
|
139 </owl:Class>
|
mas01mj@642
|
140
|
mas01mj@642
|
141 <owl:Class rdf:ID="BeatSegmentation">
|
mas01mj@642
|
142 <rdfs:label>Beat Segmentation</rdfs:label>
|
mas01mj@642
|
143 <rdfs:subClassOf rdf:resource="#Segmentation" />
|
mas01mj@642
|
144 </owl:Class>
|
mas01mj@642
|
145
|
mas01mj@642
|
146 <owl:Class rdf:ID="StructuralSegmentation">
|
mas01mj@642
|
147 <rdfs:label>Structural Segmentation</rdfs:label>
|
mas01mj@642
|
148 <rdfs:subClassOf rdf:resource="#Segmentation" />
|
mas01mj@642
|
149 </owl:Class>
|
mas01mj@642
|
150
|
mas01mj@642
|
151
|
mas01mj@642
|
152 <owl:Class rdf:ID="Window">
|
mas01mj@642
|
153 <rdfs:label>Window</rdfs:label>
|
mas01mj@642
|
154 </owl:Class>
|
mas01mj@642
|
155
|
mas01mj@642
|
156 <owl:Class rdf:ID="HammingWindow">
|
mas01mj@642
|
157 <rdfs:label>Hamming Window</rdfs:label>
|
mas01mj@642
|
158 <rdfs:subClassOf rdf:resource="#Window" />
|
mas01mj@642
|
159 </owl:Class>
|
mas01mj@642
|
160
|
mas01mj@652
|
161 <owl:Class rdf:ID="ChromagramFeature">
|
mas01mj@640
|
162 <rdfs:label>Chromogram Feature</rdfs:label>
|
mas01mj@642
|
163 <rdfs:subClassOf rdf:resource="#Feature" />
|
mas01mj@640
|
164 </owl:Class>
|
mas01mj@640
|
165
|
mas01mj@640
|
166 <owl:Class rdf:ID="MFCCFeature">
|
mas01mj@640
|
167 <rdfs:label>MFCC Feature</rdfs:label>
|
mas01mj@642
|
168 <rdfs:subClassOf rdf:resource="#Feature" />
|
mas01mj@640
|
169 </owl:Class>
|
mas01mj@640
|
170
|
mas01mj@640
|
171 <owl:Class rdf:ID="CQTFeature">
|
mas01mj@640
|
172 <rdfs:label>CQT Feature</rdfs:label>
|
mas01mj@642
|
173 <rdfs:subClassOf rdf:resource="#Feature" />
|
mas01mj@640
|
174 </owl:Class>
|
mas01mj@640
|
175
|
mas01mj@640
|
176 </rdf:RDF>
|