37 #ifndef COAL_HEIGHT_FIELD_H
38 #define COAL_HEIGHT_FIELD_H
54 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
71 Eigen::DenseIndex
x_id, x_size;
72 Eigen::DenseIndex
y_id, y_size;
84 max_height(std::numeric_limits<
Scalar>::lowest()),
85 contact_active_faces(0) {}
90 x_size == other.
x_size && y_id == other.
y_id &&
100 inline bool isLeaf()
const {
return x_size == 1 && y_size == 1; }
111 return Eigen::Vector2i(x_id, y_id);
114 return Eigen::Vector2i(x_id + x_size / 2, y_id + y_size / 2);
127 template <
typename BV>
129 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
138 return Base::operator==(other) && bv == other.
bv;
148 Scalar& sqrDistLowerBound)
const {
149 return bv.overlap(other.
bv, request, sqrDistLowerBound);
155 Vec3s* P2 = NULL)
const {
156 return bv.distance(other.
bv, P1, P2);
164 return Matrix3s::Identity();
172 template <
typename BV>
175 AABB bv_aabb(pointA, pointB);
178 convertBV(bv_aabb, bv);
185 AABB bv_aabb(pointA, pointB);
186 convertBV(bv_aabb, bv);
201 template <
typename BV>
204 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
209 typedef std::vector<Node, Eigen::aligned_allocator<Node>>
BVS;
214 min_height((std::numeric_limits<
Scalar>::min)()),
215 max_height((std::numeric_limits<
Scalar>::max)()) {}
231 init(x_dim, y_dim, heights, min_height);
242 heights(other.heights),
243 min_height(other.min_height),
244 max_height(other.max_height),
245 x_grid(other.x_grid),
246 y_grid(other.y_grid),
248 num_bvs(other.num_bvs) {}
278 const Vec3s A(x_grid[0], y_grid[0], min_height);
279 const Vec3s B(x_grid[x_grid.size() - 1], y_grid[y_grid.size() - 1],
281 const AABB aabb_(A, B);
283 aabb_radius = (A - B).norm() /
Scalar(2);
285 aabb_center = aabb_.
center();
290 if (new_heights.rows() != heights.rows() ||
291 new_heights.cols() != heights.cols())
293 "The matrix containing the new heights values does not have the same "
294 "matrix size as the original one.\n"
295 "\tinput values - rows: "
296 << new_heights.rows() <<
" - cols: " << new_heights.cols() <<
"\n"
297 <<
"\texpected values - rows: " << heights.rows()
298 <<
" - cols: " << heights.cols() <<
"\n",
299 std::invalid_argument);
301 heights = new_heights.cwiseMax(min_height);
302 this->max_height = recursiveUpdateHeight(0);
303 assert(this->max_height == heights.maxCoeff());
308 const Scalar min_height) {
311 this->heights = heights.cwiseMax(min_height);
312 this->min_height = min_height;
313 this->max_height = heights.maxCoeff();
315 const Eigen::DenseIndex NX = heights.cols(), NY = heights.rows();
316 assert(NX >= 2 &&
"The number of columns is too small.");
317 assert(NY >= 2 &&
"The number of rows is too small.");
320 x_grid = VecXs::LinSpaced(NX, -half * x_dim, half * x_dim);
321 y_grid = VecXs::LinSpaced(NY, half * y_dim, -half * y_dim);
324 const size_t num_tot_bvs =
325 (size_t)(NX * NY) - 1 + (size_t)((NX - 1) * (NY - 1));
326 bvs.resize(num_tot_bvs);
364 const Scalar max_recursive_height =
365 recursiveBuildTree(0, 0, heights.cols() - 1, 0, heights.rows() - 1);
366 assert(max_recursive_height == max_height &&
367 "the maximal height is not correct");
379 max_height = heights.block<2, 2>(bv_node.
y_id, bv_node.
x_id).maxCoeff();
382 max_right_height = recursiveUpdateHeight(bv_node.
rightChild());
384 max_height = (std::max)(max_left_height, max_right_height);
389 const Vec3s pointA(x_grid[bv_node.
x_id], y_grid[bv_node.
y_id], min_height);
391 y_grid[bv_node.
y_id + bv_node.
y_size], max_height);
399 const Eigen::DenseIndex x_size,
400 const Eigen::DenseIndex y_id,
401 const Eigen::DenseIndex y_size) {
402 assert(x_id < heights.cols() &&
"x_id is out of bounds");
403 assert(y_id < heights.rows() &&
"y_id is out of bounds");
404 assert(x_size >= 0 && y_size >= 0 &&
405 "x_size or y_size are not of correct value");
406 assert(bv_id < bvs.size() &&
"bv_id exceeds the vector dimension");
413 max_height = heights.block<2, 2>(y_id, x_id).maxCoeff();
418 Scalar max_left_height = min_height, max_right_height = min_height;
419 if (x_size >= y_size)
421 Eigen::DenseIndex x_size_half = x_size / 2;
422 if (x_size == 1) x_size_half = 1;
423 max_left_height = recursiveBuildTree(bv_node.
leftChild(), x_id,
424 x_size_half, y_id, y_size);
427 recursiveBuildTree(bv_node.
rightChild(), x_id + x_size_half,
428 x_size - x_size_half, y_id, y_size);
431 Eigen::DenseIndex y_size_half = y_size / 2;
432 if (y_size == 1) y_size_half = 1;
433 max_left_height = recursiveBuildTree(bv_node.
leftChild(), x_id, x_size,
437 recursiveBuildTree(bv_node.
rightChild(), x_id, x_size,
438 y_id + y_size_half, y_size - y_size_half);
441 max_height = (std::max)(max_left_height, max_right_height);
447 const Vec3s pointA(x_grid[x_id], y_grid[y_id], min_height);
448 assert(x_id + x_size < x_grid.size());
449 assert(y_id + y_size < y_grid.size());
450 const Vec3s pointB(x_grid[x_id + x_size], y_grid[y_id + y_size],
464 if (bv_node.
x_id == 0)
467 if (bv_node.
y_id == 0)
470 if (bv_node.
x_id + 1 == heights.cols() - 1)
473 if (bv_node.
y_id + 1 == heights.rows() - 1)
501 if (other_ptr ==
nullptr)
return false;
504 return x_dim == other.
x_dim && y_dim == other.
y_dim &&
507 y_grid == other.
y_grid && bvs == other.
bvs &&
A class describing the AABB collision structure, which is a box in 3D space determined by two diagona...
Definition: AABB.h:55
The geometry for the object for collision or distance computation.
Definition: collision_object.h:94
Data structure depicting a height field given by the base grid dimensions and the elevation along the...
Definition: hfield.h:202
HeightField(const HeightField &other)
Copy contructor from another HeightField.
Definition: hfield.h:238
OBJECT_TYPE getObjectType() const
Get the object type: it is a HFIELD.
Definition: hfield.h:334
VecXs y_grid
Definition: hfield.h:355
Scalar max_height
Definition: hfield.h:351
HFNode< BV > & getBV(unsigned int i)
Access the bv giving the its index.
Definition: hfield.h:489
virtual ~HeightField()
deconstruction, delete mesh data related.
Definition: hfield.h:273
Scalar getYDim() const
Returns the dimension of the Height Field along the Y direction.
Definition: hfield.h:261
std::vector< Node, Eigen::aligned_allocator< Node > > BVS
Definition: hfield.h:209
HFNode< BV > Node
Definition: hfield.h:208
VecXs x_grid
Grids along the X and Y directions. Useful for plotting or other related things.
Definition: hfield.h:355
Scalar computeVolume() const
compute the volume
Definition: hfield.h:338
void init(const Scalar x_dim, const Scalar y_dim, const MatrixXs &heights, const Scalar min_height)
Definition: hfield.h:307
virtual HeightField< BV > * clone() const
Clone *this into a new CollisionGeometry.
Definition: hfield.h:268
HeightField()
Constructing an empty HeightField.
Definition: hfield.h:212
unsigned int num_bvs
Definition: hfield.h:359
MatrixXs heights
Elevation values in meters of the Height Field.
Definition: hfield.h:347
int buildTree()
Build the bounding volume hierarchy.
Definition: hfield.h:362
Scalar getMaxHeight() const
Returns the maximal height value of the Height Field.
Definition: hfield.h:266
Scalar y_dim
Definition: hfield.h:344
Vec3s computeCOM() const
compute center of mass
Definition: hfield.h:336
const VecXs & getYGrid() const
Returns a const reference of the grid along the Y direction.
Definition: hfield.h:253
NODE_TYPE getNodeType() const
Get the BV type: default is unknown.
Definition: hfield.h:496
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef CollisionGeometry Base
Definition: hfield.h:206
Scalar min_height
Minimal height of the Height Field: all values bellow min_height will be discarded.
Definition: hfield.h:351
Scalar recursiveBuildTree(const size_t bv_id, const Eigen::DenseIndex x_id, const Eigen::DenseIndex x_size, const Eigen::DenseIndex y_id, const Eigen::DenseIndex y_size)
Definition: hfield.h:398
void computeLocalAABB()
Compute the AABB for the HeightField, used for broad-phase collision.
Definition: hfield.h:277
Scalar x_dim
Dimensions in meters along X and Y directions.
Definition: hfield.h:344
const VecXs & getXGrid() const
Returns a const reference of the grid along the X direction.
Definition: hfield.h:251
Matrix3s computeMomentofInertia() const
compute the inertia matrix, related to the origin
Definition: hfield.h:340
const HFNode< BV > & getBV(unsigned int i) const
Access the bv giving the its index.
Definition: hfield.h:482
Scalar recursiveUpdateHeight(const size_t bv_id)
Definition: hfield.h:374
Scalar getXDim() const
Returns the dimension of the Height Field along the X direction.
Definition: hfield.h:259
HeightField(const Scalar x_dim, const Scalar y_dim, const MatrixXs &heights, const Scalar min_height=(Scalar) 0)
Constructing an HeightField from its base dimensions and the set of heights points....
Definition: hfield.h:228
void updateHeights(const MatrixXs &new_heights)
Update Height Field height.
Definition: hfield.h:289
BVS bvs
Bounding volume hierarchy.
Definition: hfield.h:358
const BVS & getNodes() const
Definition: hfield.h:270
Scalar getMinHeight() const
Returns the minimal height value of the Height Field.
Definition: hfield.h:264
const MatrixXs & getHeights() const
Returns a const reference of the heights.
Definition: hfield.h:256
#define COAL_DLLAPI
Definition: config.hh:88
#define COAL_UNUSED_VARIABLE(var)
Definition: fwd.hh:56
#define COAL_THROW_PRETTY(message, exception)
Definition: fwd.hh:64
Vec3s center() const
Center of the AABB.
Definition: AABB.h:164
@ BV_UNKNOWN
Definition: collision_object.h:65
@ OT_HFIELD
Definition: collision_object.h:57
Main namespace.
Definition: broadphase_bruteforce.h:44
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > VecXs
Definition: data_types.h:73
NODE_TYPE
traversal node type: bounding volume (AABB, OBB, RSS, kIOS, OBBRSS, KDOP16, KDOP18,...
Definition: collision_object.h:64
CollisionRequestFlag operator&(CollisionRequestFlag a, CollisionRequestFlag b)
Definition: collision_data.h:1204
Eigen::Matrix< Scalar, 3, 1 > Vec3s
Definition: data_types.h:70
double Scalar
Definition: data_types.h:68
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > MatrixXs
Definition: data_types.h:79
OBJECT_TYPE
object type: BVH (mesh, points), basic geometry, octree
Definition: collision_object.h:52
@ BVH_OK
Definition: BVH_internal.h:64
Eigen::Matrix< Scalar, 3, 3 > Matrix3s
Definition: data_types.h:74
bool isEqual(const Eigen::MatrixBase< Derived > &lhs, const Eigen::MatrixBase< OtherDerived > &rhs, const Scalar tol=std::numeric_limits< Scalar >::epsilon() *100)
Definition: tools.h:204
request to the collision algorithm
Definition: collision_data.h:311
Eigen::DenseIndex y_size
Definition: hfield.h:72
size_t rightChild() const
Return the index of the second child. The index is referred to the bounding volume array (i....
Definition: hfield.h:108
Eigen::DenseIndex x_size
Definition: hfield.h:71
int contact_active_faces
Definition: hfield.h:75
Eigen::Vector2i rightChildIndexes() const
Definition: hfield.h:113
bool isLeaf() const
Whether current node is a leaf node (i.e. contains a primitive index)
Definition: hfield.h:100
Scalar max_height
Definition: hfield.h:74
bool operator==(const HFNodeBase &other) const
Comparison operator.
Definition: hfield.h:88
size_t first_child
An index for first child node or primitive If the value is positive, it is the index of the first chi...
Definition: hfield.h:69
HFNodeBase()
Default constructor.
Definition: hfield.h:78
Eigen::DenseIndex y_id
Definition: hfield.h:72
bool operator!=(const HFNodeBase &other) const
Difference operator.
Definition: hfield.h:96
Eigen::DenseIndex x_id
Definition: hfield.h:71
FaceOrientation
Definition: hfield.h:56
size_t leftChild() const
Return the index of the first child. The index is referred to the bounding volume array (i....
Definition: hfield.h:104
Eigen::Vector2i leftChildIndexes() const
Definition: hfield.h:110
bool overlap(const HFNode &other) const
Check whether two BVNode collide.
Definition: hfield.h:145
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef HFNodeBase Base
Definition: hfield.h:131
bool overlap(const HFNode &other, const CollisionRequest &request, Scalar &sqrDistLowerBound) const
Check whether two BVNode collide.
Definition: hfield.h:147
bool operator!=(const HFNode &other) const
Difference operator.
Definition: hfield.h:142
bool operator==(const HFNode &other) const
Equality operator.
Definition: hfield.h:137
virtual ~HFNode()
Definition: hfield.h:167
coal::Matrix3s::IdentityReturnType getOrientation() const
Access to the orientation of the BV.
Definition: hfield.h:163
Vec3s getCenter() const
Access to the center of the BV.
Definition: hfield.h:160
Scalar distance(const HFNode &other, Vec3s *P1=NULL, Vec3s *P2=NULL) const
Compute the distance between two BVNode. P1 and P2, if not NULL and the underlying BV supports distan...
Definition: hfield.h:154
BV bv
bounding volume storing the geometry
Definition: hfield.h:134
static void run(const Vec3s &pointA, const Vec3s &pointB, AABB &bv)
Definition: hfield.h:184
static void run(const Vec3s &pointA, const Vec3s &pointB, BV &bv)
Definition: hfield.h:174