ompl_interface
include
moveit
ompl_interface
detail
projection_evaluators.h
Go to the documentation of this file.
1
/*********************************************************************
2
* Software License Agreement (BSD License)
3
*
4
* Copyright (c) 2011, Willow Garage, Inc.
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 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
/* Author: Ioan Sucan */
36
37
#pragma once
38
39
#include <ompl/config.h>
40
#include <ompl/base/ProjectionEvaluator.h>
41
#include <
moveit/ompl_interface/detail/threadsafe_state_storage.h
>
42
43
// TODO: remove when ROS Lunar and older are no longer supported
44
#if OMPL_VERSION_VALUE >= 1004000 // Version greater than 1.4.0
45
typedef
Eigen::Ref<Eigen::VectorXd>
OMPLProjection
;
46
#else // All other versions
47
typedef
ompl::base::EuclideanProjection&
OMPLProjection
;
48
#endif
49
50
namespace
ompl_interface
51
{
52
class
ModelBasedPlanningContext;
53
55
class
ProjectionEvaluatorLinkPose
:
public
ompl::base::ProjectionEvaluator
56
{
57
public
:
58
ProjectionEvaluatorLinkPose
(
const
ModelBasedPlanningContext
* pc,
const
std::string& link);
59
60
unsigned
int
getDimension
()
const override
;
61
void
defaultCellSizes
()
override
;
62
void
project
(
const
ompl::base::State* state,
OMPLProjection
projection)
const override
;
63
64
private
:
65
const
ModelBasedPlanningContext
*
planning_context_
;
66
const
moveit::core::LinkModel
*
link_
;
67
TSStateStorage
tss_
;
68
};
69
71
class
ProjectionEvaluatorJointValue
:
public
ompl::base::ProjectionEvaluator
72
{
73
public
:
74
ProjectionEvaluatorJointValue
(
const
ModelBasedPlanningContext
* pc, std::vector<unsigned int> variables);
75
76
unsigned
int
getDimension
()
const override
;
77
void
defaultCellSizes
()
override
;
78
void
project
(
const
ompl::base::State* state,
OMPLProjection
projection)
const override
;
79
80
private
:
81
std::vector<unsigned int>
variables_
;
82
};
83
}
// namespace ompl_interface
moveit::core::LinkModel
ompl_interface::ProjectionEvaluatorLinkPose::planning_context_
const ModelBasedPlanningContext * planning_context_
Definition:
projection_evaluators.h:65
ompl_interface::ProjectionEvaluatorJointValue::ProjectionEvaluatorJointValue
ProjectionEvaluatorJointValue(const ModelBasedPlanningContext *pc, std::vector< unsigned int > variables)
Definition:
projection_evaluators.cpp:77
ompl_interface::ModelBasedPlanningContext
Definition:
model_based_planning_context.h:105
ompl_interface
The MoveIt interface to OMPL.
Definition:
constrained_goal_sampler.h:46
ompl_interface::ProjectionEvaluatorLinkPose::defaultCellSizes
void defaultCellSizes() override
Definition:
projection_evaluators.cpp:57
ompl_interface::ProjectionEvaluatorJointValue
Definition:
projection_evaluators.h:71
ompl_interface::ProjectionEvaluatorLinkPose
Definition:
projection_evaluators.h:55
ompl_interface::ProjectionEvaluatorJointValue::variables_
std::vector< unsigned int > variables_
Definition:
projection_evaluators.h:81
ompl_interface::ProjectionEvaluatorJointValue::getDimension
unsigned int getDimension() const override
Definition:
projection_evaluators.cpp:83
ompl_interface::ProjectionEvaluatorJointValue::project
void project(const ompl::base::State *state, OMPLProjection projection) const override
Definition:
projection_evaluators.cpp:94
ompl_interface::ProjectionEvaluatorLinkPose::ProjectionEvaluatorLinkPose
ProjectionEvaluatorLinkPose(const ModelBasedPlanningContext *pc, const std::string &link)
Definition:
projection_evaluators.cpp:43
ompl_interface::ProjectionEvaluatorLinkPose::project
void project(const ompl::base::State *state, OMPLProjection projection) const override
Definition:
projection_evaluators.cpp:65
ompl_interface::ProjectionEvaluatorLinkPose::getDimension
unsigned int getDimension() const override
Definition:
projection_evaluators.cpp:52
threadsafe_state_storage.h
ompl_interface::ProjectionEvaluatorJointValue::defaultCellSizes
void defaultCellSizes() override
Definition:
projection_evaluators.cpp:88
OMPLProjection
ompl::base::EuclideanProjection & OMPLProjection
Definition:
projection_evaluators.h:47
ompl_interface::ProjectionEvaluatorLinkPose::tss_
TSStateStorage tss_
Definition:
projection_evaluators.h:67
ompl_interface::TSStateStorage
Definition:
threadsafe_state_storage.h:77
ompl_interface::ProjectionEvaluatorLinkPose::link_
const moveit::core::LinkModel * link_
Definition:
projection_evaluators.h:66
ompl
Author(s): Ioan Sucan
autogenerated on Tue Dec 24 2024 03:28:10