annotate vamp-client/client.cpp @ 90:6429a99abcad

Split out classes
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 10:17:59 +0100
parents 03ed2e0a6c8f
children 21f8af53eaf0
rev   line source
c@78 1
c@90 2 #include "PiperStubPlugin.h"
c@90 3 #include "CapnpMessageCompletenessChecker.h"
c@90 4 #include "PipedQProcessTransport.h"
c@90 5 #include "PiperCapnpClient.h"
c@83 6
c@83 7 #include <stdexcept>
c@83 8
c@83 9 using std::cerr;
c@83 10 using std::endl;
c@83 11
c@84 12 int main(int, char **)
c@84 13 {
c@90 14 piper::CapnpMessageCompletenessChecker checker;
c@90 15 piper::PipedQProcessTransport transport("../bin/piper-vamp-server", &checker);
c@90 16 piper::PiperCapnpClient client(&transport);
c@90 17
c@84 18 Vamp::Plugin *plugin = client.load("vamp-example-plugins:zerocrossing", 16, 0);
c@84 19 if (!plugin->initialise(1, 4, 4)) {
c@84 20 cerr << "initialisation failed" << endl;
c@84 21 } else {
c@84 22 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
c@84 23 float *bd = buf.data();
c@84 24 Vamp::Plugin::FeatureSet features = plugin->process
c@84 25 (&bd, Vamp::RealTime::zeroTime);
c@84 26 cerr << "results for output 0:" << endl;
c@84 27 auto fl(features[0]);
c@84 28 for (const auto &f: fl) {
c@84 29 cerr << f.values[0] << endl;
c@84 30 }
c@84 31 }
c@88 32
c@87 33 (void)plugin->getRemainingFeatures();
c@89 34
c@89 35 cerr << "calling reset..." << endl;
c@89 36 plugin->reset();
c@89 37 cerr << "...round 2!" << endl;
c@89 38
c@89 39 std::vector<float> buf = { 1.0, -1.0, 1.0, -1.0 };
c@89 40 float *bd = buf.data();
c@89 41 Vamp::Plugin::FeatureSet features = plugin->process
c@89 42 (&bd, Vamp::RealTime::zeroTime);
c@89 43 cerr << "results for output 0:" << endl;
c@89 44 auto fl(features[0]);
c@89 45 for (const auto &f: fl) {
c@89 46 cerr << f.values[0] << endl;
c@89 47 }
c@89 48
c@89 49 (void)plugin->getRemainingFeatures();
c@89 50
c@88 51 delete plugin;
c@87 52 //!!! -- and also implement reset(), which will need to reconstruct internally
c@84 53 }
c@84 54