ofxCv icon indicating copy to clipboard operation
ofxCv copied to clipboard

Issue to get all the internal current tracker: matched + unmatched objects( young enough )

Open carlesgutierrez opened this issue 6 years ago • 0 comments

Hello Kyle, I want to get the current vector, because when blobs are being undetected but young enought in the traker, they are still usefull and I need their internal data ( Age, Rect, ... ).

For now, I've added a getter function:

vector<TrackedObject<T> > getCurrentRaw();

template<class T>
inline vector<TrackedObject<T>> Tracker<T>::getCurrentRaw()
{
	return current;
}

Isthere another method for this instead?

carlesgutierrez avatar Oct 18 '17 15:10 carlesgutierrez