comparison examples/vamp-example-plugins:spectralcentroid.n3 @ 138:147de5e64d28

* Update vamp.n3/rdf from km-rdf * Add template generator (old jerrell version) from sv1 repository * Add provisional RDF descriptions for example plugins
author cannam
date Thu, 19 Jun 2008 09:37:31 +0000
parents
children 3ec175bf5249
comparison
equal deleted inserted replaced
137:dbab8c3a6571 138:147de5e64d28
1 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
2 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
3 @prefix vamp: <http://www.purl.org/ontology/vamp/> .
4 @prefix vampex: <http://www.purl.org/ontology/vamp/examples/> .
5 @prefix plugbase: <http://purl.org/ontology/vamp/examples/> .
6 @prefix owl: <http://www.w3.org/2002/07/owl#> .
7 @prefix dc: <http://purl.org/dc/elements/1.1/> .
8 @prefix af: <http://purl.org/ontology/af/> .
9 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
10 @prefix cc: <http://web.resource.org/cc/> .
11 @prefix thisplug: <http://purl.org/ontology/vamp/examples/spectralcentroid#> .
12 @prefix : <> .
13
14 <> a vamp:PluginDescription ;
15 foaf:maker <http://www.vamp-plugins.org/> ;
16 foaf:maker <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
17 foaf:primaryTopic plugbase:spectralcentroid .
18
19 plugbase:spectralcentroid a vamp:Plugin ;
20 dc:title "Spectral Centroid" ;
21 vamp:name "Spectral Centroid" ;
22 dc:description "Calculate the centroid frequency of the spectrum of the input signal" ;
23 foaf:maker [ foaf:name "Vamp SDK Example Plugins"] ; # FIXME could give plugin author's URI here
24 cc:license <FIXME license for the plugin> ;
25 vamp:identifier "spectralcentroid" ;
26 vamp:vamp_API_version vamp:api_version_1 ;
27 owl:versionInfo "2" ;
28 vamp:input_domain vamp:TimeDomain ;
29
30
31 vamp:output_descriptor thisplug:output_logcentroid ;
32 vamp:output_descriptor thisplug:output_linearcentroid ;
33 .
34 thisplug:output_logcentroid a vamp:DenseOutput ;
35 vamp:identifier "logcentroid" ;
36 dc:title "Log Frequency Centroid" ;
37 dc:description "Centroid of the log weighted frequency spectrum" ;
38 vamp:fixed_bin_count "true" ;
39 vamp:is_quantised "false" ;
40 vamp:unit "Hz" ;
41 vamp:bin_count 1 ;
42 vamp:bin_names ( "");
43 vamp:sample_type vamp:OneSamplePerStep ;
44 vamp:computes_feature_type <FIXME feature type URI> ;
45 vamp:computes_event_type <FIXME event type URI> ;
46 .
47 thisplug:output_linearcentroid a vamp:DenseOutput ;
48 vamp:identifier "linearcentroid" ;
49 dc:title "Linear Frequency Centroid" ;
50 dc:description "Centroid of the linear frequency spectrum" ;
51 vamp:fixed_bin_count "true" ;
52 vamp:is_quantised "false" ;
53 vamp:unit "Hz" ;
54 vamp:bin_count 1 ;
55 vamp:bin_names ( "");
56 vamp:sample_type vamp:OneSamplePerStep ;
57 vamp:computes_feature_type <FIXME feature type URI> ;
58 vamp:computes_event_type <FIXME event type URI> ;
59 .