Commit 263e64dd authored by Davis King's avatar Davis King

Added polygon_area()

parent a40614e5
...@@ -1306,6 +1306,29 @@ namespace dlib ...@@ -1306,6 +1306,29 @@ namespace dlib
return (s0>0&&s1>0&&s2>0&&s3>0) || (s0<0&&s1<0&&s2<0&&s3<0); return (s0>0&&s1>0&&s2>0&&s3>0) || (s0<0&&s1<0&&s2<0&&s3<0);
} }
// ----------------------------------------------------------------------------------------
template <
typename array_of_dpoints
>
inline double polygon_area (
const array_of_dpoints& pts
)
{
if (pts.size() <= 2)
return 0;
double val = 0;
for (size_t i = 1; i < pts.size(); ++i)
val += (double)pts[i].x()*pts[i-1].y() - pts[i].y()*pts[i-1].x();
const size_t end = pts.size()-1;
val += (double)pts[0].x()*pts[end].y() - pts[0].y()*pts[end].x();
return std::abs(val)/2.0;
}
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
......
...@@ -456,6 +456,21 @@ namespace dlib ...@@ -456,6 +456,21 @@ namespace dlib
false if not. false if not.
!*/ !*/
// ----------------------------------------------------------------------------------------
template <
typename array_of_dpoints
>
double polygon_area (
const array_of_dpoints& pts
);
/*!
ensures
- If you walk the points pts in order to make a closed polygon, what is its
area? This function returns that area. It uses the shoelace formula to
compute the result and so works for general non-self-intersecting polygons.
!*/
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment