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

Side by Side Diff: webrtc/modules/audio_processing/beamformer/array_util.cc

Issue 1394103003: Make the nonlinear beamformer steerable (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@highfreq
Patch Set: More windows fun Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/modules/audio_processing/beamformer/array_util.h" 11 #include "webrtc/modules/audio_processing/beamformer/array_util.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <limits> 14 #include <limits>
15 15
16 #include "webrtc/base/checks.h" 16 #include "webrtc/base/checks.h"
17 17
18 namespace webrtc { 18 namespace webrtc {
19 namespace {
20
21 const float kMaxDotProduct = 1e-6f;
22
23 } // namespace
19 24
20 float GetMinimumSpacing(const std::vector<Point>& array_geometry) { 25 float GetMinimumSpacing(const std::vector<Point>& array_geometry) {
21 RTC_CHECK_GT(array_geometry.size(), 1u); 26 RTC_CHECK_GT(array_geometry.size(), 1u);
22 float mic_spacing = std::numeric_limits<float>::max(); 27 float mic_spacing = std::numeric_limits<float>::max();
23 for (size_t i = 0; i < (array_geometry.size() - 1); ++i) { 28 for (size_t i = 0; i < (array_geometry.size() - 1); ++i) {
24 for (size_t j = i + 1; j < array_geometry.size(); ++j) { 29 for (size_t j = i + 1; j < array_geometry.size(); ++j) {
25 mic_spacing = 30 mic_spacing =
26 std::min(mic_spacing, Distance(array_geometry[i], array_geometry[j])); 31 std::min(mic_spacing, Distance(array_geometry[i], array_geometry[j]));
27 } 32 }
28 } 33 }
29 return mic_spacing; 34 return mic_spacing;
30 } 35 }
31 36
37 Point PairDirection(const Point& a, const Point& b) {
38 return {b.x() - a.x(), b.y() - a.y(), b.z() - a.z()};
39 }
40
41 float DotProduct(const Point& a, const Point& b) {
42 return a.x() * b.x() + a.y() * b.y() + a.z() * b.z();
43 }
44
45 Point CrossProduct(const Point& a, const Point& b) {
46 return {a.y() * b.z() - a.z() * b.y(), a.z() * b.x() - a.x() * b.z(),
47 a.x() * b.y() - a.y() * b.x()};
48 }
49
50 bool AreParallel(const Point& a, const Point& b) {
51 Point cross_product = CrossProduct(a, b);
52 return DotProduct(cross_product, cross_product) < kMaxDotProduct;
53 }
54
55 bool ArePerpendicular(const Point& a, const Point& b) {
56 return std::abs(DotProduct(a, b)) < kMaxDotProduct;
57 }
58
59 rtc::Maybe<Point> GetDirectionIfLinear(
60 const std::vector<Point>& array_geometry) {
61 RTC_DCHECK_GT(array_geometry.size(), 1u);
62 const Point first_pair_direction =
63 PairDirection(array_geometry[0], array_geometry[1]);
64 for (size_t i = 2u; i < array_geometry.size(); ++i) {
65 const Point pair_direction =
66 PairDirection(array_geometry[i - 1], array_geometry[i]);
67 if (!AreParallel(first_pair_direction, pair_direction)) {
68 return rtc::Maybe<Point>();
69 }
70 }
71 return first_pair_direction;
72 }
73
74 rtc::Maybe<Point> GetNormalIfPlanar(const std::vector<Point>& array_geometry) {
75 RTC_DCHECK_GT(array_geometry.size(), 1u);
76 const Point first_pair_direction =
77 PairDirection(array_geometry[0], array_geometry[1]);
78 Point pair_direction(0.f, 0.f, 0.f);
79 size_t i = 2u;
80 bool is_linear = true;
81 for (; i < array_geometry.size() && is_linear; ++i) {
82 pair_direction = PairDirection(array_geometry[i - 1], array_geometry[i]);
83 if (!AreParallel(first_pair_direction, pair_direction)) {
84 is_linear = false;
85 }
86 }
87 if (is_linear) {
88 return rtc::Maybe<Point>();
89 }
90 const Point normal_direction =
91 CrossProduct(first_pair_direction, pair_direction);
92 for (; i < array_geometry.size(); ++i) {
93 pair_direction = PairDirection(array_geometry[i - 1], array_geometry[i]);
94 if (!ArePerpendicular(normal_direction, pair_direction)) {
95 return rtc::Maybe<Point>();
96 }
97 }
98 return normal_direction;
99 }
100
101 rtc::Maybe<Point> GetArrayNormalIfExists(
102 const std::vector<Point>& array_geometry) {
103 const rtc::Maybe<Point> direction = GetDirectionIfLinear(array_geometry);
104 if (direction) {
105 return Point(direction->y(), -direction->x(), 0.f);
106 }
107 const rtc::Maybe<Point> normal = GetNormalIfPlanar(array_geometry);
108 if (normal && normal->z() < kMaxDotProduct) {
109 return normal;
110 }
111 return rtc::Maybe<Point>();
112 }
113
114 Point AzimuthToPoint(float azimuth) {
115 return Point(std::cos(azimuth), std::sin(azimuth), 0.f);
116 }
117
32 } // namespace webrtc 118 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698