test_shadow_detector.cpp
Go to the documentation of this file.
1 /*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2017, laser_filters authors
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of the Willow Garage nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *********************************************************************/
34 
35 /*
36 \author Atsushi Watanabe (SEQSENSE, Inc.)
37 */
38 
39 #include <gtest/gtest.h>
40 #include <angles/angles.h>
41 
43 
44 double getAngleWithViewpoint(const float r1, const float r2, const float included_angle)
45 {
46  return atan2(r2 * sin(included_angle), r1 - r2 * cos(included_angle));
47 }
48 
49 bool isShadowPureImpl(const float r1, const float r2, const float included_angle, const double min_angle, const double max_angle)
50 {
51  const double angle = fabs(angles::to_degrees(
52  getAngleWithViewpoint(r1, r2, included_angle)));
53  if (angle < min_angle || angle > max_angle)
54  return true;
55  return false;
56 }
57 
58 TEST(ScanShadowDetector, ShadowDetectionGeometry)
59 {
60  for (float min_angle = 90.0; min_angle >= 0.0; min_angle -= 5.0)
61  {
62  for (float max_angle = 90.0; max_angle <= 180; max_angle += 5.0)
63  {
65  detector.configure(angles::from_degrees(min_angle), angles::from_degrees(max_angle));
66 
67  for (float r1 = 0.1; r1 < 1.0; r1 += 0.1)
68  {
69  for (float r2 = 0.1; r2 < 1.0; r2 += 0.1)
70  {
71  for (float inc = 0.01; inc < 0.1; inc += 0.02)
72  {
73  // Compare with original ScanShadowsFilter implementation
74  EXPECT_EQ(
75  detector.isShadow(r1, r2, inc),
76  isShadowPureImpl(r1, r2, inc, min_angle, max_angle));
77  }
78  }
79  }
80  }
81  }
82 }
83 
84 int main(int argc, char **argv)
85 {
86  testing::InitGoogleTest(&argc, argv);
87  return RUN_ALL_TESTS();
88 }
void configure(const float min_angle, const float max_angle)
bool isShadowPureImpl(const float r1, const float r2, const float included_angle, const double min_angle, const double max_angle)
TFSIMD_FORCE_INLINE tfScalar angle(const Quaternion &q1, const Quaternion &q2)
static double from_degrees(double degrees)
static double to_degrees(double radians)
bool isShadow(const float r1, const float r2, const float included_angle)
double getAngleWithViewpoint(const float r1, const float r2, const float included_angle)
int main(int argc, char **argv)
TEST(ScanShadowDetector, ShadowDetectionGeometry)


laser_filters
Author(s): Tully Foote
autogenerated on Tue Mar 17 2020 03:40:02