PCL
|
Standard star structure. More...
#include <StructuringElement.h>
Public Member Functions | |
StarStructure (const StarStructure &)=default | |
StarStructure (int size) | |
StructuringElement * | Clone () const override |
bool | ElementExists (int i, int j, int k) const override |
bool | IsBox (int k) const override |
Public Member Functions inherited from pcl::StructuringElement | |
StructuringElement (const StructuringElement &x) | |
StructuringElement (int size=3, int n=1) | |
virtual | ~StructuringElement () |
void | Initialize () const |
bool | IsReflected () const |
int | NumberOfElements () const |
int | NumberOfWays () const |
StructuringElement & | operator= (const StructuringElement &x) |
template<typename T > | |
void | PeekElements (T *h1, int &nh1, const T *h, int k) const |
void | Reflect () |
int | Size () const |
Additional Inherited Members | |
Public Types inherited from pcl::StructuringElement | |
using | existence_mask = GenericVector< existence_mask_element > |
using | existence_mask_count = GenericVector< int > |
using | existence_mask_element = uint32 |
using | existence_mask_set = GenericVector< existence_mask > |
A star structure of size 7 is defined as follows:
· · · x · · · · x · x · x · · · x x x · · x x x x x x x · · x x x · · · x · x · x · · · · x · · ·
where existing elements are marked as 'x' and nonexisting elements are denoted as '·'.
Definition at line 699 of file StructuringElement.h.
|
inline |
Constructs a star structure of the specified size.
Definition at line 706 of file StructuringElement.h.
|
default |
Copy constructor.
|
inlineoverridevirtual |
Returns a pointer to a dynamically allocated duplicate of this structuring element.
Implements pcl::StructuringElement.
Definition at line 718 of file StructuringElement.h.
|
inlineoverridevirtual |
Returns true iff a given element exists in this structure.
i | column position (X-coordinate) of the requested structure element. Must be 0 <= i < n, where n is the structure size. |
j | row position (Y-coordinate) of the requested structure element. Must be 0 <= j < n, where n is the structure size. |
k | Way index. Must be 0 <= k < m, where m is the number of ways defined in this structure. |
Reimplemented from pcl::StructuringElement.
Definition at line 738 of file StructuringElement.h.
|
inlineoverridevirtual |
Returns true iff this is a box structure. All elements in a box structure are existing elements.
As reimplemented by StarStructure, this member function always returns false.
Reimplemented from pcl::StructuringElement.
Definition at line 730 of file StructuringElement.h.