Home
last modified time | relevance | path

Searched refs:frame_pair (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/test/scenario/
Dvideo_frame_matcher.cc106 VideoFramePair frame_pair; in HandleMatch() local
107 frame_pair.layer_id = layer_id; in HandleMatch()
108 frame_pair.captured = captured.frame; in HandleMatch()
109 frame_pair.capture_id = captured.id; in HandleMatch()
110 frame_pair.capture_time = captured.capture_time; in HandleMatch()
112 frame_pair.decode_id = captured.best_decode->id; in HandleMatch()
113 frame_pair.decoded = captured.best_decode->frame; in HandleMatch()
114 frame_pair.decoded_time = captured.best_decode->decoded_time; in HandleMatch()
116 frame_pair.render_time = std::max(captured.best_decode->render_time, in HandleMatch()
118 frame_pair.repeated = captured.best_decode->repeat_count++; in HandleMatch()
[all …]
/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dobject_tracker.cc73 void ObjectTracker::FindCorrespondences(FramePair* const frame_pair) const { in FindCorrespondences()
75 memset(frame_pair->optical_flow_found_keypoint_, false, in FindCorrespondences()
76 sizeof(*frame_pair->optical_flow_found_keypoint_) * kMaxKeypoints); in FindCorrespondences()
82 for (int i_feat = 0; i_feat < frame_pair->number_of_keypoints_; ++i_feat) { in FindCorrespondences()
83 Keypoint* const keypoint1 = frame_pair->frame1_keypoints_ + i_feat; in FindCorrespondences()
84 Keypoint* const keypoint2 = frame_pair->frame2_keypoints_ + i_feat; in FindCorrespondences()
89 frame_pair->optical_flow_found_keypoint_[i_feat] = true; in FindCorrespondences()
97 num_keypoints_found, frame_pair->number_of_keypoints_); in FindCorrespondences()
288 const FramePair& frame_pair) const { in TrackBox()
296 frame_pair.AdjustBox( in TrackBox()
[all …]
Dobject_tracker.h171 const FramePair& frame_pair) const;