QTrk
Public Member Functions | Public Attributes | List of all members
ResultManager::FrameCounters Struct Reference

Structure to keep track of frame counts. More...

#include <ResultManager.h>

Public Member Functions

 FrameCounters ()
 

Public Attributes

int startFrame
 Index of the first frame for which results are available. More...
 
int processedFrames
 Number of frames processed by the ResultManager. More...
 
int lastSaveFrame
 Index of the last frame saved to the output file. More...
 
int capturedFrames
 Number of frames captured. Counted through calls to StoreFrameInfo. More...
 
int localizationsDone
 Amount of localizations finished by the linked QueuedTracker instance. More...
 
int lostFrames
 Number of frames deleted from memory before results were finished and/or saved. More...
 
int fileError
 Count of reported errors while handling output files. Currently only counts on error when opening binary files. More...
 

Detailed Description

Structure to keep track of frame counts.

Definition at line 168 of file ResultManager.h.

Constructor & Destructor Documentation

§ FrameCounters()

ResultManager::FrameCounters::FrameCounters ( )

Definition at line 31 of file ResultManager.cpp.

32 {
33  startFrame = 0;
34  lastSaveFrame = 0;
35  processedFrames = 0;
36  capturedFrames = 0;
38  lostFrames = 0;
39  fileError = 0;
40 }
int lastSaveFrame
Index of the last frame saved to the output file.
int fileError
Count of reported errors while handling output files. Currently only counts on error when opening bin...
int localizationsDone
Amount of localizations finished by the linked QueuedTracker instance.
int processedFrames
Number of frames processed by the ResultManager.
int startFrame
Index of the first frame for which results are available.
int lostFrames
Number of frames deleted from memory before results were finished and/or saved.
int capturedFrames
Number of frames captured. Counted through calls to StoreFrameInfo.

Member Data Documentation

§ capturedFrames

int ResultManager::FrameCounters::capturedFrames

Number of frames captured. Counted through calls to StoreFrameInfo.

Definition at line 173 of file ResultManager.h.

§ fileError

int ResultManager::FrameCounters::fileError

Count of reported errors while handling output files. Currently only counts on error when opening binary files.

Definition at line 176 of file ResultManager.h.

§ lastSaveFrame

int ResultManager::FrameCounters::lastSaveFrame

Index of the last frame saved to the output file.

Definition at line 172 of file ResultManager.h.

§ localizationsDone

int ResultManager::FrameCounters::localizationsDone

Amount of localizations finished by the linked QueuedTracker instance.

Definition at line 174 of file ResultManager.h.

§ lostFrames

int ResultManager::FrameCounters::lostFrames

Number of frames deleted from memory before results were finished and/or saved.

Definition at line 175 of file ResultManager.h.

§ processedFrames

int ResultManager::FrameCounters::processedFrames

Number of frames processed by the ResultManager.

Definition at line 171 of file ResultManager.h.

§ startFrame

int ResultManager::FrameCounters::startFrame

Index of the first frame for which results are available.

Definition at line 170 of file ResultManager.h.


The documentation for this struct was generated from the following files: