blob: a0ae2c474a3819c7ad9bb589c2eb40559c4a36a8 [file] [log] [blame]
jackychenfa0befe2016-04-01 07:46:58 -07001/*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#include "webrtc/modules/video_processing/util/noise_estimation.h"
12
13namespace webrtc {
14
15void NoiseEstimation::Init(int width, int height, CpuType cpu_type) {
16 int mb_cols = width >> 4;
17 int mb_rows = height >> 4;
18 consec_low_var_.reset(new uint32_t[mb_cols * mb_rows]());
19 width_ = width;
20 height_ = height;
21 mb_cols_ = width_ >> 4;
22 mb_rows_ = height_ >> 4;
23 cpu_type_ = cpu_type;
24}
25
26void NoiseEstimation::GetNoise(int mb_index, uint32_t var, uint32_t luma) {
27 consec_low_var_[mb_index]++;
28 num_static_block_++;
29 if (consec_low_var_[mb_index] >= kConsecLowVarFrame &&
jackychenafaae0d2016-04-12 23:02:55 -070030 (luma >> 6) < kAverageLumaMax && (luma >> 6) > kAverageLumaMin) {
jackychenfa0befe2016-04-01 07:46:58 -070031 // Normalized var by the average luma value, this gives more weight to
32 // darker blocks.
jackychenafaae0d2016-04-12 23:02:55 -070033 int nor_var = var / (luma >> 10);
jackychenfa0befe2016-04-01 07:46:58 -070034 noise_var_ +=
35 nor_var > kBlockSelectionVarMax ? kBlockSelectionVarMax : nor_var;
36 num_noisy_block_++;
37 }
38}
39
40void NoiseEstimation::ResetConsecLowVar(int mb_index) {
41 consec_low_var_[mb_index] = 0;
42}
43
44void NoiseEstimation::UpdateNoiseLevel() {
45 // TODO(jackychen): Tune a threshold for numb_noisy_block > T to make the
46 // condition more reasonable.
47 // No enough samples implies the motion of the camera or too many moving
48 // objects in the frame.
jackychenafaae0d2016-04-12 23:02:55 -070049 if (num_static_block_ <
50 (0.65 * mb_cols_ * mb_rows_ / NOISE_SUBSAMPLE_INTERVAL) ||
51 !num_noisy_block_) {
52#if DISPLAY
53 printf("Not enough samples. %d \n", num_static_block_);
54#endif
jackychenfa0befe2016-04-01 07:46:58 -070055 noise_var_ = 0;
56 noise_var_accum_ = 0;
jackychenfa0befe2016-04-01 07:46:58 -070057 num_noisy_block_ = 0;
jackychenafaae0d2016-04-12 23:02:55 -070058 num_static_block_ = 0;
jackychenfa0befe2016-04-01 07:46:58 -070059 return;
60 } else {
jackychenafaae0d2016-04-12 23:02:55 -070061#if DISPLAY
62 printf("%d %d fraction = %.3f\n", num_static_block_,
63 mb_cols_ * mb_rows_ / NOISE_SUBSAMPLE_INTERVAL,
64 percent_static_block_);
65#endif
jackychenfa0befe2016-04-01 07:46:58 -070066 // Normalized by the number of noisy blocks.
67 noise_var_ /= num_noisy_block_;
68 // Get the percentage of static blocks.
jackychenafaae0d2016-04-12 23:02:55 -070069 percent_static_block_ = static_cast<double>(num_static_block_) /
70 (mb_cols_ * mb_rows_ / NOISE_SUBSAMPLE_INTERVAL);
jackychenfa0befe2016-04-01 07:46:58 -070071 num_noisy_block_ = 0;
72 num_static_block_ = 0;
73 }
74 // For the first frame just update the value with current noise_var_,
75 // otherwise, use the averaging window.
76 if (noise_var_accum_ == 0) {
77 noise_var_accum_ = noise_var_;
78 } else {
79 noise_var_accum_ = (noise_var_accum_ * 15 + noise_var_) / 16;
80 }
jackychenfa0befe2016-04-01 07:46:58 -070081#if DISPLAY
82 printf("noise_var_accum_ = %.1f, noise_var_ = %d.\n", noise_var_accum_,
83 noise_var_);
84#endif
jackychenafaae0d2016-04-12 23:02:55 -070085 // Reset noise_var_ for the next frame.
86 noise_var_ = 0;
jackychenfa0befe2016-04-01 07:46:58 -070087}
88
89uint8_t NoiseEstimation::GetNoiseLevel() {
90 int noise_thr = cpu_type_ ? kNoiseThreshold : kNoiseThresholdNeon;
91 UpdateNoiseLevel();
92 if (noise_var_accum_ > noise_thr) {
93 return 1;
94 }
95 return 0;
96}
97
98} // namespace webrtc