blob: dc89ead05f994de689f5845e4eea9d790aa64362 [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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef MODULES_VIDEO_PROCESSING_VIDEO_DENOISER_H_
12#define MODULES_VIDEO_PROCESSING_VIDEO_DENOISER_H_
jackychen8f9902a2015-11-26 02:59:48 -080013
kwiberge065fcf2016-03-02 01:01:11 -080014#include <memory>
15
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "common_video/include/i420_buffer_pool.h"
17#include "modules/video_processing/util/denoiser_filter.h"
18#include "modules/video_processing/util/noise_estimation.h"
19#include "modules/video_processing/util/skin_detection.h"
jackychen8f9902a2015-11-26 02:59:48 -080020
21namespace webrtc {
22
23class VideoDenoiser {
24 public:
jackychen67e94fb2016-01-11 21:34:07 -080025 explicit VideoDenoiser(bool runtime_cpu_detection);
jackychenafaae0d2016-04-12 23:02:55 -070026
Magnus Jedvert7a721e82017-06-14 11:28:08 +020027 rtc::scoped_refptr<I420BufferInterface> DenoiseFrame(
28 rtc::scoped_refptr<I420BufferInterface> frame,
nisse18ee17d2016-11-07 01:34:59 -080029 bool noise_estimation_enabled);
jackychen8f9902a2015-11-26 02:59:48 -080030
31 private:
Magnus Jedvert7a721e82017-06-14 11:28:08 +020032 void DenoiserReset(rtc::scoped_refptr<I420BufferInterface> frame);
jackychenafaae0d2016-04-12 23:02:55 -070033
34 // Check the mb position, return 1: close to the frame center (between 1/8
35 // and 7/8 of width/height), 3: close to the border (out of 1/16 and 15/16
36 // of width/height), 2: in between.
37 int PositionCheck(int mb_row, int mb_col, int noise_level);
38
39 // To reduce false detection in moving object detection (MOD).
40 void ReduceFalseDetection(const std::unique_ptr<uint8_t[]>& d_status,
41 std::unique_ptr<uint8_t[]>* d_status_red,
42 int noise_level);
43
44 // Return whether a block might cause trailing artifact by checking if one of
45 // its neighbor blocks is a moving edge block.
46 bool IsTrailingBlock(const std::unique_ptr<uint8_t[]>& d_status,
47 int mb_row,
48 int mb_col);
49
50 // Copy input blocks to dst buffer on moving object blocks (MOB).
nisse18ee17d2016-11-07 01:34:59 -080051 void CopySrcOnMOB(const uint8_t* y_src,
52 int stride_src,
53 uint8_t* y_dst,
54 int stride_dst);
jackychenafaae0d2016-04-12 23:02:55 -070055
jackychen6650d6d2016-04-25 16:53:59 -070056 // Copy luma margin blocks when frame width/height not divisible by 16.
nisse18ee17d2016-11-07 01:34:59 -080057 void CopyLumaOnMargin(const uint8_t* y_src,
58 int stride_src,
59 uint8_t* y_dst,
60 int stride_dst);
jackychen6650d6d2016-04-25 16:53:59 -070061
jackychen8f9902a2015-11-26 02:59:48 -080062 int width_;
63 int height_;
jackychenafaae0d2016-04-12 23:02:55 -070064 int mb_rows_;
65 int mb_cols_;
jackychenfa0befe2016-04-01 07:46:58 -070066 CpuType cpu_type_;
kwiberge065fcf2016-03-02 01:01:11 -080067 std::unique_ptr<DenoiserFilter> filter_;
jackychenfa0befe2016-04-01 07:46:58 -070068 std::unique_ptr<NoiseEstimation> ne_;
jackychenafaae0d2016-04-12 23:02:55 -070069 // 1 for moving edge block, 0 for static block.
70 std::unique_ptr<uint8_t[]> moving_edge_;
71 // 1 for moving object block, 0 for static block.
72 std::unique_ptr<uint8_t[]> moving_object_;
73 // x_density_ and y_density_ are used in MOD process.
jackychenfa0befe2016-04-01 07:46:58 -070074 std::unique_ptr<uint8_t[]> x_density_;
75 std::unique_ptr<uint8_t[]> y_density_;
jackychenafaae0d2016-04-12 23:02:55 -070076 // Save the return values by MbDenoise for each block.
77 std::unique_ptr<DenoiserDecision[]> mb_filter_decision_;
nisse18ee17d2016-11-07 01:34:59 -080078 I420BufferPool buffer_pool_;
Magnus Jedvert7a721e82017-06-14 11:28:08 +020079 rtc::scoped_refptr<I420BufferInterface> prev_buffer_;
jackychen8f9902a2015-11-26 02:59:48 -080080};
81
82} // namespace webrtc
83
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020084#endif // MODULES_VIDEO_PROCESSING_VIDEO_DENOISER_H_