Home
last modified time | relevance | path

Searched refs:frame1_keypoints_ (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/tools/android/test/jni/object_tracking/
Dframe_pair.cc88 max_score = MAX(max_score, frame1_keypoints_[i].score_); in FillWeights()
89 min_score = MIN(min_score, frame1_keypoints_[i].score_); in FillWeights()
100 const bool in_box = box.Contains(frame1_keypoints_[i].pos_); in FillWeights()
112 Square(initial.x - frame1_keypoints_[i].pos_.x); in FillWeights()
114 Square(initial.y - frame1_keypoints_[i].pos_.y); in FillWeights()
127 intrinsic_score = ((frame1_keypoints_[i].score_ - min_score) / in FillWeights()
144 frame2_keypoints_[i].pos_.x - frame1_keypoints_[i].pos_.x; in FillTranslations()
146 frame2_keypoints_[i].pos_.y - frame1_keypoints_[i].pos_.y; in FillTranslations()
160 const Keypoint keypoint1 = frame1_keypoints_[i]; in FillScales()
Dobject_tracker.cc83 Keypoint* const keypoint1 = frame_pair->frame1_keypoints_ + i_feat; in FindCorrespondences()
245 const Point2f& point1 = change.frame1_keypoints_[i].pos_; in GetKeypointsPacked()
267 out_data[base + 0] = change.frame1_keypoints_[i].pos_.x; in GetKeypoints()
268 out_data[base + 1] = change.frame1_keypoints_[i].pos_.y; in GetKeypoints()
275 out_data[base + 5] = change.frame1_keypoints_[i].score_; in GetKeypoints()
276 out_data[base + 6] = change.frame1_keypoints_[i].type_; in GetKeypoints()
Dkeypoint_detector.cc168 if (bounding_box.Contains(curr_change->frame1_keypoints_[i].pos_)) { in SelectKeypoints()
183 curr_change->frame1_keypoints_, in SelectKeypoints()
184 curr_change->frame1_keypoints_ + curr_change->number_of_keypoints_); in SelectKeypoints()
393 prev_change.frame1_keypoints_[i].score_; in CopyKeypoints()
Dframe_pair.h83 Keypoint frame1_keypoints_[kMaxKeypoints]; variable