Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ROS2] Porting bodies::Body::computeBoundingBox changes from noetic to ROS2 #239

Open
wants to merge 34 commits into
base: ros2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
92744ad
merging obb into ros2
peci1 Nov 22, 2021
2e7de79
test bounding box updated
spelletier1996 Apr 19, 2024
f74c0d1
Added obb.h
tmayoff Apr 19, 2024
994b258
Merge branch 'ros2-obb' of github.com:spelletier1996/geometric_shapes…
tmayoff Apr 19, 2024
517648f
updated tests and cpp to 232
spelletier1996 Apr 19, 2024
5d04936
Merge branch 'ros2-obb' of github.com:spelletier1996/geometric_shapes…
spelletier1996 Apr 19, 2024
d6a80af
Fixed build
tmayoff Apr 19, 2024
483b844
Fixed license
tmayoff Apr 19, 2024
c014758
added obb to bodies header
spelletier1996 Apr 19, 2024
9caa2eb
Merge branch 'ros2-obb' of github.com:spelletier1996/geometric_shapes…
spelletier1996 Apr 19, 2024
169d33b
Fixed FCL dependency
tmayoff Apr 19, 2024
e055eed
.
tmayoff Apr 19, 2024
a108625
merged changes from 232
spelletier1996 Apr 19, 2024
0814306
Merge branch 'ros2-obb' of github.com:spelletier1996/geometric_shapes…
spelletier1996 Apr 19, 2024
8aa8ca3
Builds tests pass (copyright fails though)
tmayoff Apr 19, 2024
f49fdf6
Reverted copyright notice changes
tmayoff Apr 19, 2024
fdad9d3
Fixed copyright notices
tmayoff Apr 19, 2024
43939d4
^
tmayoff Apr 19, 2024
48bc778
Ran pre-commit
tmayoff Apr 19, 2024
5f351f4
added pcl to package.xml
tmayoff Apr 19, 2024
e15c6af
format
tmayoff Apr 19, 2024
520d5a5
Copyright year
spelletier1996 Apr 22, 2024
126955b
reversed white space change
spelletier1996 May 3, 2024
94ea0df
removed commented depends
spelletier1996 May 3, 2024
48bba6f
toFCL fromFCL removed, FCL 0.5 checks removed
spelletier1996 May 3, 2024
26212d1
Merge pull request #2 from spelletier1996/pr-review-fixes
spelletier1996 May 3, 2024
b36a5d7
addressing header and xml comments
spelletier1996 Jun 7, 2024
6c321ec
re-added accidental removal of translation line
spelletier1996 Jun 7, 2024
1818146
correct ifdef
spelletier1996 Jun 7, 2024
5bd19db
fix redundant depends
tmayoff Jul 15, 2024
998a998
added copyright notice
tmayoff Jul 15, 2024
0d04ba5
copied the copyright from the obb.h file
tmayoff Jul 15, 2024
daa7464
Merge branch 'ros2' into ros2-obb
tmayoff Jul 15, 2024
7f76e3b
remove fcl export
tmayoff Jul 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/geometric_shapes/body_operations.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.

/* Author: Ioan Sucan, E. Gil Jones */

#ifndef GEOMETRIC_SHAPES_BODY_OPERATIONS_
Expand Down
2 changes: 1 addition & 1 deletion include/geometric_shapes/obb.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019 Open Robotics
// Copyright 2024 Open Robotics
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
Expand Down
9 changes: 1 addition & 8 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,7 @@
<depend>visualization_msgs</depend>

<build_depend>assimp-dev</build_depend>
<!-- <build_depend>boost</build_depend> -->
<!-- <build_depend>eigen</build_depend>
<build_depend>eigen_stl_containers</build_depend> -->
<!-- <build_depend>libconsole-bridge-dev</build_depend> -->
<!--
<build_depend condition="$ROS_DISTRO == noetic">fcl</build_depend> -->
<!-- <build_depend>libqhull</build_depend>
<build_depend>octomap</build_depend> -->
<build_depend>eigen</build_depend>
<build_depend>libfcl-dev</build_depend>
spelletier1996 marked this conversation as resolved.
Show resolved Hide resolved
<build_depend>pkg-config</build_depend>
<build_depend>libboost-dev</build_depend>
Expand Down
9 changes: 0 additions & 9 deletions src/aabb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,10 @@
#include <geometric_shapes/aabb.h>

#include <fcl/config.h>
#if FCL_MAJOR_VERSION > 0 || FCL_MINOR_VERSION > 5
#include <fcl/geometry/shape/utility.h>
#endif

spelletier1996 marked this conversation as resolved.
Show resolved Hide resolved
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These includes now seem irrelevant.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With switching to the correct ifdef as you mentioned below I believe that #include <fcl/geometry/shape/utility.h>
is still required?

void bodies::AABB::extendWithTransformedBox(const Eigen::Isometry3d& transform, const Eigen::Vector3d& box)
{
#if FCL_MAJOR_VERSION == 0 && FCL_MINOR_VERSION == 5
// Method adapted from FCL src/shape/geometric_shapes_utility.cpp#computeBV<AABB, Box>(...) (BSD-licensed code):
// https://github.com/flexible-collision-library/fcl/blob/fcl-0.4/src/shape/geometric_shapes_utility.cpp#L292
// We don't call their code because it would need creating temporary objects, and their method is in floats in FCL 0.5
Expand All @@ -53,10 +50,4 @@ void bodies::AABB::extendWithTransformedBox(const Eigen::Isometry3d& transform,
const Eigen::Vector3d v_delta(x_range, y_range, z_range);
extend(t + v_delta);
extend(t - v_delta);
#else
fcl::AABBd aabb;
fcl::computeBV(fcl::Boxd(box), transform, aabb);
extend(aabb.min_);
extend(aabb.max_);
#endif
spelletier1996 marked this conversation as resolved.
Show resolved Hide resolved
}
52 changes: 3 additions & 49 deletions src/obb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,12 @@

#include <fcl/config.h>

#if FCL_MAJOR_VERSION == 0 && FCL_MINOR_VERSION == 5
#include <fcl/BV/OBB.h>
typedef fcl::Vec3f FCL_Vec3;
typedef fcl::OBB FCL_OBB;
#else
#include <fcl/math/bv/OBB.h>
typedef fcl::Vector3d FCL_Vec3;
typedef fcl::OBB<double> FCL_OBB;
#endif

namespace bodies
{
#if FCL_MAJOR_VERSION == 0 && FCL_MINOR_VERSION == 5
inline FCL_Vec3 toFcl(const Eigen::Vector3d& eigenVec)
{
FCL_Vec3 result;
Eigen::Map<Eigen::MatrixXd>(result.data.vs, 3, 1) = eigenVec;
return result;
}
#else
#define toFcl
#endif

#if FCL_MAJOR_VERSION == 0 && FCL_MINOR_VERSION == 5
Eigen::Vector3d fromFcl(const FCL_Vec3& fclVec)
{
return Eigen::Map<const Eigen::MatrixXd>(fclVec.data.vs, 3, 1);
}
#else
#define fromFcl
#endif

class OBBPrivate : public FCL_OBB
{
Expand All @@ -44,17 +19,10 @@ OBB::OBB()
{
obb_.reset(new OBBPrivate);
// Initialize the OBB to position 0, with 0 extents and identity rotation
#if FCL_MAJOR_VERSION > 0 || FCL_MINOR_VERSION > 5
// FCL 0.6+ does not zero-initialize the OBB.
obb_->extent.setZero();
obb_->To.setZero();
obb_->axis.setIdentity();
#else
// FCL 0.5 zero-initializes the OBB, so we just put the identity into orientation.
obb_->axis[0][0] = 1.0;
obb_->axis[1][1] = 1.0;
obb_->axis[2][2] = 1.0;
#endif
}

OBB::OBB(const OBB& other)
Expand All @@ -78,22 +46,14 @@ void OBB::setPoseAndExtents(const Eigen::Isometry3d& pose, const Eigen::Vector3d
{
const auto rotation = pose.linear();

#if FCL_MAJOR_VERSION == 0 && FCL_MINOR_VERSION == 5
obb_->axis[0] = toFcl(rotation.col(0));
obb_->axis[1] = toFcl(rotation.col(1));
obb_->axis[2] = toFcl(rotation.col(2));
#else
obb_->axis = rotation;
#endif

obb_->To = toFcl(pose.translation());
spelletier1996 marked this conversation as resolved.
Show resolved Hide resolved

obb_->extent = { extents[0] / 2.0, extents[1] / 2.0, extents[2] / 2.0 };
}

void OBB::getExtents(Eigen::Vector3d& extents) const
{
extents = 2 * fromFcl(obb_->extent);
extents = 2 * obb_->extent;
}

Eigen::Vector3d OBB::getExtents() const
Expand All @@ -106,14 +66,8 @@ Eigen::Vector3d OBB::getExtents() const
void OBB::getPose(Eigen::Isometry3d& pose) const
{
pose = Eigen::Isometry3d::Identity();
pose.translation() = fromFcl(obb_->To);
#if FCL_MAJOR_VERSION == 0 && FCL_MINOR_VERSION == 5
pose.linear().col(0) = fromFcl(obb_->axis[0]);
pose.linear().col(1) = fromFcl(obb_->axis[1]);
pose.linear().col(2) = fromFcl(obb_->axis[2]);
#else
pose.translation() = obb_->To;
pose.linear() = obb_->axis;
#endif
}

Eigen::Isometry3d OBB::getPose() const
Expand Down Expand Up @@ -158,7 +112,7 @@ OBB* OBB::extendApprox(const OBB& box)

bool OBB::contains(const Eigen::Vector3d& point) const
{
return obb_->contain(toFcl(point));
return obb_->contain(point);
}

bool OBB::overlaps(const bodies::OBB& other) const
Expand Down
Loading