Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Issue 1822333003: External denoiser based on noise estimation and moving object detection. (Closed)

Created:
4 years, 9 months ago by jackychen
Modified:
4 years, 8 months ago
Reviewers:
jackychen_, marpan2, marpan
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

External denoiser based on noise estimation and moving object detection. Improved the existing external denoiser in WebRTC: the filter strength is adaptive based on the noise level of the whole frame and the moving object detection result. The adaptive filter effectively removes the artifacts in previous version, such as trailing and blockiness on moving objects. The external denoiser is off by default for now. BUG= Committed: https://crrev.com/fa0befe13bb030adb61eb55c5557df1bf6e29205 Cr-Commit-Position: refs/heads/master@{#12198}

Patch Set 1 : #

Total comments: 23

Patch Set 2 : Fix some issues and add cpu type detection in noise estimation. #

Patch Set 3 : Extend red block by 1 to each dir. #

Patch Set 4 : Raise noise threshold to 200 to be safe for now. #

Total comments: 28

Patch Set 5 : Fix some style issues. #

Total comments: 4

Patch Set 6 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+484 lines, -118 lines) Patch
M webrtc/modules/video_processing/BUILD.gn View 1 1 chunk +2 lines, -0 lines 0 comments Download
M webrtc/modules/video_processing/frame_preprocessor.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M webrtc/modules/video_processing/frame_preprocessor.cc View 1 2 3 4 2 chunks +3 lines, -1 line 0 comments Download
M webrtc/modules/video_processing/test/denoiser_test.cc View 1 2 3 4 6 chunks +35 lines, -26 lines 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter.h View 1 2 3 4 4 chunks +6 lines, -2 lines 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter.cc View 1 2 chunks +10 lines, -3 lines 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter_c.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter_c.cc View 1 2 3 4 2 chunks +7 lines, -3 lines 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter_neon.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter_neon.cc View 1 2 3 4 2 chunks +8 lines, -4 lines 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter_sse2.h View 1 1 chunk +2 lines, -1 line 0 comments Download
M webrtc/modules/video_processing/util/denoiser_filter_sse2.cc View 1 2 3 4 2 chunks +8 lines, -3 lines 0 comments Download
A webrtc/modules/video_processing/util/noise_estimation.h View 1 2 3 4 1 chunk +56 lines, -0 lines 0 comments Download
A webrtc/modules/video_processing/util/noise_estimation.cc View 1 2 3 4 5 1 chunk +95 lines, -0 lines 0 comments Download
M webrtc/modules/video_processing/video_denoiser.h View 1 2 3 4 2 chunks +14 lines, -6 lines 0 comments Download
M webrtc/modules/video_processing/video_denoiser.cc View 1 2 3 4 5 3 chunks +231 lines, -67 lines 0 comments Download
M webrtc/modules/video_processing/video_processing.gypi View 1 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 27 (14 generated)
marpan
https://codereview.webrtc.org/1822333003/diff/40001/webrtc/modules/video_processing/BUILD.gn File webrtc/modules/video_processing/BUILD.gn (right): https://codereview.webrtc.org/1822333003/diff/40001/webrtc/modules/video_processing/BUILD.gn#newcode26 webrtc/modules/video_processing/BUILD.gn:26: "noise_estimation.cc", put these under /util https://codereview.webrtc.org/1822333003/diff/40001/webrtc/modules/video_processing/frame_preprocessor.h File webrtc/modules/video_processing/frame_preprocessor.h (right): ...
4 years, 9 months ago (2016-03-24 20:56:17 UTC) #7
jackychen_
https://codereview.webrtc.org/1822333003/diff/40001/webrtc/modules/video_processing/BUILD.gn File webrtc/modules/video_processing/BUILD.gn (right): https://codereview.webrtc.org/1822333003/diff/40001/webrtc/modules/video_processing/BUILD.gn#newcode26 webrtc/modules/video_processing/BUILD.gn:26: "noise_estimation.cc", On 2016/03/24 20:56:16, marpan wrote: > put these ...
4 years, 9 months ago (2016-03-25 18:45:45 UTC) #8
jackychen_
4 years, 8 months ago (2016-03-28 21:59:39 UTC) #9
jackychen_
4 years, 8 months ago (2016-03-30 17:27:27 UTC) #11
marpan
https://codereview.webrtc.org/1822333003/diff/40001/webrtc/modules/video_processing/video_denoiser.cc File webrtc/modules/video_processing/video_denoiser.cc (right): https://codereview.webrtc.org/1822333003/diff/40001/webrtc/modules/video_processing/video_denoiser.cc#newcode119 webrtc/modules/video_processing/video_denoiser.cc:119: // Get the averaged block. Get denoised block https://codereview.webrtc.org/1822333003/diff/100001/webrtc/modules/video_processing/util/denoiser_filter.h ...
4 years, 8 months ago (2016-03-30 18:27:20 UTC) #12
jackychen_
Fixed. https://codereview.webrtc.org/1822333003/diff/100001/webrtc/modules/video_processing/util/denoiser_filter.h File webrtc/modules/video_processing/util/denoiser_filter.h (right): https://codereview.webrtc.org/1822333003/diff/100001/webrtc/modules/video_processing/util/denoiser_filter.h#newcode25 webrtc/modules/video_processing/util/denoiser_filter.h:25: extern const int kSumDiffThresholdMax; On 2016/03/30 18:27:20, marpan ...
4 years, 8 months ago (2016-03-30 22:36:38 UTC) #15
marpan
lgtm https://codereview.webrtc.org/1822333003/diff/120001/webrtc/modules/video_processing/util/noise_estimation.cc File webrtc/modules/video_processing/util/noise_estimation.cc (right): https://codereview.webrtc.org/1822333003/diff/120001/webrtc/modules/video_processing/util/noise_estimation.cc#newcode31 webrtc/modules/video_processing/util/noise_estimation.cc:31: // Normalized var by the average luma value, ...
4 years, 8 months ago (2016-03-31 18:36:47 UTC) #16
jackychen_
https://codereview.webrtc.org/1822333003/diff/120001/webrtc/modules/video_processing/util/noise_estimation.cc File webrtc/modules/video_processing/util/noise_estimation.cc (right): https://codereview.webrtc.org/1822333003/diff/120001/webrtc/modules/video_processing/util/noise_estimation.cc#newcode31 webrtc/modules/video_processing/util/noise_estimation.cc:31: // Normalized var by the average luma value, this ...
4 years, 8 months ago (2016-04-01 00:05:06 UTC) #18
jackychen_
4 years, 8 months ago (2016-04-01 00:05:09 UTC) #19
marpan2
lgtm
4 years, 8 months ago (2016-04-01 00:06:02 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1822333003/160001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1822333003/160001
4 years, 8 months ago (2016-04-01 14:45:23 UTC) #23
commit-bot: I haz the power
Committed patchset #6 (id:160001)
4 years, 8 months ago (2016-04-01 14:47:03 UTC) #25
commit-bot: I haz the power
4 years, 8 months ago (2016-04-01 14:47:11 UTC) #27
Message was sent while issue was closed.
Patchset 6 (id:??) landed as
https://crrev.com/fa0befe13bb030adb61eb55c5557df1bf6e29205
Cr-Commit-Position: refs/heads/master@{#12198}

Powered by Google App Engine
This is Rietveld 408576698