Skip to content
Snippets Groups Projects
Commit db4f5ec7 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Add number of samples in motion buffer in Prb::print()

parent c1a369e2
Branches main
No related tags found
2 merge requests!436Release to start wolf public,!433After 2nd RA-L submission
Pipeline #8222 canceled
......@@ -126,7 +126,10 @@ void CaptureMotion::printHeader(int _depth, bool _constr_by, bool _metric, bool
if (getStateBlockMap().size() > 0)
printState(_metric, _state_blocks, _stream, _tabs);
_stream << _tabs << " " << "buffer size : " << getBuffer().size() << std::endl;
_stream << _tabs << " " << "buffer size : " << getBuffer().size();
if (getBuffer().size() > 0) _stream << " ; nbr of data samples : " << getBuffer().size() - 1;
_stream << std::endl;
if ( _metric && ! getBuffer().empty())
{
_stream << _tabs << " " << "delta preint : (" << getDeltaPreint().transpose() << ")" << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment