Home
last modified time | relevance | path

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

/external/libvpx/libvpx/tools/non_greedy_mv/
Dnon_greedy_mv.py90 feature_score = np.array([math.log(float(v) + 1, 2) for v in word_ls])
91 feature_score = feature_score.reshape(mv_rows, mv_cols)
92 return feature_score
116 feature_score = read_feature_score(fp, mv_rows, mv_cols)
122 return frame_idx, mv_ls, img, ref, bs, feature_score
143 for frame_idx, mv_ls, img, ref, bs, feature_score in data_ls:
161 axes[1][0].imshow(feature_score)
162 feature_score_arr = feature_score.flatten()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encoder.h301 double feature_score; member
558 double feature_score; member
Dvp9_encoder.c6032 if (aa->feature_score < bb->feature_score) {
6034 } else if (aa->feature_score > bb->feature_score) {
6092 if (r < *size && heap[r]->feature_score > heap[l]->feature_score) {
6095 if (heap[p]->feature_score >= heap[c]->feature_score) {
6119 while (c > 0 && heap[c]->feature_score > heap[p]->feature_score) {
6176 tpl_stats->feature_score = get_feature_score(
6179 fs_loc->feature_score = tpl_stats->feature_score;
6408 printf("%f ", tpl_ptr->feature_score);