EMAN2
|
Pixel describes a 3D pixel's coordinates and its intensity value. More...
#include <geometry.h>
Public Member Functions | |
Pixel (int xx, int yy, int zz, float vv) | |
Construct a Pixel object given its 3D coordinates and its value. More... | |
Pixel (const Pixel &p) | |
IntPoint | get_point () const |
Get the pixel's coordinates as an integer point. More... | |
float | get_value () const |
Get the pixel's intensity value. More... | |
Public Attributes | |
int | x |
int | y |
int | z |
float | value |
Pixel describes a 3D pixel's coordinates and its intensity value.
Definition at line 452 of file geometry.h.
|
inline |
Construct a Pixel object given its 3D coordinates and its value.
xx | The x coordinate value. |
yy | The y coordinate value. |
zz | The z coordinate value. |
vv | The pixel's intensity value. |
Definition at line 460 of file geometry.h.
|
inline |
|
inline |
|
inline |
Get the pixel's intensity value.
Definition at line 475 of file geometry.h.
References value.
float EMAN::Pixel::value |
Definition at line 483 of file geometry.h.
Referenced by get_value(), EMAN::operator<(), EMAN::operator==(), and EMAN::TestUtil::test_vector_pixel().
int EMAN::Pixel::x |
Definition at line 480 of file geometry.h.
Referenced by get_point(), EMAN::operator==(), EMAN::DistanceSegmentProcessor::process(), and EMAN::TestUtil::test_vector_pixel().
int EMAN::Pixel::y |
Definition at line 481 of file geometry.h.
Referenced by get_point(), EMAN::operator==(), EMAN::DistanceSegmentProcessor::process(), and EMAN::TestUtil::test_vector_pixel().
int EMAN::Pixel::z |
Definition at line 482 of file geometry.h.
Referenced by get_point(), EMAN::operator==(), EMAN::DistanceSegmentProcessor::process(), and EMAN::TestUtil::test_vector_pixel().