22int main(
int argc, 
char const* argv[])
 
   29    std::shared_ptr<jevois::Engine> engine(
new jevois::Engine(argc, argv, 
"engine"));
 
   33#ifndef JEVOIS_PLATFORM_A33 
   37    try { engine->
streamOn(); } 
catch (...) { }
 
   43  catch (std::exception 
const & e) { std::cerr << 
"Exiting on exception: " << e.what(); }
 
   44  catch (...) { std::cerr << 
"Exiting on unknown exception"; }
 
 
JeVois processing engine - gets images from camera sensor, processes them, and sends results over USB...
void streamOn()
Start streaming on video from camera, processing, and USB.
int mainLoop()
Main loop: grab, process, send over USB. Should be called by main application thread.
int main(int argc, char const *argv[])
Main daemon that grabs video frames from the camera, sends them to processing, and sends the results ...
void logEnd()
Terminate log service.