|
template<typename T > |
BBox< T > | enlarge (const BBox< T > &box, T extraWidth, T extraHeight) |
|
template<typename T > |
BBox< T > | intersect (const BBox< T > &a, const BBox< T > &b) |
|
template<typename T > |
std::vector< o2::mch::contour::Vertex< T > > | getVertices (const std::vector< o2::mch::contour::Polygon< T > > &polygons) |
|
template<typename T > |
std::vector< o2::mch::contour::Vertex< T > > | getSortedVertices (const std::vector< o2::mch::contour::Polygon< T > > &polygons) |
|
template<typename T > |
bool | isCounterClockwiseOriented (const std::vector< T > &polygons) |
|
template<typename T > |
bool | operator!= (const Contour< T > &lhs, const Contour< T > &rhs) |
|
template<typename T > |
bool | operator== (const Contour< T > &lhs, const Contour< T > &rhs) |
|
template<typename T > |
std::ostream & | operator<< (std::ostream &os, const std::vector< o2::mch::contour::Polygon< T > > &polygons) |
|
template<typename T > |
BBox< T > | getBBox (const Contour< T > &contour) |
|
template<typename T > |
Contour< T > | createContour (const std::vector< Polygon< T > > &polygons) |
|
template<typename T > |
Contour< T > | getEnvelop (const std::vector< Contour< T > > &list) |
|
template<typename T > |
std::vector< o2::mch::contour::Vertex< T > > | getVertices (const Polygon< T > &polygon) |
|
template<typename T > |
std::vector< o2::mch::contour::Vertex< T > > | getSortedVertices (const Polygon< T > &polygon) |
|
template<typename T > |
Polygon< T > | close (Polygon< T > polygon) |
|
template<typename T > |
bool | operator!= (const Polygon< T > &lhs, const Polygon< T > &rhs) |
|
template<typename T > |
bool | operator== (const Polygon< T > &lhs, const Polygon< T > &rhs) |
|
template<typename T > |
BBox< T > | getBBox (const std::vector< Vertex< T > > &vertices) |
|
template<typename T > |
BBox< T > | getBBox (const Polygon< T > &polygon) |
|
template<typename T > |
BBox< T > | getBBox (const std::vector< Polygon< T > > &polygons) |
|
template<typename T > |
auto | squaredDistancePointToPolygon (const Vertex< T > &point, const Polygon< T > &polygon) -> decltype(point.x *point.x) |
|
template<typename T > |
std::ostream & | operator<< (std::ostream &os, const Vertex< T > &vertex) |
|
template<typename T > |
std::ostream & | operator<< (std::ostream &os, const std::vector< Vertex< T > > &vertices) |
|
template<typename T > |
bool | operator< (const Vertex< T > &lhs, const Vertex< T > &rhs) |
|
template<typename T > |
bool | operator> (const Vertex< T > &lhs, const Vertex< T > &rhs) |
|
template<typename T > |
bool | operator<= (const Vertex< T > &lhs, const Vertex< T > &rhs) |
|
template<typename T > |
bool | operator>= (const Vertex< T > &lhs, const Vertex< T > &rhs) |
|
template<typename T > |
bool | isVertical (const Vertex< T > &a, const Vertex< T > &b) |
|
template<typename T > |
bool | isHorizontal (const Vertex< T > &a, const Vertex< T > &b) |
|
template<typename T > |
Vertex< T > | operator- (const Vertex< T > &a, const Vertex< T > &b) |
|
template<typename T > |
auto | dot (const Vertex< T > &a, const Vertex< T > &b) -> decltype(a.x *b.x) |
|
template<typename T > |
auto | squaredDistance (const Vertex< T > &a, const Vertex< T > &b) -> decltype(a.x *b.x) |
|
template<typename T > |
auto | squaredDistanceOfPointToSegment (const Vertex< T > &p, const Vertex< T > &p0, const Vertex< T > &p1) -> decltype(p0.x *p1.x) |
|
template<typename T > |
bool | operator== (const Vertex< T > &lhs, const Vertex< T > &rhs) |
|
template<typename T > |
bool | operator!= (const Vertex< T > &lhs, const Vertex< T > &rhs) |
|
template<typename T >
Contour< T > o2::mch::contour::createContour |
( |
const std::vector< Polygon< T > > & |
polygons | ) |
|
Merge polygons into a contour
based on (one of the) algorithms in Diane L. Souvaine and Iliana Bjorling-Sachs, Proceedings of the IEEE, Vol. 80, No. 9, September 1992, p. 1449
Definition at line 35 of file ContourCreator.h.