Searched defs:weighted_deltas (Results 1 - 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/examples/android/jni/object_tracking/
H A Dframe_pair.cc202 const WeightedDelta* const weighted_deltas,
211 if (weighted_deltas[i].weight > 0.0f) {
212 current_weight += weighted_deltas[i].weight;
214 return weighted_deltas[i].delta;
227 static WeightedDelta weighted_deltas[kMaxKeypoints]; local
235 weighted_deltas[i].delta = deltas[i].x;
237 weighted_deltas[i].weight = weight;
242 qsort(weighted_deltas, kMaxKeypoints, sizeof(WeightedDelta),
244 median_delta.x = GetMedian(kMaxKeypoints, weighted_deltas, total_weight);
254 weighted_deltas[
201 GetMedian(const int num_items, const WeightedDelta* const weighted_deltas, const float sum) argument
273 static WeightedDelta weighted_deltas[kMaxKeypoints * 2]; local
[all...]

Completed in 86 milliseconds