view rdf/qm-vamp-plugins:qm-segmenter.n3 @ 80:e7c785094e7b

* update readmes &c
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 18 Nov 2008 14:51:49 +0000
parents c2b7e1d4f1db
children
line wrap: on
line source
@prefix rdfs:     <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd:      <http://www.w3.org/2001/XMLSchema#> .
@prefix vamp:     <http://www.purl.org/ontology/vamp/> .
@prefix vampex:   <http://www.purl.org/ontology/vamp/examples/> .
@prefix plugbase: <http://purl.org/ontology/vamp/qm-plugins/> .
@prefix owl:      <http://www.w3.org/2002/07/owl#> .
@prefix dc:       <http://purl.org/dc/elements/1.1/> .
@prefix af:       <http://purl.org/ontology/af/> .
@prefix foaf:     <http://xmlns.com/foaf/0.1/> .
@prefix cc:       <http://web.resource.org/cc/> .
@prefix thisplug: <http://purl.org/ontology/vamp/qm-plugins/qm-segmenter#> .
@prefix :         <> .

<>  a   vamp:PluginDescription ;
     foaf:maker          <http://www.vamp-plugins.org/> ;
     foaf:maker          <http://www.vamp-plugins.org/doap.rdf#template-generator> ;
     foaf:primaryTopic   plugbase:qm-segmenter .

plugbase:qm-segmenter a   vamp:Plugin ;
    dc:title              "Segmenter" ;
    vamp:name             "Segmenter" ;
    dc:description        "Divide the track into a sequence of consistent segments" ;
    foaf:maker            [ foaf:name "Queen Mary, University of London"] ; # FIXME could give plugin author's URI here
    cc:license            <FIXME license for the plugin> ; 
    vamp:identifier       "qm-segmenter" ;
    vamp:vamp_API_version vamp:api_version_1 ;
    owl:versionInfo       "2" ;
    vamp:input_domain     vamp:TimeDomain ;

    vamp:parameter_descriptor   thisplug:param_nSegmentTypes ;
    vamp:parameter_descriptor   thisplug:param_featureType ;
    vamp:parameter_descriptor   thisplug:param_neighbourhoodLimit ;

    vamp:output_descriptor      thisplug:output_segmentation ;
    .
thisplug:param_nSegmentTypes a  vamp:ParameterDescriptor ;
    vamp:identifier     "nSegmentTypes" ;
    dc:title            "Number of segment-types" ;
    dc:format           "" ;
    vamp:min_value       2 ;
    vamp:max_value       12 ;
    vamp:default_value   10 .

thisplug:param_featureType a  vamp:ParameterDescriptor ;
    vamp:identifier     "featureType" ;
    dc:title            "Feature Type" ;
    dc:format           "" ;
    vamp:min_value       1 ;
    vamp:max_value       3 ;
    vamp:default_value   1 .

thisplug:param_neighbourhoodLimit a  vamp:ParameterDescriptor ;
    vamp:identifier     "neighbourhoodLimit" ;
    dc:title            "Minimum segment duration" ;
    dc:format           "s" ;
    vamp:min_value       1 ;
    vamp:max_value       15 ;
    vamp:default_value   4 .

thisplug:output_segmentation a  vamp:SparseOutput ;
    vamp:identifier       "segmentation" ;
    dc:title              "Segmentation" ;
    dc:description        "Segmentation"  ;
    vamp:fixed_bin_count  "true" ;
    vamp:is_quantized     "true"  ;
    vamp:unit             "segment-type" ;
    vamp:bin_count          1 ;
    vamp:bin_names          ( "");
   vamp:quantize_step        1  ;
    vamp:sample_type        vamp:VariableSampleRate ;
    vamp:sample_rate    5 ;
    vamp:computes_feature_type  <FIXME feature type URI> ;
    vamp:computes_event_type    <FIXME event type URI> ;
    .