#include <image3d.hh>
Inherits mln::internal::image_primary< T, mln::box, mln::image3d< T > >.
Package Types | |
typedef T & | lvalue |
Return type of read-write access. | |
typedef const T & | rvalue |
Return type of read-only access. | |
typedef image3d< tag::value_< T > > | skeleton |
Skeleton. | |
typedef T | value |
Value associated type. | |
Package Functions | |
const box3d & | bbox () const |
Give the bounding box domain. | |
unsigned | border () const |
Give the border thickness. | |
T * | buffer () |
Give a hook to the value buffer. | |
const T * | buffer () const |
Give a hook to the value buffer. | |
int | delta_index (const dpoint3d &dp) const |
Fast Image method. | |
const box3d & | domain () const |
Give the definition domain. | |
T & | element (unsigned i) |
Read-write access to the image value located at index i . | |
const T & | element (unsigned i) const |
Read-only access to the image value located at index i . | |
bool | has (const point3d &p) const |
Test if p is valid. | |
image3d (int nslis, int nrows, int ncols, unsigned bdr=border::thickness) | |
Constructor with the numbers of indexes and the border thickness. | |
image3d (const box3d &b, unsigned bdr=border::thickness) | |
Constructor with a box and the border thickness (default is 3). | |
image3d () | |
Constructor without argument. | |
unsigned | ncols () const |
Give the number of columns. | |
unsigned | nelements () const |
Give the number of cells (points including border ones). | |
unsigned | nrows () const |
Give the number of rows. | |
unsigned | nslices () const |
Give the number of slices. | |
T & | operator() (const point3d &p) |
Read-write access to the image value located at point p . | |
const T & | operator() (const point3d &p) const |
Read-only access to the image value located at point p . | |
point3d | point_at_index (unsigned o) const |
Give the point corresponding to the offset o . |
The parameter T
is the type of pixel values. This image class stores data in memory and has a virtual border with constant thickness around data.
typedef T& mln::image3d< T >::lvalue [package] |
Return type of read-write access.
typedef const T& mln::image3d< T >::rvalue [package] |
Return type of read-only access.
typedef image3d< tag::value_<T> > mln::image3d< T >::skeleton [package] |
Skeleton.
typedef T mln::image3d< T >::value [package] |
Value associated type.
mln::image3d< T >::image3d | ( | ) | [inline, package] |
Constructor without argument.
mln::image3d< T >::image3d | ( | const box3d & | b, | |
unsigned | bdr = border::thickness | |||
) | [inline, package] |
mln::image3d< T >::image3d | ( | int | nslis, | |
int | nrows, | |||
int | ncols, | |||
unsigned | bdr = border::thickness | |||
) | [inline, package] |
const box3d & mln::image3d< T >::bbox | ( | ) | const [inline, package] |
Give the bounding box domain.
unsigned mln::image3d< T >::border | ( | ) | const [inline, package] |
Give the border thickness.
T * mln::image3d< T >::buffer | ( | ) | [inline, package] |
Give a hook to the value buffer.
const T * mln::image3d< T >::buffer | ( | ) | const [inline, package] |
Give a hook to the value buffer.
int mln::image3d< T >::delta_index | ( | const dpoint3d & | dp | ) | const [inline, package] |
Fast Image method.
Give the offset corresponding to the delta-point dp
.
const box3d & mln::image3d< T >::domain | ( | ) | const [inline, package] |
Give the definition domain.
T & mln::image3d< T >::element | ( | unsigned | i | ) | [inline, package] |
const T & mln::image3d< T >::element | ( | unsigned | i | ) | const [inline, package] |
bool mln::image3d< T >::has | ( | const point3d & | p | ) | const [inline, package] |
unsigned mln::image3d< T >::ncols | ( | ) | const [inline, package] |
Give the number of columns.
unsigned mln::image3d< T >::nelements | ( | ) | const [inline, package] |
Give the number of cells (points including border ones).
Referenced by mln::image3d< T >::element(), and mln::image3d< T >::point_at_index().
unsigned mln::image3d< T >::nrows | ( | ) | const [inline, package] |
Give the number of rows.
unsigned mln::image3d< T >::nslices | ( | ) | const [inline, package] |
Give the number of slices.
T & mln::image3d< T >::operator() | ( | const point3d & | p | ) | [inline, package] |
const T & mln::image3d< T >::operator() | ( | const point3d & | p | ) | const [inline, package] |
point3d mln::image3d< T >::point_at_index | ( | unsigned | o | ) | const [inline, package] |