Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
We have moved to a new forum at http://jevois.usc.edu, please check it out. The forum at jevois.org/qa will not allow new user registrations but is maintained alive for its useful past questions and answers.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

Is there a list of which modules work in non-streaming mode?

0 votes

I saw in this answer that some modules don't (or didn't) work in non-streaming mode. Is there list in the documentation that says which modules work in non-streaming mod and which don't? I can't find one...

asked May 1, 2017 in Programmer Questions by zlite (300 points)

1 Answer

+1 vote
 
Best answer

The best way I can think to confirm is to look here and expand each module in the tree.  Then look for the process function(s).  If it can stream output then it will have two arguments like this:

virtual void BurnTest::process ( jevois::InputFrame &&  inframe,
jevois::OutputFrame &&  outframe)

If it can run without streaming output then there will (also) be a process function with only one argument like this:

virtual void ObjectTracker::process(jevois::InputFrame && inframe)
answered May 2, 2017 by franz (1,080 points)
selected May 2, 2017 by zlite
Thanks! Delighted to see that Road Tracking can work without streaming.
...