Mercurial > hg > audiodb
annotate tests/0008/run-test.sh @ 264:1cec738101a8 0.8.9.anteindex
Fixed trackSequenceQueryNNReporter and trackSequenceQueryRadNNReporter so that order of point reporting is
what you would expect: i.e. closest to farthest.
pointNN is set to allow a maximum (MAX_POINTNN) of 1000000 points. This allows computation of an S-Matrix
using -Q nsequence. It also enables using the new -Q onetoonensequence query type for concatenative
synthesis by finding the closest match in the entire database to each query point. Restrict lists (-K
rList.txt) are useful for limiting the search to specific items in the database in these two cases.
-This line, and those below, will be ignored--
M trunk/reporter.h
author | mas01mc |
---|---|
date | Tue, 10 Jun 2008 16:22:52 +0000 |
parents | fe4dc39b2dd7 |
children |
rev | line source |
---|---|
mas01cr@252 | 1 #! /bin/bash |
mas01cr@56 | 2 |
mas01cr@56 | 3 . ../test-utils.sh |
mas01cr@56 | 4 |
mas01cr@56 | 5 if [ -f testdb ]; then rm -f testdb; fi |
mas01cr@56 | 6 |
mas01cr@56 | 7 ${AUDIODB} -d testdb -N |
mas01cr@56 | 8 |
mas01cr@56 | 9 intstring 2 > testfeature01 |
mas01cr@56 | 10 floatstring 0 1 >> testfeature01 |
mas01cr@56 | 11 intstring 2 > testfeature10 |
mas01cr@56 | 12 floatstring 1 0 >> testfeature10 |
mas01cr@56 | 13 |
mas01cr@56 | 14 ${AUDIODB} -d testdb -I -f testfeature01 |
mas01cr@56 | 15 ${AUDIODB} -d testdb -I -f testfeature10 |
mas01cr@56 | 16 |
mas01cr@56 | 17 # sequence queries require L2NORM |
mas01cr@56 | 18 ${AUDIODB} -d testdb -L |
mas01cr@56 | 19 |
mas01cr@56 | 20 echo "query point (0.0,0.5)" |
mas01cr@56 | 21 intstring 2 > testquery |
mas01cr@56 | 22 floatstring 0 0.5 >> testquery |
mas01cr@56 | 23 |
mas01cr@56 | 24 ${AUDIODB} -d testdb -Q sequence -l 1 -f testquery > testoutput |
mas01cr@56 | 25 echo testfeature01 0 0 0 > test-expected-output |
mas01cr@56 | 26 echo testfeature10 2 0 0 >> test-expected-output |
mas01cr@56 | 27 cmp testoutput test-expected-output |
mas01cr@56 | 28 ${AUDIODB} -d testdb -Q sequence -l 1 -f testquery -r 1 > testoutput |
mas01cr@56 | 29 echo testfeature01 0 0 0 > test-expected-output |
mas01cr@56 | 30 cmp testoutput test-expected-output |
mas01cr@56 | 31 |
mas01cr@56 | 32 echo "query point (0.5,0.0)" |
mas01cr@56 | 33 intstring 2 > testquery |
mas01cr@56 | 34 floatstring 0.5 0 >> testquery |
mas01cr@56 | 35 |
mas01cr@56 | 36 ${AUDIODB} -d testdb -Q sequence -l 1 -f testquery > testoutput |
mas01cr@56 | 37 echo testfeature10 0 0 0 > test-expected-output |
mas01cr@56 | 38 echo testfeature01 2 0 0 >> test-expected-output |
mas01cr@56 | 39 cmp testoutput test-expected-output |
mas01cr@56 | 40 ${AUDIODB} -d testdb -Q sequence -l 1 -f testquery -r 1 > testoutput |
mas01cr@56 | 41 echo testfeature10 0 0 0 > test-expected-output |
mas01cr@56 | 42 cmp testoutput test-expected-output |
mas01cr@56 | 43 |
mas01cr@56 | 44 exit 104 |