diff rdf/vamp.n3 @ 269:91821a3ab0b6

* Fix incorrect handling of step & block size in time-domain plugin that specifies neither * Add computed_by for features to link back to their transforms
author cannam
date Tue, 25 Nov 2008 17:51:12 +0000
parents 11588ad1cc3b
children de3e865f92c8
line wrap: on
line diff
--- a/rdf/vamp.n3	Tue Nov 25 13:16:07 2008 +0000
+++ b/rdf/vamp.n3	Tue Nov 25 17:51:12 2008 +0000
@@ -440,7 +440,7 @@
 	vs:term_status "unstable";
 	.
 
-# The next 3 properties are included to link in the Audio Features Ontology (not estrictly from the Vamp API).
+# The next 3 properties are included to link in the Audio Features Ontology (not strictly from the Vamp API).
 
 vamp:computes_event_type
 	a rdf:Property;
@@ -726,4 +726,21 @@
 #parameter declared above
 
 
+# The next property is here to link the Audio Features ontology to the
+# Transform ontology terms -- an audio feature may use this to
+# indicate which transform produced it
 
+vamp:computed_by
+	a rdf:Property;
+	a owl:ObjectProperty;
+	rdfs:label "computed by";
+	rdfs:comment """
+			Associates an audio feature with the transform that was used to compute it.
+	""";
+	rdfs:domain event:Event;
+	rdfs:domain af:Signal;
+	rdfs:range vamp:Transform;
+	vs:term_status "unstable";
+	.
+
+