Commit d847c130 authored by Davis King's avatar Davis King

Added neighbors_24

parent 8a48eee4
......@@ -13,6 +13,20 @@ namespace dlib
// ----------------------------------------------------------------------------------------
struct neighbors_24
{
void operator() (
const point& p,
std::vector<point>& neighbors
) const
{
for (long i = -2; i <= 2; ++i)
for (long j = -2; j <= 2; ++j)
if (i!=0||j!=0)
neighbors.push_back(point(p.x()+i,p.y()+j));
}
};
struct neighbors_8
{
void operator() (
......
......@@ -12,6 +12,24 @@ namespace dlib
// ----------------------------------------------------------------------------------------
struct neighbors_24
{
/*!
WHAT THIS OBJECT REPRESENTS
This object is a pixel neighborhood generating functor for
use with the label_connected_blobs() routine defined below.
!*/
void operator() (
const point& p,
std::vector<point>& neighbors
) const;
/*!
ensures
- adds the 24 neighboring pixels surrounding p into neighbors
!*/
};
struct neighbors_8
{
/*!
......
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