blob: 319845bf2da37169c974eb40a5f8673b8cbede71 [file] [log] [blame]
jackychen8f9902a2015-11-26 02:59:48 -08001/*
2 * Copyright (c) 2015 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#ifndef WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_DENOISER_H_
12#define WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_DENOISER_H_
13
kwiberge065fcf2016-03-02 01:01:11 -080014#include <memory>
15
jackychen8f9902a2015-11-26 02:59:48 -080016#include "webrtc/modules/video_processing/util/denoiser_filter.h"
jackychenfa0befe2016-04-01 07:46:58 -070017#include "webrtc/modules/video_processing/util/noise_estimation.h"
jackychen8f9902a2015-11-26 02:59:48 -080018#include "webrtc/modules/video_processing/util/skin_detection.h"
19
20namespace webrtc {
21
22class VideoDenoiser {
23 public:
jackychen67e94fb2016-01-11 21:34:07 -080024 explicit VideoDenoiser(bool runtime_cpu_detection);
jackychenafaae0d2016-04-12 23:02:55 -070025
jackychenfa0befe2016-04-01 07:46:58 -070026 void DenoiseFrame(const VideoFrame& frame,
27 VideoFrame* denoised_frame,
jackychenafaae0d2016-04-12 23:02:55 -070028 VideoFrame* denoised_frame_prev,
29 bool noise_estimation_enabled);
jackychen8f9902a2015-11-26 02:59:48 -080030
31 private:
jackychenafaae0d2016-04-12 23:02:55 -070032 void DenoiserReset(const VideoFrame& frame,
33 VideoFrame* denoised_frame,
34 VideoFrame* denoised_frame_prev);
35
36 // Check the mb position, return 1: close to the frame center (between 1/8
37 // and 7/8 of width/height), 3: close to the border (out of 1/16 and 15/16
38 // of width/height), 2: in between.
39 int PositionCheck(int mb_row, int mb_col, int noise_level);
40
41 // To reduce false detection in moving object detection (MOD).
42 void ReduceFalseDetection(const std::unique_ptr<uint8_t[]>& d_status,
43 std::unique_ptr<uint8_t[]>* d_status_red,
44 int noise_level);
45
46 // Return whether a block might cause trailing artifact by checking if one of
47 // its neighbor blocks is a moving edge block.
48 bool IsTrailingBlock(const std::unique_ptr<uint8_t[]>& d_status,
49 int mb_row,
50 int mb_col);
51
52 // Copy input blocks to dst buffer on moving object blocks (MOB).
53 void CopySrcOnMOB(const uint8_t* y_src, uint8_t* y_dst);
54
jackychen8f9902a2015-11-26 02:59:48 -080055 int width_;
56 int height_;
jackychenafaae0d2016-04-12 23:02:55 -070057 int mb_rows_;
58 int mb_cols_;
59 int stride_y_;
60 int stride_u_;
61 int stride_v_;
jackychenfa0befe2016-04-01 07:46:58 -070062 CpuType cpu_type_;
kwiberge065fcf2016-03-02 01:01:11 -080063 std::unique_ptr<DenoiserFilter> filter_;
jackychenfa0befe2016-04-01 07:46:58 -070064 std::unique_ptr<NoiseEstimation> ne_;
jackychenafaae0d2016-04-12 23:02:55 -070065 // 1 for moving edge block, 0 for static block.
66 std::unique_ptr<uint8_t[]> moving_edge_;
67 // 1 for moving object block, 0 for static block.
68 std::unique_ptr<uint8_t[]> moving_object_;
69 // x_density_ and y_density_ are used in MOD process.
jackychenfa0befe2016-04-01 07:46:58 -070070 std::unique_ptr<uint8_t[]> x_density_;
71 std::unique_ptr<uint8_t[]> y_density_;
jackychenafaae0d2016-04-12 23:02:55 -070072 // Save the return values by MbDenoise for each block.
73 std::unique_ptr<DenoiserDecision[]> mb_filter_decision_;
jackychen8f9902a2015-11-26 02:59:48 -080074};
75
76} // namespace webrtc
77
78#endif // WEBRTC_MODULES_VIDEO_PROCESSING_VIDEO_DENOISER_H_