Home
last modified time | relevance | path

Searched refs:score_ (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
Dkeypoint.h32 Keypoint() : pos_(0.0f, 0.0f), score_(0.0f), type_(0) {} in Keypoint()
34 : pos_(x, y), score_(0.0f), type_(0) {} in Keypoint()
37 float score_; member
43 << keypoint.score_ << ", " << keypoint.type_ << "]";
Dkeypoint_detector.cc55 keypoint->score_ = in ScoreKeypoints()
63 keypoint->score_ = in ScoreKeypoints()
71 return (reinterpret_cast<const Keypoint*>(a)->score_ - in KeypointCompare()
72 reinterpret_cast<const Keypoint*>(b)->score_) <= 0 ? 1 : -1; in KeypointCompare()
85 const float curr_score = candidate_keypoints[i].score_; in SortKeypoints()
392 new_keypoints[number_of_keypoints].score_ = in CopyKeypoints()
393 prev_change.frame1_keypoints_[i].score_; in CopyKeypoints()
509 keypoint->score_ = 0; in FindFastKeypoints()
Dframe_pair.cc87 max_score = MAX(max_score, frame1_keypoints_[i].score_); in FillWeights()
88 min_score = MIN(min_score, frame1_keypoints_[i].score_); in FillWeights()
126 intrinsic_score = ((frame1_keypoints_[i].score_ - min_score) / in FillWeights()
Dobject_tracker.cc273 out_data[base + 5] = change.frame1_keypoints_[i].score_; in GetKeypoints()
/external/tensorflow/tensorflow/contrib/losses/python/metric_learning/
Dmetric_loss_ops_test.py416 self.score_ = np.float32(-1.0) * self._get_facility_distance(pdists, subset)
417 self.score_aug_ = self.score_ + loss_mult * (
474 self.score_, self.score_aug_))
483 self.score_ = np.float32(-1.0) * self._get_facility_distance(
485 self.score_aug_ = self.score_ + loss_mult * (
489 print('PAM iter: %d, score: %f, score_aug: %f' % (iter_, self.score_,