view tests/0012/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
line wrap: on
line source
#! /bin/bash

. ../test-utils.sh

if [ -f testdb ]; then rm -f testdb; fi

${AUDIODB} -d testdb -N

intstring 2 > testfeature
floatstring 0 0.5 >> testfeature
floatstring 0.5 0 >> testfeature

# sequence queries require L2NORM; check that we can still insert
# after turning flag on
${AUDIODB} -d testdb -L

${AUDIODB} -d testdb -I -f testfeature

echo "query point (0.0,0.5)"
intstring 2 > testquery
floatstring 0 0.5 >> testquery

${AUDIODB} -d testdb -Q sequence -l 1 -f testquery > testoutput
echo testfeature 1 0 0 > test-expected-output
cmp testoutput test-expected-output
${AUDIODB} -d testdb -Q sequence -l 1 -f testquery -n 1 > testoutput
echo testfeature 0 0 0 > test-expected-output
cmp testoutput test-expected-output

echo "query point (0.5,0.0)"
intstring 2 > testquery
floatstring 0.5 0 >> testquery

${AUDIODB} -d testdb -Q sequence -l 1 -f testquery > testoutput
echo testfeature 1 0 1 > test-expected-output
cmp testoutput test-expected-output
${AUDIODB} -d testdb -Q sequence -l 1 -f testquery -n 1 > testoutput
echo testfeature 0 0 1 > test-expected-output
cmp testoutput test-expected-output

exit 104