Mercurial > hg > audiodb
view pointpair.h @ 620:70fc1a504138
Okay, I think my python bindings have reached the border of useful, so in the svn they go.
The bindings currently allow for adb create and open, status and the setting of the l2norm and power flags.
Note that these are the direct c bindings, when it's done there will be OO dressing on top for standard entry.
Also, even though I don't use numpy yet, the include file is brought in, so the module won't build if you don't have numpy in an importable place.
author | map01bf |
---|---|
date | Tue, 15 Sep 2009 17:40:02 +0000 |
parents | 2b95e396f4d7 |
children | aa715b3e18db |
line wrap: on
line source
// should probably be rewritten class PointPair { public: uint32_t trackID; uint32_t qpos; uint32_t spos; PointPair(uint32_t a, uint32_t b, uint32_t c); }; bool operator<(const PointPair& a, const PointPair& b);