gradient_path.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement (BSD License)
4  *
5  * Copyright (c) 2008, 2013, Willow Garage, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of Willow Garage, Inc. nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  *
35  * Author: Eitan Marder-Eppstein
36  * David V. Lu!!
37  *********************************************************************/
38 #ifndef _GRADIENT_PATH_H
39 #define _GRADIENT_PATH_H
40 
42 #include <math.h>
43 #include <algorithm>
44 
45 namespace global_planner {
46 
47 class GradientPath : public Traceback {
48  public:
49  GradientPath(PotentialCalculator* p_calc);
50  virtual ~GradientPath();
51 
52  void setSize(int xs, int ys);
53 
54  //
55  // Path construction
56  // Find gradient at array points, interpolate path
57  // Use step size of pathStep, usually 0.5 pixel
58  //
59  // Some sanity checks:
60  // 1. Stuck at same index position
61  // 2. Doesn't get near goal
62  // 3. Surrounded by high potentials
63  //
64  bool getPath(float* potential, double start_x, double start_y, double end_x, double end_y, std::vector<std::pair<float, float> >& path);
65  private:
66  inline int getNearestPoint(int stc, float dx, float dy) {
67  int pt = stc + (int)round(dx) + (int)(xs_ * round(dy));
68  return std::max(0, std::min(xs_ * ys_ - 1, pt));
69  }
70  float gradCell(float* potential, int n);
71 
72  float *gradx_, *grady_;
74  float pathStep_;
75 };
76 
77 } //end namespace global_planner
78 #endif
global_planner
Definition: astar.h:46
global_planner::GradientPath::gradCell
float gradCell(float *potential, int n)
Definition: gradient_path.cpp:302
global_planner::GradientPath::getNearestPoint
int getNearestPoint(int stc, float dx, float dy)
Definition: gradient_path.h:138
global_planner::GradientPath::getPath
bool getPath(float *potential, double start_x, double start_y, double end_x, double end_y, std::vector< std::pair< float, float > > &path)
Definition: gradient_path.cpp:104
global_planner::GradientPath::pathStep_
float pathStep_
Definition: gradient_path.h:146
global_planner::GradientPath::setSize
void setSize(int xs, int ys)
Definition: gradient_path.cpp:94
global_planner::Traceback::xs_
int xs_
Definition: traceback.h:133
global_planner::GradientPath::gradx_
float * gradx_
Definition: gradient_path.h:144
global_planner::Traceback::ys_
int ys_
Definition: traceback.h:133
global_planner::GradientPath::~GradientPath
virtual ~GradientPath()
Definition: gradient_path.cpp:86
global_planner::GradientPath::grady_
float * grady_
Definition: gradient_path.h:144
global_planner::GradientPath::GradientPath
GradientPath(PotentialCalculator *p_calc)
Definition: gradient_path.cpp:81
traceback.h


global_planner
Author(s): David Lu!!
autogenerated on Mon Mar 6 2023 03:50:40