Mercurial > hg > audiodb
comparison gengetopt.in @ 277:abfb26e08d9c audiodb-debian
Merge trunk changes -r326:386 into audiodb-debian branch.
Plus new debian/changelog version. (Should have used an epoch really,
but couldn't be bothered; TODO: work out a sane version numbering
policy).
author | mas01cr |
---|---|
date | Tue, 01 Jul 2008 09:12:40 +0000 |
parents | cbf51690c78c |
children |
comparison
equal
deleted
inserted
replaced
246:cbf51690c78c | 277:abfb26e08d9c |
---|---|
3 purpose "A feature vector database management system for content-based retrieval." | 3 purpose "A feature vector database management system for content-based retrieval." |
4 option "help" H "print help on audioDB usage and exit." optional | 4 option "help" H "print help on audioDB usage and exit." optional |
5 option "verbosity" v "level of detail of operational information." int typestr="detail" default="1" optional | 5 option "verbosity" v "level of detail of operational information." int typestr="detail" default="1" optional |
6 text "\nDatabase commands are UPPER CASE. Command options are lower case.\n" | 6 text "\nDatabase commands are UPPER CASE. Command options are lower case.\n" |
7 text "" | 7 text "" |
8 section "Database Setup" sectiondesc="All database operations require a database argument." | 8 section "Database Operations" sectiondesc="All database operations require a database argument." |
9 | 9 |
10 option "database" d "database file required by Database commands." string typestr="filename" optional | 10 option "database" d "database file required by Database commands." string typestr="filename" optional |
11 | |
12 section "Database Creation" sectiondesc="Creating a new database file." | |
13 | |
11 option "NEW" N "make a new (initially empty) database." dependon="database" optional | 14 option "NEW" N "make a new (initially empty) database." dependon="database" optional |
12 option "size" - "size of database file (in MB)" int dependon="NEW" default="2000" optional | 15 option "size" - "size of database file (in MB)" int dependon="NEW" optional hidden |
16 option "datasize" - "size of data table requested (in MB)" int dependon="NEW" default="1355" optional | |
17 option "ntracks" - "capacity of database for tracks" int dependon="NEW" default="20000" optional | |
18 option "datadim" - "dimensionality of stored data" int dependon="NEW" default="9" optional | |
19 | |
20 section "Database Maintenance" sectiondesc="Querying, tweaking and dumping databases." | |
21 | |
13 option "STATUS" S "output database information to stdout." dependon="database" optional | 22 option "STATUS" S "output database information to stdout." dependon="database" optional |
14 option "DUMP" D "output all entries: index key size." dependon="database" optional | 23 option "DUMP" D "output all entries: index key size." dependon="database" optional |
15 option "output" - "output directory" string dependon="DUMP" default="audioDB.dump" optional | 24 option "output" - "output directory" string dependon="DUMP" default="audioDB.dump" optional |
16 option "L2NORM" L "unit norm vectors and norm all future inserts." dependon="database" optional | 25 option "L2NORM" L "unit norm vectors and norm all future inserts." dependon="database" optional |
17 option "POWER" P "turn on power flag for database." dependon="database" optional | 26 option "POWER" P "turn on power flag for database." dependon="database" optional |
31 option "keyList" K "text file containing list of unique identifiers associated with --features." string typestr="filename" optional | 40 option "keyList" K "text file containing list of unique identifiers associated with --features." string typestr="filename" optional |
32 | 41 |
33 | 42 |
34 section "Database Search" sectiondesc="Thse commands control the retrieval behaviour.\n" | 43 section "Database Search" sectiondesc="Thse commands control the retrieval behaviour.\n" |
35 | 44 |
36 option "QUERY" Q "content-based search on --database using --features as a query. Optionally restrict the search to those tracks identified in a --keyList." values="point","track","sequence" typestr="searchtype" dependon="database" dependon="features" optional | 45 option "QUERY" Q "content-based search on --database using --features as a query. Optionally restrict the search to those tracks identified in a --keyList." values="point","track","sequence","nsequence","onetoonensequence" typestr="searchtype" dependon="database" dependon="features" optional |
37 option "qpoint" p "ordinal position of query start point in --features file." int typestr="position" default="0" optional | 46 option "qpoint" p "ordinal position of query start point in --features file." int typestr="position" default="0" optional |
38 option "exhaustive" e "exhaustive search: iterate through all query vectors in search. Overrides --qpoint." flag off optional hidden | 47 option "exhaustive" e "exhaustive search: iterate through all query vectors in search. Overrides --qpoint." flag off optional hidden |
39 option "pointnn" n "number of point nearest neighbours to use in retrieval." int typestr="numpoints" default="10" optional | 48 option "pointnn" n "number of point nearest neighbours to use in retrieval." int typestr="numpoints" default="10" optional |
40 option "radius" R "radius search, returns all points/tracks/sequences inside given radius. (Overrides --pointnn)." double default="1.0" optional | 49 option "radius" R "radius search, returns all points/tracks/sequences inside given radius. (Overrides --pointnn)." double default="1.0" optional |
41 option "expandfactor" x "time compress/expand factor of result length to query length [1.0 .. 100.0]." double default="1.1" optional hidden | 50 option "expandfactor" x "time compress/expand factor of result length to query length [1.0 .. 100.0]." double default="1.1" optional hidden |