Home
last modified time | relevance | path

Searched refs:num_consecutive_frames_below_threshold_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dtracked_object.cc43 num_consecutive_frames_below_threshold_(0), in TrackedObject()
87 num_consecutive_frames_below_threshold_ = 0; in UpdatePosition()
94 if (num_consecutive_frames_below_threshold_ < 1000) { in UpdatePosition()
101 num_consecutive_frames_below_threshold_ += 1000; in UpdatePosition()
107 ++num_consecutive_frames_below_threshold_; in UpdatePosition()
122 num_consecutive_frames_below_threshold_ = 0; in OnDetection()
155 num_consecutive_frames_below_threshold_ = 0; in OnDetection()
Dtracked_object.h58 num_consecutive_frames_below_threshold_ < kMaxNumDetectionFailures; in IsVisible()
122 return num_consecutive_frames_below_threshold_; in GetNumConsecutiveFramesBelowThreshold()
127 num_consecutive_frames_below_threshold_ = 0; in resetNumConsecutiveFramesBelowThreshold()
163 int num_consecutive_frames_below_threshold_; variable
178 << " " << tracked_object.num_consecutive_frames_below_threshold_